aslakhellesoy-cucumber 0.1.16.3 → 0.1.16.4
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +13 -0
- data/features/support/env.rb +1 -1
- data/lib/cucumber/rails/rspec.rb +1 -8
- data/lib/cucumber/version.rb +1 -1
- data/rails_generators/cucumber/templates/env.rb +1 -1
- metadata +2 -10
data/History.txt
CHANGED
@@ -1,10 +1,23 @@
|
|
1
1
|
== 0.1.16.x (Git)
|
2
2
|
|
3
|
+
Bugfix release.
|
4
|
+
|
5
|
+
IMPORTANT NOTE FOR RAILS USERS.
|
6
|
+
The template used to generate your features/support/env.rb has changed. You have to apply a minor change
|
7
|
+
manually for existing Rails projects when you upgrade to this version. Change this:
|
8
|
+
|
9
|
+
require 'webrat/rspec-rails'
|
10
|
+
|
11
|
+
to this:
|
12
|
+
|
13
|
+
require 'webrat/core/matchers'
|
14
|
+
|
3
15
|
=== New features
|
4
16
|
* Finnish translation (Tero Tilus)
|
5
17
|
* Use Webrat's #contain matcher in generated "I should (not) see" step definitions (Bryan Helmkamp)
|
6
18
|
|
7
19
|
== Bugfixes
|
20
|
+
* Better handling of ARGV (#169 David Chelimsky)
|
8
21
|
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
9
22
|
|
10
23
|
== 0.1.16 2009-01-19
|
data/features/support/env.rb
CHANGED
data/lib/cucumber/rails/rspec.rb
CHANGED
@@ -1,12 +1,5 @@
|
|
1
1
|
require 'spec/expectations'
|
2
|
-
require 'spec/rails'
|
3
|
-
|
4
|
-
# Hack to stop RSpec from dumping the summary
|
5
|
-
Spec::Runner::Options.class_eval do
|
6
|
-
def examples_should_be_run?
|
7
|
-
false
|
8
|
-
end
|
9
|
-
end
|
2
|
+
require 'spec/rails/matchers'
|
10
3
|
|
11
4
|
ActionController::Integration::Session.send(:include, Spec::Matchers)
|
12
5
|
ActionController::Integration::Session.send(:include, Spec::Rails::Matchers)
|
data/lib/cucumber/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aslakhellesoy-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.16.
|
4
|
+
version: 0.1.16.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Aslak Helles\xC3\xB8y"
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-01-
|
12
|
+
date: 2009-01-23 00:00:00 -08:00
|
13
13
|
default_executable: cucumber
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -289,14 +289,6 @@ files:
|
|
289
289
|
- rails_generators/feature/feature_generator.rb
|
290
290
|
- rails_generators/feature/templates/feature.erb
|
291
291
|
- rails_generators/feature/templates/steps.erb
|
292
|
-
- script/console
|
293
|
-
- script/console.cmd
|
294
|
-
- script/destroy
|
295
|
-
- script/destroy.cmd
|
296
|
-
- script/generate
|
297
|
-
- script/generate.cmd
|
298
|
-
- script/txt2html
|
299
|
-
- script/txt2html.cmd
|
300
292
|
- setup.rb
|
301
293
|
- spec/cucumber/broadcaster_spec.rb
|
302
294
|
- spec/cucumber/cli_spec.rb
|