1
0
Fork 0
mirror of https://github.com/rspec/rspec-metagem.git synced 2022-11-09 12:09:29 -05:00

Merge branch 'master' of git@github.com:rspec/meta

This commit is contained in:
Chad Humphries 2009-07-01 08:43:10 -04:00
commit 6e71e5e896
2 changed files with 7 additions and 1 deletions

3
lib/rspec.rb Normal file
View file

@ -0,0 +1,3 @@
require 'rspec/core'
require 'rspec/expectations'
require 'rspec/mocks'

View file

@ -16,7 +16,7 @@ Gem::Specification.new do |s|
"README.markdown",
"Rakefile",
"VERSION.yml",
"lib/rspec-meta.rb"
"lib/rspec.rb"
]
s.homepage = %q{http://github.com/rspec/meta}
s.rdoc_options = ["--charset=UTF-8"]
@ -29,13 +29,16 @@ Gem::Specification.new do |s|
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rspec-core>, ["= 0.0.0"])
s.add_runtime_dependency(%q<rspec-expectations>, ["= 0.0.0"])
s.add_runtime_dependency(%q<rspec-mocks>, ["= 0.0.0"])
else
s.add_dependency(%q<rspec-core>, ["= 0.0.0"])
s.add_dependency(%q<rspec-expectations>, ["= 0.0.0"])
s.add_dependency(%q<rspec-mocks>, ["= 0.0.0"])
end
else
s.add_dependency(%q<rspec-core>, ["= 0.0.0"])
s.add_dependency(%q<rspec-expectations>, ["= 0.0.0"])
s.add_dependency(%q<rspec-mocks>, ["= 0.0.0"])
end