tiny-lite-mod 0.0.1

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 (62) hide show
  1. checksums.yaml +7 -0
  2. data/factory_bot-6.6.0/CONTRIBUTING.md +105 -0
  3. data/factory_bot-6.6.0/GETTING_STARTED.md +2203 -0
  4. data/factory_bot-6.6.0/LICENSE +19 -0
  5. data/factory_bot-6.6.0/NAME.md +18 -0
  6. data/factory_bot-6.6.0/NEWS.md +607 -0
  7. data/factory_bot-6.6.0/README.md +99 -0
  8. data/factory_bot-6.6.0/lib/factory_bot/aliases.rb +18 -0
  9. data/factory_bot-6.6.0/lib/factory_bot/attribute/association.rb +27 -0
  10. data/factory_bot-6.6.0/lib/factory_bot/attribute/dynamic.rb +25 -0
  11. data/factory_bot-6.6.0/lib/factory_bot/attribute/sequence.rb +16 -0
  12. data/factory_bot-6.6.0/lib/factory_bot/attribute.rb +27 -0
  13. data/factory_bot-6.6.0/lib/factory_bot/attribute_assigner.rb +168 -0
  14. data/factory_bot-6.6.0/lib/factory_bot/attribute_list.rb +68 -0
  15. data/factory_bot-6.6.0/lib/factory_bot/callback.rb +33 -0
  16. data/factory_bot-6.6.0/lib/factory_bot/callbacks_observer.rb +39 -0
  17. data/factory_bot-6.6.0/lib/factory_bot/configuration.rb +33 -0
  18. data/factory_bot-6.6.0/lib/factory_bot/declaration/association.rb +58 -0
  19. data/factory_bot-6.6.0/lib/factory_bot/declaration/dynamic.rb +28 -0
  20. data/factory_bot-6.6.0/lib/factory_bot/declaration/implicit.rb +38 -0
  21. data/factory_bot-6.6.0/lib/factory_bot/declaration.rb +23 -0
  22. data/factory_bot-6.6.0/lib/factory_bot/declaration_list.rb +49 -0
  23. data/factory_bot-6.6.0/lib/factory_bot/decorator/attribute_hash.rb +16 -0
  24. data/factory_bot-6.6.0/lib/factory_bot/decorator/disallows_duplicates_registry.rb +13 -0
  25. data/factory_bot-6.6.0/lib/factory_bot/decorator/invocation_tracker.rb +20 -0
  26. data/factory_bot-6.6.0/lib/factory_bot/decorator/new_constructor.rb +12 -0
  27. data/factory_bot-6.6.0/lib/factory_bot/decorator.rb +25 -0
  28. data/factory_bot-6.6.0/lib/factory_bot/definition.rb +210 -0
  29. data/factory_bot-6.6.0/lib/factory_bot/definition_hierarchy.rb +38 -0
  30. data/factory_bot-6.6.0/lib/factory_bot/definition_proxy.rb +269 -0
  31. data/factory_bot-6.6.0/lib/factory_bot/enum.rb +27 -0
  32. data/factory_bot-6.6.0/lib/factory_bot/errors.rb +28 -0
  33. data/factory_bot-6.6.0/lib/factory_bot/evaluation.rb +23 -0
  34. data/factory_bot-6.6.0/lib/factory_bot/evaluator.rb +86 -0
  35. data/factory_bot-6.6.0/lib/factory_bot/evaluator_class_definer.rb +20 -0
  36. data/factory_bot-6.6.0/lib/factory_bot/factory.rb +178 -0
  37. data/factory_bot-6.6.0/lib/factory_bot/factory_runner.rb +35 -0
  38. data/factory_bot-6.6.0/lib/factory_bot/find_definitions.rb +25 -0
  39. data/factory_bot-6.6.0/lib/factory_bot/internal.rb +124 -0
  40. data/factory_bot-6.6.0/lib/factory_bot/linter.rb +121 -0
  41. data/factory_bot-6.6.0/lib/factory_bot/null_factory.rb +27 -0
  42. data/factory_bot-6.6.0/lib/factory_bot/null_object.rb +20 -0
  43. data/factory_bot-6.6.0/lib/factory_bot/registry.rb +59 -0
  44. data/factory_bot-6.6.0/lib/factory_bot/reload.rb +7 -0
  45. data/factory_bot-6.6.0/lib/factory_bot/sequence.rb +197 -0
  46. data/factory_bot-6.6.0/lib/factory_bot/strategy/attributes_for.rb +17 -0
  47. data/factory_bot-6.6.0/lib/factory_bot/strategy/build.rb +21 -0
  48. data/factory_bot-6.6.0/lib/factory_bot/strategy/create.rb +24 -0
  49. data/factory_bot-6.6.0/lib/factory_bot/strategy/null.rb +15 -0
  50. data/factory_bot-6.6.0/lib/factory_bot/strategy/stub.rb +129 -0
  51. data/factory_bot-6.6.0/lib/factory_bot/strategy.rb +15 -0
  52. data/factory_bot-6.6.0/lib/factory_bot/strategy_syntax_method_registrar.rb +65 -0
  53. data/factory_bot-6.6.0/lib/factory_bot/syntax/default.rb +64 -0
  54. data/factory_bot-6.6.0/lib/factory_bot/syntax/methods.rb +181 -0
  55. data/factory_bot-6.6.0/lib/factory_bot/syntax.rb +7 -0
  56. data/factory_bot-6.6.0/lib/factory_bot/syntax_runner.rb +6 -0
  57. data/factory_bot-6.6.0/lib/factory_bot/trait.rb +39 -0
  58. data/factory_bot-6.6.0/lib/factory_bot/uri_manager.rb +63 -0
  59. data/factory_bot-6.6.0/lib/factory_bot/version.rb +3 -0
  60. data/factory_bot-6.6.0/lib/factory_bot.rb +117 -0
  61. data/tiny-lite-mod.gemspec +12 -0
  62. metadata +101 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 14a1bfd4999d3b4ffa342edf7ec0c133a1e2a3b6fffa21dafdc75eebdeafc3d3
4
+ data.tar.gz: 92beb9195f96db2c8d00d2175b320f9e9f343963e6faaa75c8a4a85f8b8a0a1a
5
+ SHA512:
6
+ metadata.gz: 75967b0315e11625c067a46642bb444b80b893ece775cd9e28d4cf3446e47941d5f1cb59cd65db7626adb67f6fd678612abb5d31e755d95df9c92b9efb974da0
7
+ data.tar.gz: 5c6d46b293f057d80a4d5ee8ff1649f4bb4710e55046fd9c5119e034e3e40be7333ea2dad8383ef3acaa6a0c5bcff6d1cdd0a96ab98cd260ad093537aee29ead
@@ -0,0 +1,105 @@
1
+ # Contributing to Factory Bot
2
+
3
+ We love pull requests from everyone. By participating in this project, you
4
+ agree to abide by the thoughtbot [code of conduct].
5
+
6
+ [code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
7
+
8
+ Here are some ways *you* can contribute:
9
+
10
+ * by using alpha, beta, and prerelease versions
11
+ * by reporting bugs
12
+ * by suggesting new features
13
+ * by writing or editing documentation
14
+ * by writing specifications
15
+ * by writing code ( **no patch is too small** : fix typos, add comments, etc. )
16
+ * by refactoring code
17
+ * by closing [issues][]
18
+ * by reviewing patches
19
+
20
+ [issues]: https://github.com/thoughtbot/factory_bot/issues
21
+
22
+ ## Submitting an Issue
23
+
24
+ * We use the [GitHub issue tracker][issues] to track bugs and features.
25
+ * Before submitting a bug report or feature request, check to make sure it hasn't
26
+ already been submitted.
27
+ * When submitting a bug report, please include a [reproduction script] and any
28
+ other details that may be necessary to reproduce the bug, including your gem
29
+ version, Ruby version, and operating system.
30
+
31
+ ## Cleaning up issues
32
+
33
+ * Issues that have no response from the submitter will be closed after 30 days.
34
+ * Issues will be closed once they're assumed to be fixed or answered. If the
35
+ maintainer is wrong, it can be opened again.
36
+ * If your issue is closed by mistake, please understand and explain the issue.
37
+ We will happily reopen the issue.
38
+
39
+ ## Submitting a Pull Request
40
+
41
+ 1. [Fork][fork] the [official repository][repo].
42
+ 1. [Create a topic branch.][branch]
43
+ 1. Implement your feature or bug fix.
44
+ 1. Add, commit, and push your changes.
45
+ 1. [Submit a pull request.][pr]
46
+
47
+ ### Notes
48
+
49
+ * Please add tests if you changed code. Contributions without tests won't be accepted.
50
+ * If you don't know how to add tests, please put in a PR and leave a comment
51
+ asking for help. We love helping!
52
+ * Please don't update the Gem version.
53
+
54
+ ## Setting up
55
+
56
+ ```sh
57
+ bundle install
58
+ ```
59
+
60
+ ## Running the test suite
61
+
62
+ The default rake task will run the full test suite and [standard]:
63
+
64
+ ```sh
65
+ bundle exec rake
66
+ ```
67
+
68
+ You can also run a single group of tests (unit, spec, or feature)
69
+
70
+ ```sh
71
+ bundle exec rake spec:unit
72
+ bundle exec rake spec:acceptance
73
+ bundle exec rake features
74
+ ```
75
+
76
+ To run an individual rspec test, you can provide a path and line number:
77
+
78
+ ```sh
79
+ bundle exec rspec spec/path/to/spec.rb:123
80
+ ```
81
+
82
+ You can run tests with a specific version of rails via [appraisal]. To run
83
+ the default rake task against Rails 6, for example:
84
+
85
+ ```sh
86
+ bundle exec appraisal 6.0 rake
87
+ ```
88
+
89
+ ## Formatting
90
+
91
+ Use [standard] to automatically format your code:
92
+
93
+ ```sh
94
+ bundle exec rake standard:fix
95
+ ```
96
+
97
+ [repo]: https://github.com/thoughtbot/factory_bot/tree/main
98
+ [fork]: https://help.github.com/articles/fork-a-repo/
99
+ [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/
100
+ [pr]: https://help.github.com/articles/using-pull-requests/
101
+ [standard]: https://github.com/testdouble/standard
102
+ [appraisal]: https://github.com/thoughtbot/appraisal
103
+ [reproduction script]: https://github.com/thoughtbot/factory_bot/blob/main/.github/REPRODUCTION_SCRIPT.rb
104
+
105
+ Inspired by https://github.com/middleman/middleman-heroku/blob/master/CONTRIBUTING.md