fixture_replacement 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9639be9a13dc9d214ce4bec09d30d6db2fb474da7da46a9cfb1e342d634dbc9d
4
- data.tar.gz: 05bbb4be36f092820dfabbef75df7f6e08dc9bc944ba42de8d7e4bb73eaa5cdf
3
+ metadata.gz: cae1408da614335f95fd86039eaf92ac8eb04b549faced2c92ebb217de83242b
4
+ data.tar.gz: feccbd506f6b771219512711eca9d141f6eb021ff2ec073b5170d19f0efefe55
5
5
  SHA512:
6
- metadata.gz: 1d571d591cc6db036d8832ab0833bb2738e95cb4677584c6de56d04136b72ca52c2b9f30d90b11820435e89bfae82e8a311e05346fc10b4ea9d08b5ff3f8442e
7
- data.tar.gz: ada4710268617f3654d5ee829005df56c9606a412e5b0905aa4203cded58bdbacb13eb9145c3e64b1099d35abdd87dc752e34d9bce0f78a1650785d8dc7a1597
6
+ metadata.gz: 9a5703bcc55fe6935115785ae62582b6bafd2e099508af734df96055e7d07d1729fe6aebea628e7062de0157d77e351c9ac3675864a0af737e10e299e04cccae
7
+ data.tar.gz: 9953fbf276caeb951bb6e8d573126b3bd2ff396ef91eeceb20053f6a0679b3c05042a0750d65e9d67c628f4cb31840ed2d431685a5c8f6a70d063ebe410153e8
data/CHANGELOG.rdoc CHANGED
@@ -1,7 +1,11 @@
1
+ == 4.0.1
2
+
3
+ - Minor release fixes
4
+
1
5
  == 4.0.0
2
6
 
3
- - Update for most recent rails / rspec (rails 7+).
4
- - This gem hasn't been updated for over 10+ years. So this is a welcome change!
7
+ - Update for most recent rails / rspec (rails 7+).
8
+ - This gem hasn't been updated for over 10+ years. So this is a needed change!
5
9
 
6
10
  == 3.0.1
7
11
 
data/README.rdoc CHANGED
@@ -1,12 +1,16 @@
1
- = FixtureReplacement (version 3.0.1)
1
+ = FixtureReplacement
2
2
 
3
- == What is FixtureReplacement
3
+ == What is FixtureReplacement?
4
4
 
5
- FixtureReplacement is a Rails[http://rubyonrails.org/] plugin that provides a simple way to
5
+ FixtureReplacement is a Rails gem that provides a simple way to
6
6
  quickly populate your test database with model objects without having to manage multiple,
7
7
  brittle fixture files. You can easily set up complex object graphs (with models which
8
8
  reference other models) and add new objects on the fly.
9
9
 
10
+ (If you've ever used FactoryGirl / FactoryBot, you're probably already quite familiar with
11
+ fixture_replacement, as it proceeded FactoryGirl. Also, FR is much more opinionated, and
12
+ much less PC!)
13
+
10
14
  Not only can FixtureReplacement make your test data easier to maintain, it can also help
11
15
  to make your tests and specs much more readable and intention-revealing by allowing you
12
16
  to omit extraneous details and focus only on the attributes that are important for a
@@ -22,9 +26,11 @@ See CHANGELOG.rdoc + test suite for further changes.
22
26
 
23
27
  == Installation
24
28
 
25
- Install the plugin:
29
+ Add it to your Gemfile:
26
30
 
27
- git://github.com/smtlaissezfaire/fixturereplacement.git
31
+ group :development, :test do
32
+ gem "fixture_replacement", "~> 4.0"
33
+ end
28
34
 
29
35
  === Using it with RSpec
30
36
 
@@ -139,4 +145,4 @@ See contributions.rdoc
139
145
 
140
146
  This software is dual licensed under the MIT and the GPLv3 Licenses (it's your pick).
141
147
 
142
- Copyright 2007-2009 Scott Taylor / smtlaissezfaire[http://github.com/smtlaissezfaire] (scott@railsnewbie.com)
148
+ Copyright 2007-2022 Scott Taylor / smtlaissezfaire[http://github.com/smtlaissezfaire] (scott@railsnewbie.com)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.0.0
1
+ 4.0.1
@@ -3,7 +3,7 @@ module FixtureReplacement
3
3
  unless defined?(FixtureReplacement::VERSION)
4
4
  MAJOR = 4
5
5
  MINOR = 0
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  version_string = "#{MAJOR}.#{MINOR}.#{TINY}"
9
9
  version_string << " RC#{RELEASE_CANDIDATE}" if defined?(RELEASE_CANDIDATE)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fixture_replacement
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Taylor