factory_faster 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ee96ae3acadba8720236440c575e36320ee3a99
4
- data.tar.gz: cbb6cd8ed4193db979c0c1e21087e9ebe960595e
3
+ metadata.gz: 8eea71a7952c2d407b30552562e2e73192e7de54
4
+ data.tar.gz: e2fa8a255c5afc23fa54d87ec5e04d186ae74b1e
5
5
  SHA512:
6
- metadata.gz: 7ae8faff33abad9f4c0c64a7dfb9ff40fa8aeec4c8a4bb3e92e84967ea6c9171dacc6cd0106761f148a97b452a92ad902b2674a41ed6756605fd422ab2f26584
7
- data.tar.gz: 6814adf53b72789ff20af010d3a2e5a9afeab88cc789bfb5313ec99b6363e9d4b0272aa54560e194de9c41f6480a0d2b0dd59f8b5e5f0fda6c27707dd0947be3
6
+ metadata.gz: 2f22bac358395373a48837e19ad0055df9a85a51a93de8484ad5f73bb326be2bda7b92822c6b211466bed9cfc7ca1fbc56890504fd76f41072523ea29f8861e8
7
+ data.tar.gz: cd6cb71bf0205125c185940e31e74f028fbaa692c98c88b6914ed6e5bf3fc3d9437087ec0a7bfddad46bed27472ddd04471b8446c00e7c0962e80d46709e0a71
@@ -1,5 +1,8 @@
1
+ 0.0.3 - Apr 24 2015:
2
+ * Fixed wrong method name
3
+
1
4
  0.0.2 - Apr 8 2014
2
- * Fixed batch processor
5
+ * Batch processor has its own class now
3
6
  * External release
4
7
 
5
8
  0.0.1 - Apr 7 2014
data/README.md CHANGED
@@ -12,10 +12,6 @@ And then execute:
12
12
 
13
13
  $ bundle
14
14
 
15
- Or install it yourself as:
16
-
17
- $ gem install factory_faster
18
-
19
15
  ## Usage
20
16
 
21
17
  Process just one file with:
@@ -60,3 +56,8 @@ FactoryFaster doesn't skip commented out lines.
60
56
  3. Commit your changes (`git commit -am 'Add some feature'`)
61
57
  4. Push to the branch (`git push origin my-new-feature`)
62
58
  5. Create new Pull Request
59
+
60
+ ## Contributors
61
+
62
+ Tom Copeland - author
63
+ Ronnie Miller - method name bugfix
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["tom.copeland@livingsocial.com"]
11
11
  spec.summary = %q{FactoryFaster makes your FactoryGirl tests faster.}
12
12
  spec.description = %q{FactoryFaster makes your FactoryGirl tests faster.}
13
- spec.homepage = ""
13
+ spec.homepage = "https://github.com/livingsocial/factory_faster"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
@@ -8,7 +8,7 @@ module FactoryFaster
8
8
  @glob = glob
9
9
  end
10
10
 
11
- def run
11
+ def process
12
12
  Dir.glob(glob).each do |filename|
13
13
  Faster.new(filename).process
14
14
  end
@@ -16,4 +16,4 @@ module FactoryFaster
16
16
 
17
17
  end
18
18
 
19
- end
19
+ end
@@ -1,3 +1,3 @@
1
1
  module FactoryFaster
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_faster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Copeland
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-08 00:00:00.000000000 Z
11
+ date: 2015-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -90,7 +90,7 @@ files:
90
90
  - test/test_helper.rb
91
91
  - test/unit/data_store_test.rb
92
92
  - test/unit/target_test.rb
93
- homepage: ''
93
+ homepage: https://github.com/livingsocial/factory_faster
94
94
  licenses:
95
95
  - MIT
96
96
  metadata: {}