Gemfile in rspec-its-0.0.1.pre vs Gemfile in rspec-its-1.0.0.pre

- old
+ new

@@ -1,4 +1,19 @@ source 'https://rubygems.org' # Specify your gem's dependencies in rspec-its.gemspec gemspec + +%w[rspec rspec-core rspec-expectations rspec-mocks].each do |lib| + library_path = File.expand_path("../../#{lib}", __FILE__) + if File.exist?(library_path) + gem lib, :path => library_path + else + gem lib, :git => "git://github.com/rspec/#{lib}.git" + end +end + +# test coverage +gem 'simplecov', :require => false +gem 'coveralls', :require => false + +eval File.read('Gemfile-custom') if File.exist?('Gemfile-custom')