ianwhite-pickle 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.1.3 - Bugfix release
2
+
3
+ * 1 minor enhancement
4
+ * make generated steps compatible with Rails 2.1
5
+
6
+
1
7
  == 0.1.2
2
8
 
3
9
  * 2 major enhancements
@@ -2,7 +2,7 @@ module Pickle
2
2
  module Version
3
3
  Major = 0
4
4
  Minor = 1
5
- Tiny = 2
5
+ Tiny = 3
6
6
 
7
7
  String = [Major, Minor, Tiny].join('.')
8
8
  end
@@ -9,7 +9,7 @@ Given(/^#{CaptureModel} exists with #{CaptureFields}$/) do |name, fields|
9
9
  end
10
10
 
11
11
  Then(/^#{CaptureModel} should exist with #{CaptureFields}$/) do |name, fields|
12
- find_model(name, fields).should be_present
12
+ find_model(name, fields).should_not be_nil
13
13
  end
14
14
 
15
15
  Then(/^#{CaptureModel} should (?:be|have) (?:an? )?([\w ]+)$/) do |name, predicate|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ianwhite-pickle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian White