factory_bot 4.10.0 → 6.1.0

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.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -0
  3. data/CONTRIBUTING.md +52 -13
  4. data/GETTING_STARTED.md +630 -182
  5. data/LICENSE +1 -1
  6. data/NEWS.md +372 -0
  7. data/README.md +29 -31
  8. data/lib/factory_bot.rb +71 -140
  9. data/lib/factory_bot/aliases.rb +2 -2
  10. data/lib/factory_bot/attribute.rb +4 -39
  11. data/lib/factory_bot/attribute/association.rb +2 -2
  12. data/lib/factory_bot/attribute/dynamic.rb +2 -1
  13. data/lib/factory_bot/attribute_assigner.rb +24 -10
  14. data/lib/factory_bot/attribute_list.rb +3 -2
  15. data/lib/factory_bot/callback.rb +3 -10
  16. data/lib/factory_bot/configuration.rb +15 -19
  17. data/lib/factory_bot/declaration.rb +5 -5
  18. data/lib/factory_bot/declaration/association.rb +33 -3
  19. data/lib/factory_bot/declaration/dynamic.rb +3 -1
  20. data/lib/factory_bot/declaration/implicit.rb +7 -2
  21. data/lib/factory_bot/declaration_list.rb +3 -3
  22. data/lib/factory_bot/decorator.rb +20 -4
  23. data/lib/factory_bot/decorator/attribute_hash.rb +1 -1
  24. data/lib/factory_bot/decorator/invocation_tracker.rb +10 -3
  25. data/lib/factory_bot/definition.rb +54 -20
  26. data/lib/factory_bot/definition_hierarchy.rb +1 -11
  27. data/lib/factory_bot/definition_proxy.rb +125 -43
  28. data/lib/factory_bot/enum.rb +27 -0
  29. data/lib/factory_bot/errors.rb +7 -4
  30. data/lib/factory_bot/evaluation.rb +1 -1
  31. data/lib/factory_bot/evaluator.rb +23 -15
  32. data/lib/factory_bot/evaluator_class_definer.rb +1 -1
  33. data/lib/factory_bot/factory.rb +12 -12
  34. data/lib/factory_bot/factory_runner.rb +4 -4
  35. data/lib/factory_bot/find_definitions.rb +2 -2
  36. data/lib/factory_bot/internal.rb +91 -0
  37. data/lib/factory_bot/linter.rb +41 -28
  38. data/lib/factory_bot/null_factory.rb +13 -4
  39. data/lib/factory_bot/null_object.rb +2 -6
  40. data/lib/factory_bot/registry.rb +17 -8
  41. data/lib/factory_bot/reload.rb +2 -3
  42. data/lib/factory_bot/sequence.rb +5 -6
  43. data/lib/factory_bot/strategy/stub.rb +37 -37
  44. data/lib/factory_bot/strategy_calculator.rb +1 -1
  45. data/lib/factory_bot/strategy_syntax_method_registrar.rb +13 -2
  46. data/lib/factory_bot/syntax.rb +2 -2
  47. data/lib/factory_bot/syntax/default.rb +12 -24
  48. data/lib/factory_bot/syntax/methods.rb +32 -9
  49. data/lib/factory_bot/trait.rb +7 -4
  50. data/lib/factory_bot/version.rb +1 -1
  51. metadata +50 -65
  52. data/.autotest +0 -9
  53. data/.gitignore +0 -10
  54. data/.rspec +0 -3
  55. data/.simplecov +0 -4
  56. data/.travis.yml +0 -58
  57. data/Appraisals +0 -23
  58. data/Gemfile +0 -8
  59. data/Gemfile.lock +0 -103
  60. data/NEWS +0 -298
  61. data/Rakefile +0 -36
  62. data/cucumber.yml +0 -1
  63. data/factory_bot.gemspec +0 -36
  64. data/factory_girl.gemspec +0 -40
  65. data/gemfiles/3.2.gemfile +0 -10
  66. data/gemfiles/3.2.gemfile.lock +0 -107
  67. data/gemfiles/4.0.gemfile +0 -10
  68. data/gemfiles/4.0.gemfile.lock +0 -107
  69. data/gemfiles/4.1.gemfile +0 -10
  70. data/gemfiles/4.1.gemfile.lock +0 -106
  71. data/gemfiles/4.2.gemfile +0 -10
  72. data/gemfiles/4.2.gemfile.lock +0 -106
  73. data/gemfiles/5.0.gemfile +0 -10
  74. data/gemfiles/5.0.gemfile.lock +0 -104
  75. data/gemfiles/5.1.gemfile +0 -10
  76. data/gemfiles/5.1.gemfile.lock +0 -104
  77. data/lib/factory_bot/attribute/static.rb +0 -16
  78. data/lib/factory_bot/declaration/static.rb +0 -26
  79. data/lib/factory_bot/decorator/class_key_hash.rb +0 -28
  80. data/lib/factory_girl.rb +0 -5
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008-2017 Joe Ferris and thoughtbot, inc.
1
+ Copyright (c) 2008-2019 Joe Ferris and thoughtbot, inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/NEWS.md ADDED
@@ -0,0 +1,372 @@
1
+ # News
2
+
3
+ ## 6.1.0 (July 8, 2020)
4
+ * Added: public reader for the evaluation instance, helpful for building interrelated associations
5
+ * Changed: raise a more helpful error when passing an invalid argument to an association
6
+ * Fixed: Ruby 2.7 kwarg deprecation warnings
7
+
8
+ ## 6.0.2 (June 19, 2020)
9
+ * Fixed: bug causing traits to consume more memory each time they were used
10
+
11
+ ## 6.0.1 (June 19, 2020)
12
+ * Fixed: bug with constant resolution causing unexpected uninitialized constant errors
13
+
14
+ ## 6.0.0 (June 18, 2020)
15
+ * Added: automatic definition of traits for Active Record enum attributes, enabled by default
16
+ (Note that this required changing where factory_bot constantizes the build
17
+ class, which may affect applications that were using abstract factories for
18
+ inheritance. See issue #1409.)
19
+ * Added: `traits_for_enum` method to define traits for non-Active Record enums
20
+ * Added: `build_stubbed_starting_id=` option to define the starting id for `build_stubbed`
21
+ * Removed: deprecated methods on the top-level `FactoryBot` module meant only for internal use
22
+ * Removed: support for EOL versions of Ruby (2.3, 2.4) and Rails (4.2)
23
+
24
+ ## 5.2.0 (April 24, 2020)
25
+ * Added: Pass index to block for `*_list` methods
26
+ * Deprecated: methods on the top-level `FactoryBot` module meant only for internal use: `callbacks`, `configuration`, `constructor`, `initialize_with`, `register_sequence`, `resent_configuration`, `skip_create`, `to_create`
27
+
28
+ ## 5.1.2 (March 25, 2020)
29
+ * Fixed: Ruby 2.7 keyword deprecation warning in FactoryBot.lint
30
+
31
+ ## 5.1.1 (October 2, 2019)
32
+ * Improved: performance of traits
33
+ * Fixed: registering strategies on JRuby
34
+
35
+ ## 5.1.0 (September 21, 2019)
36
+ * Added: "Did you mean?" style error message to help with typos in association declarations
37
+ * Changed: `NoMethodError` for static attributes now offers a "Did you mean?" style message
38
+ * Fixed: avoid undefining inherited evaluator methods
39
+ * Fixed: avoid stubbing id for records without a primary key
40
+ * Fixed: raise a helpful error for self-referencing traits to avoid a `SystemStackError`
41
+ * Deprecated: methods on the top-level `FactoryBot` module meant only for internal use: `allow_class_lookup`, `allow_class_lookup`=, `register_trait`, `trait_by_name`, `traits`, `sequence_by_name`, `sequences`, `factory_by_name`, `register_factory`, `callback_names`, `register_callback`, `register_default_callbacks`, `register_default_strategies`, `strategies`
42
+
43
+ ## 5.0.2 (February 22, 2019)
44
+ * Bugfix: raise "Trait not registered" error when passing invalid trait arguments
45
+
46
+ ## 5.0.1 (February 15, 2019)
47
+ * Bugfix: Do not raise error when two sequences have the same name
48
+ in two traits that have the same name
49
+
50
+ ## 5.0.0 (February 1, 2019)
51
+ * Added: Verbose option to include full backtraces in the linting output
52
+ * Changed: use_parent_strategy now defaults to true, so by default the
53
+ build strategy will build, rather than create associations
54
+ * Changed: Passing a block when defining associations now raises an error
55
+ * Bugfix: use_parent_strategy is no longer reset by FactoryBot.reload
56
+ * Bugfix: rewind_sequences will now rewind local sequences along with the global ones
57
+ * Bugfix: the build_stubbed strategy now sets timestamps without changing the
58
+ the original behavior of the timestamp methods
59
+ * Bugfix: avoid a stack error when referring to an "attributes" attribute in initialize_with
60
+ * Removed: support for EOL versions of Ruby and Rails
61
+ * Removed: static attributes (use dynamic attributes with a block instead)
62
+ * Removed: looking up factories by class
63
+ * Removed: ignore method (use transient instead)
64
+ * Removed: duplicate_attribute_assignment_from_initialize_with configuration option
65
+ * Deprecated: allow_class_lookup configuration option
66
+
67
+ ## 4.11.1 (September 7, 2018)
68
+ * Documentation: Include .yardopts in the gem to fix broken RubyDoc links
69
+
70
+ ## 4.11.0 (August, 15, 2018)
71
+ * Bugfix: Do not raise error for valid build_stubbed methods: decrement, increment, and toggle
72
+ * Bugfix: Do not add timestamps with build_stubbed for objects that shouldn't have timestamps
73
+ * Deprecate static attributes
74
+
75
+ ## 4.10.0 (May 25, 2018)
76
+ * Allow sequences to be rewound
77
+
78
+ ## 4.9.0 (skipped - FactoryGirl only release)
79
+
80
+ ## 4.8.2 (October 20, 2017)
81
+ * Rename factory_girl to factory_bot
82
+
83
+ ## 4.8.1 (September 28, 2017)
84
+ * Explicitly define `#destroyed?` within the `Stub` strategy to return `nil` instead of raising
85
+ * Update various dependencies
86
+ * Update internal test suite to use RSpec's mocking/stubbing instead of mocha
87
+
88
+ ## 4.8.0 (December 16, 2016)
89
+ * Improve documentation
90
+ * Add `FactoryGirl.generate_list` to be consistent with `build_list`/`create_list` and friends
91
+ * Add `FactoryGirl.use_parent_strategy` configuration to allow associations to leverage parent build strategy
92
+
93
+ ## 4.7.0 (April 1, 2016)
94
+ * Improve documentation
95
+ * Improve instrumentation payload to include traits, overrides, and the factory itself
96
+ * Allow linting of traits
97
+ * Deprecate factory lookup by class name in preparation for 5.0
98
+ * Improve internal performance by using flat_map instead of map and compact
99
+ * Improve handling of dirty attributes after building a stubbed object
100
+ * Reduce warnings from redefining methods
101
+
102
+ ## 4.6.0 (skipped)
103
+
104
+ ## 4.5.0 (October 17, 2014)
105
+ * Improve FactoryGirl.lint by including exception and message in output
106
+ * Allow selective linting
107
+ * Use more explicit #public_send when doing attribute assignment
108
+ * Improve documentation around FactoryGirl.lint and initialize_with
109
+ * Deprecate #ignore in favor of #transient
110
+
111
+ ## 4.4.0 (February 10, 2014)
112
+ * Add FactoryGirl.lint
113
+ * Fix memory leak in duplicate traits
114
+ * Update documentation
115
+
116
+ ## 4.3.0 (November 3, 2013)
117
+ * Start testing against Rails 4.0 and Ruby 2.0.0
118
+ * Stop testing against Rails 3.0 and Ruby 1.9.2
119
+ * Add `*_pair` methods to only build two objects
120
+ * Raise if a method is defined with a FactoryGirl block (factory or trait)
121
+ * Allow use of Symbol#to_proc in callbacks
122
+ * Add global callbacks
123
+ * Improve GETTING_STARTED and README
124
+
125
+ ## 4.2.0 (January 18, 2013)
126
+ * Improve documentation
127
+ * Allow `*_list` syntax methods to accept a block
128
+ * Update gem dependencies
129
+ * Allow setting id for objects created with `build_stubbed`
130
+ * Fix Stub strategy to mimic ActiveRecord regarding `created_at`
131
+ * Evaluate sequences within the context of an Evaluator
132
+ * Fix Mocha deprecation warning
133
+ * Fix some warnings when running RUBYOPT=-w rake
134
+ * Convert test suite to RSpec's "expect" syntax
135
+
136
+ ## 4.1.0 (September 11, 2012)
137
+ * Allow multiple callbacks to bind to the same block
138
+ * Fix documentation surrounding the stub strategy
139
+
140
+ ## 4.0.0 (August 3, 2012)
141
+ * Remove deprecated cucumber_steps
142
+ * Remove deprecated alternate syntaxes
143
+ * Deprecate duplicate_attribute_assignment_from_initialize_with, which is now unused
144
+ as attributes assigned within initialize_with are not subsequently assigned
145
+
146
+ ## 3.6.1 (August 2, 2012)
147
+ Update README to include info about running with JRuby
148
+ * Update dependencies on RSpec and tiny versions of Rails in Appraisal
149
+ * Improve flexibility of using traits with associations and add documentation
150
+ * Stub update_column to raise to mirror ActiveRecord's change from update_attribute
151
+
152
+ ## 3.6.0 (July 27, 2012)
153
+ * Code/spec cleanup
154
+ * Allow factories with traits to be used in associations
155
+ * Refactor Factory to use DefinitionHierarchy to handle managing callbacks,
156
+ custom constructor, and custom to_create
157
+ * Add memoization to speed up factories providing attribute overrides
158
+ * Add initial support of JRuby when running in 1.9 mode
159
+ * Improve docs on what happens when including FactoryGirl::Syntax::Methods
160
+
161
+ ## 3.5.0 (June 22, 2012)
162
+ * Allow created_at to be set when using build_stubbed
163
+ * Deprecate FactoryGirl step definitions
164
+
165
+ ## 3.4.2 (June 19, 2012)
166
+ * Fix bug in traits with callbacks called implicitly in factories whose
167
+ callbacks trigger multiple times
168
+
169
+ ## 3.4.1 (June 18, 2012)
170
+ * Fix traits so they can be nested and referred to from other traits
171
+
172
+ ## 3.4.0 (June 11, 2012)
173
+ * Sequences support Enumerators
174
+ * Optionally disable duplicate assignment of attributes in initialize_with
175
+ * Make hash of public attributes available in initialize_with
176
+ * Support referring to a factory based on class name
177
+
178
+ ## 3.3.0 (May 13, 2012)
179
+ * Allow to_create, skip_create, and initialize_with to be defined globally
180
+ * Allow to_create, skip_create, and initialize_with to be defined within traits
181
+ * Fix deprecation messages for alternate syntaxes (make, generate, etc.)
182
+ * Improve library documentation
183
+ * Deprecate after_build, after_create, before_create, after_stub in favor of new callbacks
184
+ * Introduce new callback syntax: after(:build) {}, after(:custom) {}, or callback(:different) {}
185
+ This allows for declaring any callback, usable with custom strategies
186
+ * Add attributes_for_list and build_stubbed_list with the StrategySyntaxMethodRegistrar
187
+ * Allow use of syntax methods (build, create, generate, etc) implicitly in callbacks
188
+ * Internal refactoring of a handful of components
189
+
190
+ ## 3.2.0 (April 24, 2012)
191
+ * Use AS::Notifications for pub/sub to track running factories
192
+ * Call new within initialize_with implicitly on the build class
193
+ * Skip to_create with skip_create
194
+ * Allow registration of custom strategies
195
+ * Deprecate alternate syntaxes
196
+ * Implicitly call factory_bot's syntax methods from dynamic attributes
197
+
198
+ ## 3.1.0 (April 6, 2012)
199
+ * Sequences support aliases, which reference the same block
200
+ * Update documentation
201
+ * Add before_create callback
202
+ * Support use of #attribute_names method to determine available attributes for steps
203
+ * Use ActiveSupport::Deprecation for all deprecations
204
+
205
+ ## 3.0.0 (March 23, 2012)
206
+ * Deprecate the vintage syntax
207
+ * Remove Rails 2.x support
208
+ * Remove Ruby 1.8 support
209
+ * Remove deprecated features, including default_strategy, factory_name,
210
+ :method for defining default strategy, ignore on individual attributes, and
211
+ interacting with Factory the way you would FactoryGirl
212
+
213
+ ## 2.6.4 (March 16, 2012)
214
+ * Do not ignore names of transient attributes
215
+ * Ensure attributes set on instance are calculated uniquely
216
+
217
+ ## 2.6.3 (March 9, 2012)
218
+ * Fix issue with traits not being present the first time a factory is accessed
219
+ * Update available Cucumber step definitions to not require a trailing colon
220
+ when building a table of attributes to instantiate records with
221
+
222
+ ## 2.6.2 (March 9, 2012)
223
+ * Allow factories to use all their ancestors' traits
224
+ * Ignore bin dir generated by bundler
225
+ * Namespace ::Factory as top-level to fix vintage syntax issue with
226
+ Ruby 1.9.2-p3p18
227
+
228
+ ## 2.6.1 (March 2, 2012)
229
+ * Use FactoryGirl.reload in specs
230
+ * Clean up running named factories with a particular strategy with
231
+ FactoryGirl::FactoryRunner
232
+
233
+ ## 2.6.0 (February 17, 2012)
234
+ * Improve documentation of has_many associations in the GETTING_STARTED
235
+ document
236
+ * Deprecate :method in favor of :strategy when overriding an association's
237
+ build strategy
238
+
239
+ ## 2.5.2 (February 10, 2012)
240
+ * Fix step definitions to use associations defined in parent factories
241
+ * Add inline trait support to (build|create)_list
242
+ * Update ActiveSupport dependency to >= 2.3.9, which introduced
243
+ class_attribute
244
+
245
+ ## 2.5.1 (February 3, 2012)
246
+ * Fix attribute evaluation when the attribute isn't defined in the factory but
247
+ is a private method on Object
248
+ * Update rubygems on Travis before running tests
249
+ * Fix spec name
250
+ * Update GETTING_STARTED with correct usage of build_stubbed
251
+ * Update README with more info on initialize_with
252
+ * Honor :parent on factory over block nesting
253
+
254
+ ## 2.5.0 (January 20, 2012)
255
+ * Revert 'Deprecate build_stubbed and attributes_for'
256
+ * Implement initialize_with to allow overriding object instantiation
257
+ * Ensure FG runs against Rails 3.2.0
258
+
259
+ ## 2.4.2 (January 18, 2012)
260
+ * Fix inline traits' interaction with defaults on the factory
261
+
262
+ ## 2.4.1 (January 17, 2012)
263
+ * Deprecate build_stubbed and attributes_for
264
+ * Fix inline traits
265
+
266
+ ## 2.4.0 (January 13, 2012)
267
+ * Refactor internals of FactoryGirl to use anonymous class on which attributes
268
+ get defined
269
+ * Explicitly require Ruby 1.8.7 or higher in gemspec
270
+ * Fix documentation
271
+ * Add Gemnasium status to documentation
272
+ * Supplying a Class to a factory that overrides to_s no longer results in
273
+ getting the wrong Class constructed
274
+ * Be more agnostic about ORMs when using columns in FactoryGirl step
275
+ definitions
276
+ * Test against Active Record 3.2.0.rc2
277
+ * Update GETTING_STARTED to use Ruby syntax highlighting
278
+
279
+ ## 2.3.2 (November 26, 2011)
280
+ * Move logic of where instance.save! is set to Definition
281
+ * Fix method name from aliases_for? to alias_for?
282
+ * Refactor internal attribute handling to use an anonymous class instead of
283
+ faking Ruby's variable resolution. This allows for more sane usage of
284
+ attributes without having to manage sorting priority because attributes
285
+ can turn themselves into procs, which are used with define_method on a
286
+ class so attributes work correctly all the time.
287
+
288
+ ## 2.3.1 (November 23, 2011)
289
+ * Remove internally-used associate method from all the FactoryGirl::Proxy subclasses
290
+ * Move around requiring of files
291
+ * Consolidate errors into factory_bot.rb
292
+ * Refactor AttributeList to deal with priority only when iterating over
293
+ attributes
294
+ * Refactor internals of some of the Proxy subclasses
295
+ * Ensure callbacks on traits are executed in the correct order
296
+
297
+ ## 2.3.0 (November 18, 2011)
298
+ * Registries are named, resulting in better messages when factories, traits,
299
+ or sequences cannot be found
300
+ * Fix incorrect tests
301
+ * Internals refactoring introducing FactoryGirl::NullFactory,
302
+ FactoryGirl::Definition, and FactoryGirl::DeclarationList
303
+ * Use ActiveSupport for Hash#except and its delegation capabilities
304
+ * Fix usage of callbacks when added via implicit traits
305
+ * Use Bundler tasks and clean up dependencies
306
+ * Fix failing spec for big letters in factory name passed as symbol
307
+ * Add ability for traits to be added dynamically when creating an instance via
308
+ build, create, build_stubbed, or attributes_for
309
+
310
+ ## 2.2.0 (October 14, 2011)
311
+ * Clean up RSpec suite to not use 'should'
312
+ * Use create_list in step definitions
313
+ * Syntax methods that deal with ORM interaction (attributes_for, build, build_stubbed,
314
+ and create) now accept a block that yields the result. This results in a
315
+ more convenient way to interact with the result than using Object.tap.
316
+ * Standardize deprecation warnings
317
+ * Update transient attribute syntax to use blocks instead of calling ignore on
318
+ each attribute declaration
319
+ * Parents can be defined after children because factories are evaluated when
320
+ they're used; this means breaking up factories across multiple files will
321
+ behave as expected
322
+ * Large internal refactoring, including changing access modifiers for a
323
+ handful of methods for a more clearly defined API
324
+
325
+ ## 2.1.2 (September 23, 2011)
326
+ * Bugfix: Vintage syntax fixed after bug introduced in 2.1.1
327
+ * Introduce dependency on activesupport to remove code from Factory class
328
+
329
+ ## 2.1.1 (September 23, 2011) (yanked)
330
+ * Bugfix: Parent object callbacks are run before child object callbacks
331
+ * Declarations: allow overriding/modification of individual traits in child factories
332
+ * Callbacks refactored to not be attributes
333
+ * Updating documentation for formatting and clarity (incl. new specificity for cucumber)
334
+
335
+ ## 2.1.0 (September 02, 2011)
336
+ * Bugfix: created_at now defined for stubbed models
337
+ * Gemspec updated for use with Rails 3.1
338
+ * Factories can now be modified post-definition (useful for overriding defaults from gems/plugins)
339
+ * All factories can now be reloaded with Factory.reload
340
+ * Add :method => build to factory associations to prevent saving of associated objects
341
+ * Factories defined in {Rails.root}/factories are now loaded by default
342
+ * Various documentation updates
343
+
344
+ ## 1.1.4 (November 28, 2008)
345
+ * Factory.build now uses Factory.create for associations of the built object
346
+ * Factory definitions are now detected in subdirectories, such as
347
+ factories/person_factory.rb (thanks to Josh Nichols)
348
+ * Factory definitions are now loaded after the environment in a Rails project
349
+ (fixes some issues with dependencies being loaded too early) (thanks to
350
+ Josh Nichols)
351
+ * Factory names ending in 's' no longer cause problems (thanks to Alex Sharp
352
+ and Josh Owens)
353
+
354
+ ## 1.1.3 (September 12, 2008)
355
+ * Automatically pull in definitions from factories.rb, test/factories.rb, or
356
+ spec/factories.rb
357
+ ## 1.1.2 (July 30, 2008)
358
+ * Improved error handling for invalid and undefined factories/attributes
359
+ * Improved handling of strings vs symbols vs classes
360
+ * Added a prettier syntax for handling associations
361
+ * Updated documentation and fixed compatibility with Rails 2.1
362
+
363
+ ## 1.1.1 (June 23, 2008)
364
+ * The attribute "name" no longer requires using #add_attribute
365
+
366
+ ## 1.1.0 (June 03, 2008)
367
+ * Added support for dependent attributes
368
+ * Fixed the attributes_for build strategy to not build associations
369
+ * Added support for sequences
370
+
371
+ ## 1.0.0 (May 31, 2008)
372
+ * First version
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # factory_bot [![Build Status](https://travis-ci.org/thoughtbot/factory_bot.svg)](http://travis-ci.org/thoughtbot/factory_bot?branch=master) [![Code Climate](https://codeclimate.com/github/thoughtbot/factory_bot/badges/gpa.svg)](https://codeclimate.com/github/thoughtbot/factory_bot)
1
+ # factory_bot [![Build Status][ci-image]][ci] [![Code Climate][grade-image]][grade] [![Gem Version][version-image]][version]
2
2
 
3
3
  factory_bot is a fixtures replacement with a straightforward definition syntax, support for multiple build strategies (saved instances, unsaved instances, attribute hashes, and stubbed objects), and support for multiple factories for the same class (user, admin_user, and so on), including factory inheritance.
4
4
 
5
5
  If you want to use factory_bot with Rails, see
6
6
  [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails).
7
7
 
8
- _[Interested in the history of the project name?](NAME.md)_
8
+ _[Interested in the history of the project name?][NAME]_
9
9
 
10
10
 
11
11
  ### Transitioning from factory\_girl?
@@ -21,7 +21,7 @@ You should find the documentation for your version of factory_bot on [Rubygems](
21
21
  See [GETTING_STARTED] for information on defining and using factories. We also
22
22
  have [a detailed introductory video][], available for free on Upcase.
23
23
 
24
- [a detailed introductory video]: https://upcase.com/videos/factory-girl?utm_source=github&utm_medium=open-source&utm_campaign=factory-girl
24
+ [a detailed introductory video]: https://upcase.com/videos/factory-bot?utm_source=github&utm_medium=open-source&utm_campaign=factory-girl
25
25
 
26
26
  Install
27
27
  --------
@@ -40,60 +40,50 @@ To install the gem manually from your shell, run:
40
40
  gem install factory_bot
41
41
  ```
42
42
 
43
- **Caveat:** As of ActiveSupport 5.0 and above, Ruby 2.2.2+ is required. Because
44
- of Rubygems' dependency resolution when installing gems, you may see an error
45
- similar to:
46
-
47
- ```
48
- $ gem install factory_bot
49
- ERROR: Error installing factory_bot:
50
- activesupport requires Ruby version >= 2.2.2.
51
- ```
52
-
53
- To bypass this, install a pre-5.0 version of ActiveSupport before installing
54
- manually.
55
-
56
43
  Supported Ruby versions
57
44
  -----------------------
58
45
 
59
- The factory_bot 3.x+ series supports MRI Ruby 1.9. Additionally, factory_bot
60
- 3.6+ supports JRuby 1.6.7.2+ while running in 1.9 mode. See [GETTING_STARTED]
61
- for more information on configuring the JRuby environment.
62
-
63
- For versions of Ruby prior to 1.9, please use factory_bot 2.x.
46
+ Supported Ruby versions are listed in [`.travis.yml`](https://github.com/thoughtbot/factory_bot/blob/master/.travis.yml)
64
47
 
65
48
  More Information
66
49
  ----------------
67
50
 
68
51
  * [Rubygems](https://rubygems.org/gems/factory_bot)
69
- * [Stack Overflow](http://stackoverflow.com/questions/tagged/factory-bot)
52
+ * [Stack Overflow](https://stackoverflow.com/questions/tagged/factory-bot)
70
53
  * [Issues](https://github.com/thoughtbot/factory_bot/issues)
71
- * [GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS](http://robots.thoughtbot.com/)
54
+ * [GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS](https://robots.thoughtbot.com/)
55
+
56
+ [GETTING_STARTED]: https://github.com/thoughtbot/factory_bot/blob/master/GETTING_STARTED.md
57
+ [NAME]: https://github.com/thoughtbot/factory_bot/blob/master/NAME.md
72
58
 
73
- You may also find useful information under the [factory_girl tag on Stack Overflow](http://stackoverflow.com/questions/tagged/factory-girl).
59
+ Useful Tools
60
+ ------------
74
61
 
75
- [GETTING_STARTED]: http://rubydoc.info/gems/factory_bot/file/GETTING_STARTED.md
62
+ * [FactoryTrace](https://github.com/djezzzl/factory_trace) - helps to find unused factories and traits.
76
63
 
77
64
  Contributing
78
65
  ------------
79
66
 
80
67
  Please see [CONTRIBUTING.md](https://github.com/thoughtbot/factory_bot/blob/master/CONTRIBUTING.md).
81
68
 
82
- factory_bot was originally written by Joe Ferris and is now maintained by Josh
83
- Clayton. Many improvements and bugfixes were contributed by the [open source
69
+ factory_bot was originally written by Joe Ferris and is maintained by thoughtbot.
70
+ Many improvements and bugfixes were contributed by the [open source
84
71
  community](https://github.com/thoughtbot/factory_bot/graphs/contributors).
85
72
 
86
73
  License
87
74
  -------
88
75
 
89
- factory_bot is Copyright © 2008-2016 Joe Ferris and thoughtbot. It is free
76
+ factory_bot is Copyright © 2008-2020 Joe Ferris and thoughtbot. It is free
90
77
  software, and may be redistributed under the terms specified in the
91
- [LICENSE](/LICENSE) file.
78
+ [LICENSE] file.
79
+
80
+ [LICENSE]: https://github.com/thoughtbot/factory_bot/blob/master/LICENSE
81
+
92
82
 
93
83
  About thoughtbot
94
84
  ----------------
95
85
 
96
- ![thoughtbot](http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg)
86
+ ![thoughtbot](https://thoughtbot.com/brand_assets/93:44.svg)
97
87
 
98
88
  factory_bot is maintained and funded by thoughtbot, inc.
99
89
  The names and logos for thoughtbot are trademarks of thoughtbot, inc.
@@ -103,4 +93,12 @@ See [our other projects][community] or
103
93
  [hire us][hire] to design, develop, and grow your product.
104
94
 
105
95
  [community]: https://thoughtbot.com/community?utm_source=github
106
- [hire]: https://thoughtbot.com?utm_source=github
96
+ [hire]: https://thoughtbot.com/hire-us?utm_source=github
97
+ [ci-image]: https://travis-ci.org/thoughtbot/factory_bot.svg
98
+ [ci]: https://travis-ci.org/thoughtbot/factory_bot?branch=master
99
+ [grade-image]: https://codeclimate.com/github/thoughtbot/factory_bot/badges/gpa.svg
100
+ [grade]: https://codeclimate.com/github/thoughtbot/factory_bot
101
+ [version-image]: https://badge.fury.io/rb/factory_bot.svg
102
+ [version]: https://badge.fury.io/rb/factory_bot
103
+ [hound-badge-image]: https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg
104
+ [hound]: https://houndci.com