forked from rspec/rspec-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspec-rails.gemspec
38 lines (33 loc) · 1.52 KB
/
rspec-rails.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
35
36
37
38
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rspec/rails/version"
Gem::Specification.new do |s|
s.name = "rspec-rails"
s.version = RSpec::Rails::Version::STRING
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.authors = ["David Chelimsky"]
s.email = "[email protected]"
s.homepage = "http://github.com/rspec/rspec-rails"
s.summary = "rspec-rails-#{RSpec::Rails::Version::STRING}"
s.description = "RSpec for Rails"
s.rubyforge_project = "rspec"
s.files = `git ls-files -- lib/*`.split("\n")
s.files += %w[README.md License.txt Changelog.md .yardopts .document]
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_runtime_dependency(%q<activesupport>, [">= 3.0"])
s.add_runtime_dependency(%q<actionpack>, [">= 3.0"])
s.add_runtime_dependency(%q<railties>, [">= 3.0"])
if RSpec::Rails::Version::STRING =~ /[a-zA-Z]+/ # prerelease builds
s.add_runtime_dependency "rspec", "= #{RSpec::Rails::Version::STRING}"
else
s.add_runtime_dependency "rspec", "~> #{RSpec::Rails::Version::STRING.split('.')[0..1].concat(['0']).join('.')}"
end
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'cucumber', '~> 1.1.9'
s.add_development_dependency 'aruba', '~> 0.4.11'
s.add_development_dependency 'ZenTest', '4.6.2'
s.add_development_dependency 'ammeter', '0.2.5'
end