aslakhellesoy-cucumber 0.3.9 → 0.3.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.3.10 (In Git)
2
+
3
+ === Bugfixes
4
+ * RSpec's be_* matchers did not work in 0.3.9 and probably earlier versions. Now they do. (Aslak Hellesøy)
5
+
1
6
  == 0.3.9 2009-05-27
2
7
 
3
8
  Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
@@ -2,7 +2,9 @@ require 'cucumber/rails/world'
2
2
  require 'spec/expectations'
3
3
  require 'spec/rails/matchers'
4
4
 
5
- Cucumber::Rails::World.class_eval do
6
- include Spec::Matchers
7
- include Spec::Rails::Matchers
5
+ [Cucumber::Rails::World, ActionController::Integration::Session].each do |klass|
6
+ klass.class_eval do
7
+ include Spec::Matchers
8
+ include Spec::Rails::Matchers
9
+ end
8
10
  end
@@ -3,7 +3,7 @@ module Cucumber #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
5
  TINY = 9
6
- PATCH = nil # Set to nil for official release
6
+ PATCH = 1 # Set to nil for official release
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
9
9
  end
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.3.9
4
+ version: 0.3.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Aslak Helles\xC3\xB8y"