aslakhellesoy-cucumber 0.3.9.1 → 0.3.9.2
Sign up to get free protection for your applications and to get access to all the features.
data/History.txt
CHANGED
data/lib/cucumber/version.rb
CHANGED
@@ -15,7 +15,7 @@ config.action_controller.allow_forgery_protection = false
|
|
15
15
|
# ActionMailer::Base.deliveries array.
|
16
16
|
config.action_mailer.delivery_method = :test
|
17
17
|
|
18
|
-
config.gem "cucumber", :lib => false, :version => ">=<%= cucumber_version %>"
|
19
|
-
config.gem "webrat", :lib => false, :version => ">=0.4.4"
|
20
|
-
config.gem "rspec", :lib => false, :version => ">=1.2.6"
|
21
|
-
config.gem "rspec-rails", :lib => 'spec/rails', :version => ">=1.2.6"
|
18
|
+
config.gem "cucumber", :lib => false, :version => ">=<%= cucumber_version %>" unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber'))
|
19
|
+
config.gem "webrat", :lib => false, :version => ">=0.4.4" unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat'))
|
20
|
+
config.gem "rspec", :lib => false, :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec'))
|
21
|
+
config.gem "rspec-rails", :lib => 'spec/rails', :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec-rails'))
|