factory_bot 4.10.0 → 6.0.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 +613 -182
  5. data/LICENSE +1 -1
  6. data/NEWS.md +358 -0
  7. data/README.md +30 -26
  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 +14 -1
  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 +5 -5
  23. data/lib/factory_bot/decorator/attribute_hash.rb +1 -1
  24. data/lib/factory_bot/decorator/invocation_tracker.rb +1 -1
  25. data/lib/factory_bot/definition.rb +49 -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 +9 -11
  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/NEWS DELETED
@@ -1,298 +0,0 @@
1
- 4.10.0 (May 25, 2018)
2
- Allow sequences to be rewound
3
-
4
- 4.9.0 (skipped - FactoryGirl only release)
5
-
6
- 4.8.2 (October 20, 2017)
7
- Rename factory_girl to factory_bot
8
-
9
- 4.8.1 (September 28, 2017)
10
- Explicitly define `#destroyed?` within the `Stub` strategy to return `nil` instead of raising
11
- Update various dependencies
12
- Update internal test suite to use RSpec's mocking/stubbing instead of mocha
13
-
14
- 4.8.0 (December 16, 2016)
15
- Improve documentation
16
- Add `FactoryGirl.generate_list` to be consistent with `build_list`/`create_list` and friends
17
- Add `FactoryGirl.use_parent_strategy` configuration to allow associations to leverage parent build strategy
18
-
19
- 4.7.0 (April 1, 2016)
20
- Improve documentation
21
- Improve instrumentation payload to include traits, overrides, and the factory itself
22
- Allow linting of traits
23
- Deprecate factory lookup by class name in preparation for 5.0
24
- Improve internal performance by using flat_map instead of map and compact
25
- Improve handling of dirty attributes after building a stubbed object
26
- Reduce warnings from redefining methods
27
-
28
- 4.6.0 (skipped)
29
-
30
- 4.5.0 (October 17, 2014)
31
- Improve FactoryGirl.lint by including exception and message in output
32
- Allow selective linting
33
- Use more explicit #public_send when doing attribute assignment
34
- Improve documentation around FactoryGirl.lint and initialize_with
35
- Deprecate #ignore in favor of #transient
36
-
37
- 4.4.0 (February 10, 2014)
38
- Add FactoryGirl.lint
39
- Fix memory leak in duplicate traits
40
- Update documentation
41
-
42
- 4.3.0 (November 3, 2013)
43
- Start testing against Rails 4.0 and Ruby 2.0.0
44
- Stop testing against Rails 3.0 and Ruby 1.9.2
45
- Add *_pair methods to only build two objects
46
- Raise if a method is defined with a FactoryGirl block (factory or trait)
47
- Allow use of Symbol#to_proc in callbacks
48
- Add global callbacks
49
- Improve GETTING_STARTED and README
50
-
51
- 4.2.0 (January 18, 2013)
52
- Improve documentation
53
- Allow *_list syntax methods to accept a block
54
- Update gem dependencies
55
- Allow setting id for objects created with `build_stubbed`
56
- Fix Stub strategy to mimic ActiveRecord regarding `created_at`
57
- Evaluate sequences within the context of an Evaluator
58
- Fix Mocha deprecation warning
59
- Fix some warnings when running RUBYOPT=-w rake
60
- Convert test suite to RSpec's "expect" syntax
61
-
62
- 4.1.0 (September 11, 2012)
63
- Allow multiple callbacks to bind to the same block
64
- Fix documentation surrounding the stub strategy
65
-
66
- 4.0.0 (August 3, 2012)
67
- Remove deprecated cucumber_steps
68
- Remove deprecated alternate syntaxes
69
- Deprecate duplicate_attribute_assignment_from_initialize_with, which is now unused
70
- as attributes assigned within initialize_with are not subsequently assigned
71
-
72
- 3.6.1 (August 2, 2012)
73
- Update README to include info about running with JRuby
74
- Update dependencies on RSpec and tiny versions of Rails in Appraisal
75
- Improve flexibility of using traits with associations and add documentation
76
- Stub update_column to raise to mirror ActiveRecord's change from update_attribute
77
-
78
- 3.6.0 (July 27, 2012)
79
- Code/spec cleanup
80
- Allow factories with traits to be used in associations
81
- Refactor Factory to use DefinitionHierarchy to handle managing callbacks,
82
- custom constructor, and custom to_create
83
- Add memoization to speed up factories providing attribute overrides
84
- Add initial support of JRuby when running in 1.9 mode
85
- Improve docs on what happens when including FactoryGirl::Syntax::Methods
86
-
87
- 3.5.0 (June 22, 2012)
88
- Allow created_at to be set when using build_stubbed
89
- Deprecate FactoryGirl step definitions
90
-
91
- 3.4.2 (June 19, 2012)
92
- Fix bug in traits with callbacks called implicitly in factories whose
93
- callbacks trigger multiple times
94
-
95
- 3.4.1 (June 18, 2012)
96
- Fix traits so they can be nested and referred to from other traits
97
-
98
- 3.4.0 (June 11, 2012)
99
- Sequences support Enumerators
100
- Optionally disable duplicate assignment of attributes in initialize_with
101
- Make hash of public attributes available in initialize_with
102
- Support referring to a factory based on class name
103
-
104
- 3.3.0 (May 13, 2012)
105
- Allow to_create, skip_create, and initialize_with to be defined globally
106
- Allow to_create, skip_create, and initialize_with to be defined within traits
107
- Fix deprecation messages for alternate syntaxes (make, generate, etc.)
108
- Improve library documentation
109
- Deprecate after_build, after_create, before_create, after_stub in favor of new callbacks
110
- Introduce new callback syntax: after(:build) {}, after(:custom) {}, or callback(:different) {}
111
- This allows for declaring any callback, usable with custom strategies
112
- Add attributes_for_list and build_stubbed_list with the StrategySyntaxMethodRegistrar
113
- Allow use of syntax methods (build, create, generate, etc) implicitly in callbacks
114
- Internal refactoring of a handful of components
115
-
116
- 3.2.0 (April 24, 2012)
117
- Use AS::Notifications for pub/sub to track running factories
118
- Call new within initialize_with implicitly on the build class
119
- Skip to_create with skip_create
120
- Allow registration of custom strategies
121
- Deprecate alternate syntaxes
122
- Implicitly call factory_bot's syntax methods from dynamic attributes
123
-
124
- 3.1.0 (April 6, 2012)
125
- Sequences support aliases, which reference the same block
126
- Update documentation
127
- Add before_create callback
128
- Support use of #attribute_names method to determine available attributes for steps
129
- Use ActiveSupport::Deprecation for all deprecations
130
-
131
- 3.0.0 (March 23, 2012)
132
- Deprecate the vintage syntax
133
- Remove Rails 2.x support
134
- Remove Ruby 1.8 support
135
- Remove deprecated features, including default_strategy, factory_name,
136
- :method for defining default strategy, ignore on individual attributes, and
137
- interacting with Factory the way you would FactoryGirl
138
-
139
- 2.6.4 (March 16, 2012)
140
- Do not ignore names of transient attributes
141
- Ensure attributes set on instance are calculated uniquely
142
-
143
- 2.6.3 (March 9, 2012)
144
- Fix issue with traits not being present the first time a factory is accessed
145
- Update available Cucumber step definitions to not require a trailing colon
146
- when building a table of attributes to instantiate records with
147
-
148
- 2.6.2 (March 9, 2012)
149
- Allow factories to use all their ancestors' traits
150
- Ignore bin dir generated by bundler
151
- Namespace ::Factory as top-level to fix vintage syntax issue with
152
- Ruby 1.9.2-p3p18
153
-
154
- 2.6.1 (March 2, 2012)
155
- Use FactoryGirl.reload in specs
156
- Clean up running named factories with a particular strategy with
157
- FactoryGirl::FactoryRunner
158
-
159
- 2.6.0 (February 17, 2012)
160
- Improve documentation of has_many associations in the GETTING_STARTED
161
- document
162
- Deprecate :method in favor of :strategy when overriding an association's
163
- build strategy
164
-
165
- 2.5.2 (February 10, 2012)
166
- Fix step definitions to use associations defined in parent factories
167
- Add inline trait support to (build|create)_list
168
- Update ActiveSupport dependency to >= 2.3.9, which introduced
169
- class_attribute
170
-
171
- 2.5.1 (February 3, 2012)
172
- Fix attribute evaluation when the attribute isn't defined in the factory but
173
- is a private method on Object
174
- Update rubygems on Travis before running tests
175
- Fix spec name
176
- Update GETTING_STARTED with correct usage of build_stubbed
177
- Update README with more info on initialize_with
178
- Honor :parent on factory over block nesting
179
-
180
- 2.5.0 (January 20, 2012)
181
- Revert 'Deprecate build_stubbed and attributes_for'
182
- Implement initialize_with to allow overriding object instantiation
183
- Ensure FG runs against Rails 3.2.0
184
-
185
- 2.4.2 (January 18, 2012)
186
- Fix inline traits' interaction with defaults on the factory
187
-
188
- 2.4.1 (January 17, 2012)
189
- Deprecate build_stubbed and attributes_for
190
- Fix inline traits
191
-
192
- 2.4.0 (January 13, 2012)
193
- Refactor internals of FactoryGirl to use anonymous class on which attributes
194
- get defined
195
- Explicitly require Ruby 1.8.7 or higher in gemspec
196
- Fix documentation
197
- Add Gemnasium status to documentation
198
- Supplying a Class to a factory that overrides to_s no longer results in
199
- getting the wrong Class constructed
200
- Be more agnostic about ORMs when using columns in FactoryGirl step
201
- definitions
202
- Test against Active Record 3.2.0.rc2
203
- Update GETTING_STARTED to use Ruby syntax highlighting
204
-
205
- 2.3.2 (November 26, 2011)
206
- Move logic of where instance.save! is set to Definition
207
- Fix method name from aliases_for? to alias_for?
208
- Refactor internal attribute handling to use an anonymous class instead of
209
- faking Ruby's variable resolution. This allows for more sane usage of
210
- attributes without having to manage sorting priority because attributes
211
- can turn themselves into procs, which are used with define_method on a
212
- class so attributes work correctly all the time.
213
-
214
- 2.3.1 (November 23, 2011)
215
- Remove internally-used associate method from all the FactoryGirl::Proxy subclasses
216
- Move around requiring of files
217
- Consolidate errors into factory_bot.rb
218
- Refactor AttributeList to deal with priority only when iterating over
219
- attributes
220
- Refactor internals of some of the Proxy subclasses
221
- Ensure callbacks on traits are executed in the correct order
222
-
223
- 2.3.0 (November 18, 2011)
224
- Registries are named, resulting in better messages when factories, traits,
225
- or sequences cannot be found
226
- Fix incorrect tests
227
- Internals refactoring introducing FactoryGirl::NullFactory,
228
- FactoryGirl::Definition, and FactoryGirl::DeclarationList
229
- Use ActiveSupport for Hash#except and its delegation capabilities
230
- Fix usage of callbacks when added via implicit traits
231
- Use Bundler tasks and clean up dependencies
232
- Fix failing spec for big letters in factory name passed as symbol
233
- Add ability for traits to be added dynamically when creating an instance via
234
- build, create, build_stubbed, or attributes_for
235
-
236
- 2.2.0 (October 14, 2011)
237
- Clean up RSpec suite to not use 'should'
238
- Use create_list in step definitions
239
- Syntax methods that deal with ORM interaction (attributes_for, build, build_stubbed,
240
- and create) now accept a block that yields the result. This results in a
241
- more convenient way to interact with the result than using Object.tap.
242
- Standardize deprecation warnings
243
- Update transient attribute syntax to use blocks instead of calling ignore on
244
- each attribute declaration
245
- Parents can be defined after children because factories are evaluated when
246
- they're used; this means breaking up factories across multiple files will
247
- behave as expected
248
- Large internal refactoring, including changing access modifiers for a
249
- handful of methods for a more clearly defined API
250
-
251
- 2.1.2 (September 23, 2011)
252
- Bugfix: Vintage syntax fixed after bug introduced in 2.1.1
253
- Introduce dependency on activesupport to remove code from Factory class
254
-
255
- 2.1.1 (September 23, 2011) (yanked)
256
- Bugfix: Parent object callbacks are run before child object callbacks
257
- Declarations: allow overriding/modification of individual traits in child factories
258
- Callbacks refactored to not be attributes
259
- Updating documentation for formatting and clarity (incl. new specificity for cucumber)
260
-
261
- 2.1.0 (September 02, 2011)
262
- Bugfix: created_at now defined for stubbed models
263
- Gemspec updated for use with Rails 3.1
264
- Factories can now be modified post-definition (useful for overriding defaults from gems/plugins)
265
- All factories can now be reloaded with Factory.reload
266
- Add :method => build to factory associations to prevent saving of associated objects
267
- Factories defined in {Rails.root}/factories are now loaded by default
268
- Various documentation updates
269
-
270
- 1.1.4 (November 28, 2008)
271
- Factory.build now uses Factory.create for associations of the built object
272
- Factory definitions are now detected in subdirectories, such as
273
- factories/person_factory.rb (thanks to Josh Nichols)
274
- Factory definitions are now loaded after the environment in a Rails project
275
- (fixes some issues with dependencies being loaded too early) (thanks to
276
- Josh Nichols)
277
- Factory names ending in 's' no longer cause problems (thanks to Alex Sharp
278
- and Josh Owens)
279
-
280
- 1.1.3 (September 12, 2008)
281
- Automatically pull in definitions from factories.rb, test/factories.rb, or
282
- spec/factories.rb
283
- 1.1.2 (July 30, 2008)
284
- Improved error handling for invalid and undefined factories/attributes
285
- Improved handling of strings vs symbols vs classes
286
- Added a prettier syntax for handling associations
287
- Updated documentation and fixed compatibility with Rails 2.1
288
-
289
- 1.1.1 (June 23, 2008)
290
- The attribute "name" no longer requires using #add_attribute
291
-
292
- 1.1.0 (June 03, 2008)
293
- Added support for dependent attributes
294
- Fixed the attributes_for build strategy to not build associations
295
- Added support for sequences
296
-
297
- 1.0.0 (May 31, 2008)
298
- First version
data/Rakefile DELETED
@@ -1,36 +0,0 @@
1
- require 'rubygems'
2
- require 'bundler'
3
- require 'rake'
4
- require 'appraisal'
5
- require 'yard'
6
- require 'rspec/core/rake_task'
7
- require 'cucumber/rake/task'
8
-
9
- Bundler::GemHelper.install_tasks(name: 'factory_bot')
10
-
11
- desc 'Default: run the specs and features.'
12
- task default: %w(spec:unit spec:acceptance features)
13
-
14
- namespace :spec do
15
- desc "Run unit specs"
16
- RSpec::Core::RakeTask.new('unit') do |t|
17
- t.pattern = 'spec/{*_spec.rb,factory_bot/**/*_spec.rb}'
18
- end
19
-
20
- desc "Run acceptance specs"
21
- RSpec::Core::RakeTask.new('acceptance') do |t|
22
- t.pattern = 'spec/acceptance/**/*_spec.rb'
23
- end
24
- end
25
-
26
- desc "Run the unit and acceptance specs"
27
- task :spec => ['spec:unit', 'spec:acceptance']
28
-
29
- Cucumber::Rake::Task.new(:features) do |t|
30
- t.fork = true
31
- t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
32
- end
33
-
34
- YARD::Rake::YardocTask.new do |t|
35
- end
36
-
@@ -1 +0,0 @@
1
- default: -r features features
@@ -1,36 +0,0 @@
1
- $LOAD_PATH << File.expand_path("../lib", __FILE__)
2
- require 'factory_bot/version'
3
-
4
- Gem::Specification.new do |s|
5
- s.name = %q{factory_bot}
6
- s.version = FactoryBot::VERSION
7
- s.summary = %q{factory_bot provides a framework and DSL for defining and
8
- using model instance factories.}
9
- s.description = %q{factory_bot provides a framework and DSL for defining and
10
- using factories - less error-prone, more explicit, and
11
- all-around easier to work with than fixtures.}
12
-
13
- s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(spec|features)/}) }
14
-
15
- s.require_path = 'lib'
16
- s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
17
-
18
- s.authors = ["Josh Clayton", "Joe Ferris"]
19
- s.email = ["jclayton@thoughtbot.com", "jferris@thoughtbot.com"]
20
-
21
- s.homepage = "https://github.com/thoughtbot/factory_bot"
22
-
23
- s.add_dependency("activesupport", ">= 3.0.0")
24
-
25
- s.add_development_dependency("rspec", "~> 3.0")
26
- s.add_development_dependency("rspec-its", "~> 1.0")
27
- s.add_development_dependency("cucumber", "~> 1.3.15")
28
- s.add_development_dependency("timecop")
29
- s.add_development_dependency("simplecov")
30
- s.add_development_dependency("aruba")
31
- s.add_development_dependency("appraisal", "~> 2.1.0")
32
- s.add_development_dependency("activerecord", ">= 3.0.0")
33
- s.add_development_dependency("yard")
34
-
35
- s.license = "MIT"
36
- end
@@ -1,40 +0,0 @@
1
- $LOAD_PATH << File.expand_path("../lib", __FILE__)
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{factory_girl}
5
- s.version = "4.8.2".freeze
6
- s.summary = %q{factory_girl provides a framework and DSL for defining and
7
- using model instance factories.}
8
- s.description = %q{factory_girl provides a framework and DSL for defining and
9
- using factories - less error-prone, more explicit, and
10
- all-around easier to work with than fixtures.}
11
- s.post_install_message = "The factory_girl gem has been deprecated and has "\
12
- "been replaced by factory_bot. Please switch to "\
13
- "factory_bot as soon as possible."
14
-
15
- s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^(spec|features)/}) }
16
-
17
- s.require_path = 'lib'
18
- s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
19
-
20
- s.authors = ["Josh Clayton", "Joe Ferris"]
21
- s.email = ["jclayton@thoughtbot.com", "jferris@thoughtbot.com"]
22
-
23
- s.homepage = "https://github.com/thoughtbot/factory_girl"
24
-
25
- s.add_dependency("activesupport", ">= 3.0.0")
26
-
27
- s.add_development_dependency("rspec", "~> 3.0")
28
- s.add_development_dependency("rspec-its", "~> 1.0")
29
- s.add_development_dependency("cucumber", "~> 1.3.15")
30
- s.add_development_dependency("timecop")
31
- s.add_development_dependency("simplecov")
32
- s.add_development_dependency("aruba")
33
- s.add_development_dependency("mocha", ">= 0.12.8")
34
- s.add_development_dependency("bourne")
35
- s.add_development_dependency("appraisal", "~> 2.1.0")
36
- s.add_development_dependency("activerecord", ">= 3.0.0")
37
- s.add_development_dependency("yard")
38
-
39
- s.license = "MIT"
40
- end
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
6
- gem "jdbc-sqlite3", :platforms => :jruby
7
- gem "sqlite3", "~> 1.3.10", :platforms => :ruby
8
- gem "activerecord", :git => "https://github.com/rails/rails.git", :branch => "3-2-stable"
9
-
10
- gemspec :name => "factory_bot", :path => "../"
@@ -1,107 +0,0 @@
1
- GIT
2
- remote: https://github.com/rails/rails.git
3
- revision: e17e25cd23e8abd45b1706463dd57c90fa6dcb7c
4
- branch: 3-2-stable
5
- specs:
6
- activemodel (3.2.22.5)
7
- activesupport (= 3.2.22.5)
8
- builder (~> 3.0)
9
- activerecord (3.2.22.5)
10
- activemodel (= 3.2.22.5)
11
- activesupport (= 3.2.22.5)
12
- arel (~> 3.0.2)
13
- tzinfo (~> 0.3.29)
14
- activesupport (3.2.22.5)
15
- i18n (~> 0.6, >= 0.6.4)
16
- multi_json (~> 1.0)
17
-
18
- PATH
19
- remote: ..
20
- specs:
21
- factory_bot (4.10.0)
22
- activesupport (>= 3.0.0)
23
-
24
- GEM
25
- remote: https://rubygems.org/
26
- specs:
27
- appraisal (2.1.0)
28
- bundler
29
- rake
30
- thor (>= 0.14.0)
31
- arel (3.0.3)
32
- aruba (0.14.2)
33
- childprocess (~> 0.5.6)
34
- contracts (~> 0.9)
35
- cucumber (>= 1.3.19)
36
- ffi (~> 1.9.10)
37
- rspec-expectations (>= 2.99)
38
- thor (~> 0.19)
39
- builder (3.2.3)
40
- childprocess (0.5.9)
41
- ffi (~> 1.0, >= 1.0.11)
42
- concurrent-ruby (1.0.5)
43
- contracts (0.16.0)
44
- cucumber (1.3.20)
45
- builder (>= 2.1.2)
46
- diff-lcs (>= 1.1.3)
47
- gherkin (~> 2.12)
48
- multi_json (>= 1.7.5, < 2.0)
49
- multi_test (>= 0.1.2)
50
- diff-lcs (1.3)
51
- docile (1.1.5)
52
- ffi (1.9.18)
53
- gherkin (2.12.2)
54
- multi_json (~> 1.3)
55
- i18n (0.9.1)
56
- concurrent-ruby (~> 1.0)
57
- json (2.1.0)
58
- multi_json (1.12.2)
59
- multi_test (0.1.2)
60
- rake (12.2.1)
61
- rspec (3.7.0)
62
- rspec-core (~> 3.7.0)
63
- rspec-expectations (~> 3.7.0)
64
- rspec-mocks (~> 3.7.0)
65
- rspec-core (3.7.0)
66
- rspec-support (~> 3.7.0)
67
- rspec-expectations (3.7.0)
68
- diff-lcs (>= 1.2.0, < 2.0)
69
- rspec-support (~> 3.7.0)
70
- rspec-its (1.2.0)
71
- rspec-core (>= 3.0.0)
72
- rspec-expectations (>= 3.0.0)
73
- rspec-mocks (3.7.0)
74
- diff-lcs (>= 1.2.0, < 2.0)
75
- rspec-support (~> 3.7.0)
76
- rspec-support (3.7.0)
77
- simplecov (0.15.1)
78
- docile (~> 1.1.0)
79
- json (>= 1.8, < 3)
80
- simplecov-html (~> 0.10.0)
81
- simplecov-html (0.10.2)
82
- sqlite3 (1.3.13)
83
- thor (0.20.0)
84
- timecop (0.9.1)
85
- tzinfo (0.3.53)
86
- yard (0.9.12)
87
-
88
- PLATFORMS
89
- ruby
90
-
91
- DEPENDENCIES
92
- activerecord!
93
- activerecord-jdbcsqlite3-adapter
94
- appraisal (~> 2.1.0)
95
- aruba
96
- cucumber (~> 1.3.15)
97
- factory_bot!
98
- jdbc-sqlite3
99
- rspec (~> 3.0)
100
- rspec-its (~> 1.0)
101
- simplecov
102
- sqlite3 (~> 1.3.10)
103
- timecop
104
- yard
105
-
106
- BUNDLED WITH
107
- 1.16.1