forked from splitrb/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
split.gemspec
34 lines (28 loc) · 1.09 KB
/
split.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "split/version"
Gem::Specification.new do |s|
s.name = "split"
s.version = Split::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew Nesbitt"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/andrew/split"
s.summary = %q{Rack based split testing framework}
s.rubyforge_project = "split"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency 'redis', '>= 2.1'
s.add_dependency 'redis-namespace', '>= 1.1.0'
s.add_dependency 'sinatra', '>= 1.2.6'
s.add_dependency 'simple-random'
# Ruby 1.8 doesn't include JSON in the std lib
if RUBY_VERSION < "1.9"
s.add_dependency 'json', '>= 1.7.7'
end
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'rspec', '~> 2.12'
s.add_development_dependency 'rack-test', '~> 0.6'
end