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 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
@@ -1,4 +1,4 @@
1
- require 'spec'
1
+ require 'spec/expectations'
2
2
  require 'fileutils'
3
3
 
4
4
  Before do
@@ -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)
@@ -3,7 +3,7 @@ module Cucumber #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
5
  TINY = 16
6
- PATCH = 3 # Set to nil for official release
6
+ PATCH = 4 # Set to nil for official release
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
9
9
  end
@@ -13,4 +13,4 @@ end
13
13
 
14
14
  # Comment out the next two lines if you're not using RSpec's matchers (should / should_not) in your steps.
15
15
  require 'cucumber/rails/rspec'
16
- require 'webrat/rspec-rails'
16
+ require 'webrat/core/matchers'
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.3
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-20 00:00:00 -08:00
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