aslakhellesoy-cucumber 0.3.9.2 → 0.3.9.3
Sign up to get free protection for your applications and to get access to all the features.
data/History.txt
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
== 0.3.10 (In Git)
|
2
2
|
|
3
|
+
This release has some minor bugfixes related to RSpec and Rails interop.
|
4
|
+
|
3
5
|
=== Bugfixes
|
4
6
|
* RSpec's be_* matchers did not work in 0.3.9 and probably earlier versions. Now they do. (Aslak Hellesøy)
|
5
7
|
* The Rails cucumber environment won't declare gem dependencies if the plugin exists. (Aslak Hellesøy)
|
8
|
+
* The Rails cucumber generator will no longer declare gem dependencies on rspec if you use --testunit. (Aslak Hellesøy)
|
6
9
|
|
7
10
|
== 0.3.9 2009-05-27
|
8
11
|
|
data/lib/cucumber/version.rb
CHANGED
@@ -17,5 +17,7 @@ config.action_mailer.delivery_method = :test
|
|
17
17
|
|
18
18
|
config.gem "cucumber", :lib => false, :version => ">=<%= cucumber_version %>" unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber'))
|
19
19
|
config.gem "webrat", :lib => false, :version => ">=0.4.4" unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat'))
|
20
|
+
<% if framework == :rspec -%>
|
20
21
|
config.gem "rspec", :lib => false, :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec'))
|
21
22
|
config.gem "rspec-rails", :lib => 'spec/rails', :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec-rails'))
|
23
|
+
<% end %>
|