pickle 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ == 0.3.3
2
+
3
+ * 1 minor improvement
4
+ * Pickle respects the default build strategy for factory girl. [Sean Hussey]
5
+
6
+
1
7
  == 0.3.2
2
8
 
3
9
  * 3 minor improvements
@@ -328,6 +328,7 @@ To run the features (rails 2.3 only ATM):
328
328
 
329
329
  The following people have made Pickle better:
330
330
 
331
+ * {Sean Hussey}[http://github.com/seanhussey]
331
332
  * Brian Rose & Kevin Olsen
332
333
  * {Christopher Darroch}[http://github.com/chrisdarroch]
333
334
  * {Szymon Nowak}[http://github.com/szimek]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -105,7 +105,7 @@ module Pickle
105
105
  end
106
106
 
107
107
  def create(attrs = {})
108
- Factory.create(@name, attrs)
108
+ Factory(@name, attrs)
109
109
  end
110
110
  end
111
111
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{pickle}
8
- s.version = "0.3.2"
8
+ s.version = "0.3.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ian White"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pickle
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ian White