forked from bmuller/bandit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbandit.gemspec
22 lines (19 loc) · 864 Bytes
/
bandit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require "bandit/version"
Gem::Specification.new do |s|
s.name = "bandit"
s.version = Bandit::VERSION
s.authors = ["Brian Muller"]
s.email = ["bamuller@gmail.com"]
s.homepage = "https://github.com/bmuller/bandit"
s.summary = "Multi-armed bandit testing in rails"
s.description = "Bandit provides a way to do multi-armed bandit optimization of alternatives in a rails website"
s.rubyforge_project = "bandit"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency("rails", ">= 3.1.0")
s.requirements << "Either redis or memcache gem"
s.add_development_dependency('rdoc')
end