cucumber 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -1
- data/VERSION.yml +2 -2
- data/cucumber.gemspec +2 -3
- data/rails_generators/cucumber/templates/cucumber_environment.rb +1 -1
- data/rails_generators/cucumber/templates/env.rb +1 -1
- data/rails_generators/cucumber/templates/spork_env.rb +1 -1
- data/rails_generators/cucumber/templates/version_check.rb +5 -5
- data/rails_generators/cucumber/templates/webrat_steps.rb +1 -1
- metadata +2 -3
data/History.txt
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
== 0.4.
|
1
|
+
== 0.4.2 2009-10-14
|
2
|
+
|
3
|
+
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
4
|
+
|
5
|
+
== 0.4.1 2009-10-14
|
2
6
|
|
3
7
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
4
8
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
data/VERSION.yml
CHANGED
data/cucumber.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{cucumber}
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Aslak Helles\303\270y"]
|
@@ -542,7 +542,7 @@ Gem::Specification.new do |s|
|
|
542
542
|
|
543
543
|
(::) U P G R A D I N G (::)
|
544
544
|
|
545
|
-
Thank you for installing cucumber-0.4.
|
545
|
+
Thank you for installing cucumber-0.4.2
|
546
546
|
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
547
547
|
for important information about this release.
|
548
548
|
|
@@ -680,7 +680,6 @@ for important information about this release.
|
|
680
680
|
"examples/selenium_webrat/features/support/env.rb",
|
681
681
|
"examples/self_test/features/step_definitions/sample_steps.rb",
|
682
682
|
"examples/self_test/features/support/env.rb",
|
683
|
-
"examples/self_test/tmp/features/step_definitions/steps.rb",
|
684
683
|
"examples/sinatra/app.rb",
|
685
684
|
"examples/sinatra/features/step_definitions/add_steps.rb",
|
686
685
|
"examples/sinatra/features/support/env.rb",
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION
|
1
|
+
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION %>
|
2
2
|
# Edit at your own peril - it's recommended to regenerate this file
|
3
3
|
# in the future when you upgrade to a newer version of Cucumber.
|
4
4
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION
|
1
|
+
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION %>
|
2
2
|
# Edit at your own peril - it's recommended to regenerate this file
|
3
3
|
# in the future when you upgrade to a newer version of Cucumber.
|
4
4
|
# Consider adding your own code to a new file instead of editing this one.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION
|
1
|
+
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION %>
|
2
2
|
# Edit at your own peril - it's recommended to regenerate this file
|
3
3
|
# in the future when you upgrade to a newer version of Cucumber.
|
4
4
|
# Consider adding your own code to a new file instead of editing this one.
|
@@ -1,13 +1,13 @@
|
|
1
|
-
if Cucumber::VERSION
|
1
|
+
if Cucumber::VERSION != '<%= Cucumber::VERSION %>'
|
2
2
|
warning = <<-WARNING
|
3
3
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
4
4
|
|
5
5
|
(::) R O T T E N C U C U M B E R A L E R T (::)
|
6
6
|
|
7
|
-
Your #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} file was generated with Cucumber <%= Cucumber::VERSION
|
8
|
-
but you seem to be running Cucumber #{Cucumber::VERSION
|
9
|
-
version than #{Cucumber::VERSION
|
10
|
-
version than #{Cucumber::VERSION
|
7
|
+
Your #{__FILE__.gsub(/version_check.rb$/, 'env.rb')} file was generated with Cucumber <%= Cucumber::VERSION %>,
|
8
|
+
but you seem to be running Cucumber #{Cucumber::VERSION}. If you're running an older
|
9
|
+
version than #{Cucumber::VERSION}, just upgrade your gem. If you're running a newer
|
10
|
+
version than #{Cucumber::VERSION} you should:
|
11
11
|
|
12
12
|
1) Read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
13
13
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION
|
1
|
+
# IMPORTANT: This file was generated by Cucumber <%= Cucumber::VERSION %>
|
2
2
|
# Edit at your own peril - it's recommended to regenerate this file
|
3
3
|
# in the future when you upgrade to a newer version of Cucumber.
|
4
4
|
# Consider adding your own code to a new file instead of editing this one.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Aslak Helles\xC3\xB8y"
|
@@ -638,7 +638,7 @@ post_install_message: |+
|
|
638
638
|
|
639
639
|
(::) U P G R A D I N G (::)
|
640
640
|
|
641
|
-
Thank you for installing cucumber-0.4.
|
641
|
+
Thank you for installing cucumber-0.4.2
|
642
642
|
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
643
643
|
for important information about this release.
|
644
644
|
|
@@ -793,7 +793,6 @@ test_files:
|
|
793
793
|
- examples/selenium_webrat/features/support/env.rb
|
794
794
|
- examples/self_test/features/step_definitions/sample_steps.rb
|
795
795
|
- examples/self_test/features/support/env.rb
|
796
|
-
- examples/self_test/tmp/features/step_definitions/steps.rb
|
797
796
|
- examples/sinatra/app.rb
|
798
797
|
- examples/sinatra/features/step_definitions/add_steps.rb
|
799
798
|
- examples/sinatra/features/support/env.rb
|