factory_bot_rails 1.0.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +7 -0
  2. data/Appraisals +21 -0
  3. data/CONTRIBUTING.md +39 -0
  4. data/Gemfile +20 -0
  5. data/Gemfile.lock +144 -0
  6. data/LICENSE +19 -0
  7. data/NEWS +24 -0
  8. data/README.md +94 -0
  9. data/Rakefile +24 -0
  10. data/bin/setup +16 -0
  11. data/factory_bot_rails-1.0.0.gem +0 -0
  12. data/factory_bot_rails.gemspec +20 -0
  13. data/factory_girl_rails.gemspec +20 -0
  14. data/features/fixture_replacement_config.feature +132 -0
  15. data/features/generators.feature +54 -0
  16. data/features/load_definitions.feature +85 -0
  17. data/features/step_definitions/appraisal.rb +5 -0
  18. data/features/step_definitions/rails_steps.rb +42 -0
  19. data/features/support/env.rb +21 -0
  20. data/gemfiles/rails3.2.gemfile +22 -0
  21. data/gemfiles/rails3.2.gemfile.lock +177 -0
  22. data/gemfiles/rails4.1.gemfile +23 -0
  23. data/gemfiles/rails4.1.gemfile.lock +175 -0
  24. data/gemfiles/rails4.2.gemfile +21 -0
  25. data/gemfiles/rails4.2.gemfile.lock +190 -0
  26. data/gemfiles/rails5.0.gemfile +22 -0
  27. data/gemfiles/rails5.0.gemfile.lock +153 -0
  28. data/lib/factory_bot_rails.rb +4 -0
  29. data/lib/factory_bot_rails/generator.rb +43 -0
  30. data/lib/factory_bot_rails/generators/non_rspec_generator.rb +19 -0
  31. data/lib/factory_bot_rails/generators/null_generator.rb +11 -0
  32. data/lib/factory_bot_rails/generators/rspec_generator.rb +23 -0
  33. data/lib/factory_bot_rails/railtie.rb +28 -0
  34. data/lib/generators/factory_bot.rb +15 -0
  35. data/lib/generators/factory_bot/model/model_generator.rb +99 -0
  36. data/tmp/aruba/testapp/Gemfile +50 -0
  37. data/tmp/aruba/testapp/Gemfile.lock +188 -0
  38. data/tmp/aruba/testapp/README.md +24 -0
  39. data/tmp/aruba/testapp/Rakefile +6 -0
  40. data/tmp/aruba/testapp/app/assets/config/manifest.js +3 -0
  41. data/tmp/aruba/testapp/app/assets/javascripts/application.js +16 -0
  42. data/tmp/aruba/testapp/app/assets/javascripts/cable.js +13 -0
  43. data/tmp/aruba/testapp/app/assets/stylesheets/application.css +15 -0
  44. data/tmp/aruba/testapp/app/channels/application_cable/channel.rb +4 -0
  45. data/tmp/aruba/testapp/app/channels/application_cable/connection.rb +4 -0
  46. data/tmp/aruba/testapp/app/controllers/application_controller.rb +3 -0
  47. data/tmp/aruba/testapp/app/helpers/application_helper.rb +2 -0
  48. data/tmp/aruba/testapp/app/jobs/application_job.rb +2 -0
  49. data/tmp/aruba/testapp/app/mailers/application_mailer.rb +4 -0
  50. data/tmp/aruba/testapp/app/models/application_record.rb +3 -0
  51. data/tmp/aruba/testapp/app/models/user.rb +2 -0
  52. data/tmp/aruba/testapp/app/views/layouts/application.html.erb +14 -0
  53. data/tmp/aruba/testapp/app/views/layouts/mailer.html.erb +13 -0
  54. data/tmp/aruba/testapp/app/views/layouts/mailer.text.erb +1 -0
  55. data/tmp/aruba/testapp/bin/bundle +3 -0
  56. data/tmp/aruba/testapp/bin/rails +9 -0
  57. data/tmp/aruba/testapp/bin/rake +9 -0
  58. data/tmp/aruba/testapp/bin/setup +34 -0
  59. data/tmp/aruba/testapp/bin/spring +17 -0
  60. data/tmp/aruba/testapp/bin/update +29 -0
  61. data/tmp/aruba/testapp/config.ru +5 -0
  62. data/tmp/aruba/testapp/config/application.rb +16 -0
  63. data/tmp/aruba/testapp/config/boot.rb +3 -0
  64. data/tmp/aruba/testapp/config/cable.yml +9 -0
  65. data/tmp/aruba/testapp/config/database.yml +25 -0
  66. data/tmp/aruba/testapp/config/environment.rb +5 -0
  67. data/tmp/aruba/testapp/config/environments/development.rb +54 -0
  68. data/tmp/aruba/testapp/config/environments/production.rb +86 -0
  69. data/tmp/aruba/testapp/config/environments/test.rb +42 -0
  70. data/tmp/aruba/testapp/config/initializers/application_controller_renderer.rb +6 -0
  71. data/tmp/aruba/testapp/config/initializers/assets.rb +11 -0
  72. data/tmp/aruba/testapp/config/initializers/backtrace_silencers.rb +7 -0
  73. data/tmp/aruba/testapp/config/initializers/cookies_serializer.rb +5 -0
  74. data/tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  75. data/tmp/aruba/testapp/config/initializers/inflections.rb +16 -0
  76. data/tmp/aruba/testapp/config/initializers/mime_types.rb +4 -0
  77. data/tmp/aruba/testapp/config/initializers/new_framework_defaults.rb +24 -0
  78. data/tmp/aruba/testapp/config/initializers/session_store.rb +3 -0
  79. data/tmp/aruba/testapp/config/initializers/wrap_parameters.rb +14 -0
  80. data/tmp/aruba/testapp/config/locales/en.yml +23 -0
  81. data/tmp/aruba/testapp/config/puma.rb +47 -0
  82. data/tmp/aruba/testapp/config/routes.rb +3 -0
  83. data/tmp/aruba/testapp/config/secrets.yml +22 -0
  84. data/tmp/aruba/testapp/config/spring.rb +6 -0
  85. data/tmp/aruba/testapp/db/development.sqlite3 +0 -0
  86. data/tmp/aruba/testapp/db/migrate/1_create_users.rb +7 -0
  87. data/tmp/aruba/testapp/db/schema.rb +19 -0
  88. data/tmp/aruba/testapp/db/seeds.rb +7 -0
  89. data/tmp/aruba/testapp/db/test.sqlite3 +0 -0
  90. data/tmp/aruba/testapp/lib/some_railtie/factories.rb +5 -0
  91. data/tmp/aruba/testapp/lib/some_railtie/railties.rb +8 -0
  92. data/tmp/aruba/testapp/log/development.log +16 -0
  93. data/tmp/aruba/testapp/log/test.log +21 -0
  94. data/tmp/aruba/testapp/public/404.html +67 -0
  95. data/tmp/aruba/testapp/public/422.html +67 -0
  96. data/tmp/aruba/testapp/public/500.html +66 -0
  97. data/tmp/aruba/testapp/public/apple-touch-icon-precomposed.png +0 -0
  98. data/tmp/aruba/testapp/public/apple-touch-icon.png +0 -0
  99. data/tmp/aruba/testapp/public/favicon.ico +0 -0
  100. data/tmp/aruba/testapp/public/robots.txt +5 -0
  101. data/tmp/aruba/testapp/test/test_helper.rb +10 -0
  102. data/tmp/aruba/testapp/test/unit/user_test.rb +8 -0
  103. metadata +176 -0
@@ -0,0 +1,23 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "aruba"
7
+ gem "coffee-rails"
8
+ gem "cucumber", "1.3.19"
9
+ gem "jquery-rails"
10
+ gem "rake"
11
+ gem "rspec-rails"
12
+ gem "uglifier"
13
+ gem "test-unit"
14
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
15
+ gem "jdbc-sqlite3", :platforms => :jruby
16
+ gem "therubyrhino", :platforms => :jruby
17
+ gem "jruby-openssl", :platforms => :jruby
18
+ gem "sqlite3", :platforms => :ruby
19
+ gem "rails", "~> 4.1.9"
20
+ gem "sass-rails"
21
+ gem "spring"
22
+
23
+ gemspec :path => "../", :name => "factory_bot_rails"
@@ -0,0 +1,175 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_bot_rails (1.0.0)
5
+ factory_bot (~> 1.0.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.1.16)
12
+ actionpack (= 4.1.16)
13
+ actionview (= 4.1.16)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ actionpack (4.1.16)
16
+ actionview (= 4.1.16)
17
+ activesupport (= 4.1.16)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ actionview (4.1.16)
21
+ activesupport (= 4.1.16)
22
+ builder (~> 3.1)
23
+ erubis (~> 2.7.0)
24
+ activemodel (4.1.16)
25
+ activesupport (= 4.1.16)
26
+ builder (~> 3.1)
27
+ activerecord (4.1.16)
28
+ activemodel (= 4.1.16)
29
+ activesupport (= 4.1.16)
30
+ arel (~> 5.0.0)
31
+ activesupport (4.1.16)
32
+ i18n (~> 0.6, >= 0.6.9)
33
+ json (~> 1.7, >= 1.7.7)
34
+ minitest (~> 5.1)
35
+ thread_safe (~> 0.1)
36
+ tzinfo (~> 1.1)
37
+ appraisal (2.1.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (5.0.1.20140414130214)
42
+ aruba (0.14.2)
43
+ childprocess (~> 0.5.6)
44
+ contracts (~> 0.9)
45
+ cucumber (>= 1.3.19)
46
+ ffi (~> 1.9.10)
47
+ rspec-expectations (>= 2.99)
48
+ thor (~> 0.19)
49
+ builder (3.2.2)
50
+ childprocess (0.5.9)
51
+ ffi (~> 1.0, >= 1.0.11)
52
+ coffee-rails (4.2.1)
53
+ coffee-script (>= 2.2.0)
54
+ railties (>= 4.0.0, < 5.2.x)
55
+ coffee-script (2.4.1)
56
+ coffee-script-source
57
+ execjs
58
+ coffee-script-source (1.11.1)
59
+ concurrent-ruby (1.0.2)
60
+ contracts (0.14.0)
61
+ cucumber (1.3.19)
62
+ builder (>= 2.1.2)
63
+ diff-lcs (>= 1.1.3)
64
+ gherkin (~> 2.12)
65
+ multi_json (>= 1.7.5, < 2.0)
66
+ multi_test (>= 0.1.2)
67
+ diff-lcs (1.2.5)
68
+ erubis (2.7.0)
69
+ execjs (2.7.0)
70
+ factory_bot (1.0.0)
71
+ activesupport (>= 3.0.0)
72
+ ffi (1.9.14)
73
+ gherkin (2.12.2)
74
+ multi_json (~> 1.3)
75
+ i18n (0.7.0)
76
+ jquery-rails (3.1.4)
77
+ railties (>= 3.0, < 5.0)
78
+ thor (>= 0.14, < 2.0)
79
+ json (1.8.3)
80
+ mail (2.6.4)
81
+ mime-types (>= 1.16, < 4)
82
+ mime-types (3.1)
83
+ mime-types-data (~> 3.2015)
84
+ mime-types-data (3.2016.0521)
85
+ minitest (5.10.1)
86
+ multi_json (1.12.1)
87
+ multi_test (0.1.2)
88
+ power_assert (0.4.1)
89
+ rack (1.5.5)
90
+ rack-test (0.6.3)
91
+ rack (>= 1.0)
92
+ rails (4.1.16)
93
+ actionmailer (= 4.1.16)
94
+ actionpack (= 4.1.16)
95
+ actionview (= 4.1.16)
96
+ activemodel (= 4.1.16)
97
+ activerecord (= 4.1.16)
98
+ activesupport (= 4.1.16)
99
+ bundler (>= 1.3.0, < 2.0)
100
+ railties (= 4.1.16)
101
+ sprockets-rails (~> 2.0)
102
+ railties (4.1.16)
103
+ actionpack (= 4.1.16)
104
+ activesupport (= 4.1.16)
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.18.1, < 2.0)
107
+ rake (11.3.0)
108
+ rspec-core (3.5.4)
109
+ rspec-support (~> 3.5.0)
110
+ rspec-expectations (3.5.0)
111
+ diff-lcs (>= 1.2.0, < 2.0)
112
+ rspec-support (~> 3.5.0)
113
+ rspec-mocks (3.5.0)
114
+ diff-lcs (>= 1.2.0, < 2.0)
115
+ rspec-support (~> 3.5.0)
116
+ rspec-rails (3.5.2)
117
+ actionpack (>= 3.0)
118
+ activesupport (>= 3.0)
119
+ railties (>= 3.0)
120
+ rspec-core (~> 3.5.0)
121
+ rspec-expectations (~> 3.5.0)
122
+ rspec-mocks (~> 3.5.0)
123
+ rspec-support (~> 3.5.0)
124
+ rspec-support (3.5.0)
125
+ sass (3.4.22)
126
+ sass-rails (5.0.6)
127
+ railties (>= 4.0.0, < 6)
128
+ sass (~> 3.1)
129
+ sprockets (>= 2.8, < 4.0)
130
+ sprockets-rails (>= 2.0, < 4.0)
131
+ tilt (>= 1.1, < 3)
132
+ spring (1.7.2)
133
+ sprockets (3.7.0)
134
+ concurrent-ruby (~> 1.0)
135
+ rack (> 1, < 3)
136
+ sprockets-rails (2.3.3)
137
+ actionpack (>= 3.0)
138
+ activesupport (>= 3.0)
139
+ sprockets (>= 2.8, < 4.0)
140
+ sqlite3 (1.3.12)
141
+ test-unit (3.2.3)
142
+ power_assert
143
+ thor (0.19.4)
144
+ thread_safe (0.3.5)
145
+ tilt (2.0.5)
146
+ tzinfo (1.2.2)
147
+ thread_safe (~> 0.1)
148
+ uglifier (3.0.4)
149
+ execjs (>= 0.3.0, < 3)
150
+
151
+ PLATFORMS
152
+ ruby
153
+
154
+ DEPENDENCIES
155
+ activerecord-jdbcsqlite3-adapter
156
+ appraisal
157
+ aruba
158
+ coffee-rails
159
+ cucumber (= 1.3.19)
160
+ factory_bot_rails!
161
+ jdbc-sqlite3
162
+ jquery-rails
163
+ jruby-openssl
164
+ rails (~> 4.1.9)
165
+ rake
166
+ rspec-rails
167
+ sass-rails
168
+ spring
169
+ sqlite3
170
+ test-unit
171
+ therubyrhino
172
+ uglifier
173
+
174
+ BUNDLED WITH
175
+ 1.13.6
@@ -0,0 +1,21 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "aruba"
7
+ gem "coffee-rails"
8
+ gem "cucumber", "1.3.19"
9
+ gem "jquery-rails"
10
+ gem "rake"
11
+ gem "rspec-rails"
12
+ gem "uglifier"
13
+ gem "test-unit"
14
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
15
+ gem "jdbc-sqlite3", :platforms => :jruby
16
+ gem "therubyrhino", :platforms => :jruby
17
+ gem "jruby-openssl", :platforms => :jruby
18
+ gem "sqlite3", :platforms => :ruby
19
+ gem "rails", "~> 4.2.0"
20
+
21
+ gemspec :path => "../", :name => "factory_bot_rails"
@@ -0,0 +1,190 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_bot_rails (1.0.0)
5
+ factory_bot (~> 1.0.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.7.1)
12
+ actionpack (= 4.2.7.1)
13
+ actionview (= 4.2.7.1)
14
+ activejob (= 4.2.7.1)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.7.1)
18
+ actionview (= 4.2.7.1)
19
+ activesupport (= 4.2.7.1)
20
+ rack (~> 1.6)
21
+ rack-test (~> 0.6.2)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ actionview (4.2.7.1)
25
+ activesupport (= 4.2.7.1)
26
+ builder (~> 3.1)
27
+ erubis (~> 2.7.0)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
+ activejob (4.2.7.1)
31
+ activesupport (= 4.2.7.1)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.7.1)
34
+ activesupport (= 4.2.7.1)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.7.1)
37
+ activemodel (= 4.2.7.1)
38
+ activesupport (= 4.2.7.1)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.7.1)
41
+ i18n (~> 0.7)
42
+ json (~> 1.7, >= 1.7.7)
43
+ minitest (~> 5.1)
44
+ thread_safe (~> 0.3, >= 0.3.4)
45
+ tzinfo (~> 1.1)
46
+ appraisal (2.1.0)
47
+ bundler
48
+ rake
49
+ thor (>= 0.14.0)
50
+ arel (6.0.3)
51
+ aruba (0.14.2)
52
+ childprocess (~> 0.5.6)
53
+ contracts (~> 0.9)
54
+ cucumber (>= 1.3.19)
55
+ ffi (~> 1.9.10)
56
+ rspec-expectations (>= 2.99)
57
+ thor (~> 0.19)
58
+ builder (3.2.2)
59
+ childprocess (0.5.9)
60
+ ffi (~> 1.0, >= 1.0.11)
61
+ coffee-rails (4.2.1)
62
+ coffee-script (>= 2.2.0)
63
+ railties (>= 4.0.0, < 5.2.x)
64
+ coffee-script (2.4.1)
65
+ coffee-script-source
66
+ execjs
67
+ coffee-script-source (1.11.1)
68
+ concurrent-ruby (1.0.2)
69
+ contracts (0.14.0)
70
+ cucumber (1.3.19)
71
+ builder (>= 2.1.2)
72
+ diff-lcs (>= 1.1.3)
73
+ gherkin (~> 2.12)
74
+ multi_json (>= 1.7.5, < 2.0)
75
+ multi_test (>= 0.1.2)
76
+ diff-lcs (1.2.5)
77
+ erubis (2.7.0)
78
+ execjs (2.7.0)
79
+ factory_bot (1.0.0)
80
+ activesupport (>= 3.0.0)
81
+ ffi (1.9.14)
82
+ gherkin (2.12.2)
83
+ multi_json (~> 1.3)
84
+ globalid (0.3.7)
85
+ activesupport (>= 4.1.0)
86
+ i18n (0.7.0)
87
+ jquery-rails (4.1.1)
88
+ rails-dom-testing (>= 1, < 3)
89
+ railties (>= 4.2.0)
90
+ thor (>= 0.14, < 2.0)
91
+ json (1.8.3)
92
+ loofah (2.0.3)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.6.4)
95
+ mime-types (>= 1.16, < 4)
96
+ mime-types (3.1)
97
+ mime-types-data (~> 3.2015)
98
+ mime-types-data (3.2016.0521)
99
+ mini_portile2 (2.1.0)
100
+ minitest (5.10.1)
101
+ multi_json (1.12.1)
102
+ multi_test (0.1.2)
103
+ nokogiri (1.6.8.1)
104
+ mini_portile2 (~> 2.1.0)
105
+ power_assert (0.4.1)
106
+ rack (1.6.4)
107
+ rack-test (0.6.3)
108
+ rack (>= 1.0)
109
+ rails (4.2.7.1)
110
+ actionmailer (= 4.2.7.1)
111
+ actionpack (= 4.2.7.1)
112
+ actionview (= 4.2.7.1)
113
+ activejob (= 4.2.7.1)
114
+ activemodel (= 4.2.7.1)
115
+ activerecord (= 4.2.7.1)
116
+ activesupport (= 4.2.7.1)
117
+ bundler (>= 1.3.0, < 2.0)
118
+ railties (= 4.2.7.1)
119
+ sprockets-rails
120
+ rails-deprecated_sanitizer (1.0.3)
121
+ activesupport (>= 4.2.0.alpha)
122
+ rails-dom-testing (1.0.7)
123
+ activesupport (>= 4.2.0.beta, < 5.0)
124
+ nokogiri (~> 1.6.0)
125
+ rails-deprecated_sanitizer (>= 1.0.1)
126
+ rails-html-sanitizer (1.0.3)
127
+ loofah (~> 2.0)
128
+ railties (4.2.7.1)
129
+ actionpack (= 4.2.7.1)
130
+ activesupport (= 4.2.7.1)
131
+ rake (>= 0.8.7)
132
+ thor (>= 0.18.1, < 2.0)
133
+ rake (11.3.0)
134
+ rspec-core (3.5.4)
135
+ rspec-support (~> 3.5.0)
136
+ rspec-expectations (3.5.0)
137
+ diff-lcs (>= 1.2.0, < 2.0)
138
+ rspec-support (~> 3.5.0)
139
+ rspec-mocks (3.5.0)
140
+ diff-lcs (>= 1.2.0, < 2.0)
141
+ rspec-support (~> 3.5.0)
142
+ rspec-rails (3.5.2)
143
+ actionpack (>= 3.0)
144
+ activesupport (>= 3.0)
145
+ railties (>= 3.0)
146
+ rspec-core (~> 3.5.0)
147
+ rspec-expectations (~> 3.5.0)
148
+ rspec-mocks (~> 3.5.0)
149
+ rspec-support (~> 3.5.0)
150
+ rspec-support (3.5.0)
151
+ sprockets (3.7.0)
152
+ concurrent-ruby (~> 1.0)
153
+ rack (> 1, < 3)
154
+ sprockets-rails (3.2.0)
155
+ actionpack (>= 4.0)
156
+ activesupport (>= 4.0)
157
+ sprockets (>= 3.0.0)
158
+ sqlite3 (1.3.12)
159
+ test-unit (3.2.3)
160
+ power_assert
161
+ thor (0.19.4)
162
+ thread_safe (0.3.5)
163
+ tzinfo (1.2.2)
164
+ thread_safe (~> 0.1)
165
+ uglifier (3.0.4)
166
+ execjs (>= 0.3.0, < 3)
167
+
168
+ PLATFORMS
169
+ ruby
170
+
171
+ DEPENDENCIES
172
+ activerecord-jdbcsqlite3-adapter
173
+ appraisal
174
+ aruba
175
+ coffee-rails
176
+ cucumber (= 1.3.19)
177
+ factory_bot_rails!
178
+ jdbc-sqlite3
179
+ jquery-rails
180
+ jruby-openssl
181
+ rails (~> 4.2.0)
182
+ rake
183
+ rspec-rails
184
+ sqlite3
185
+ test-unit
186
+ therubyrhino
187
+ uglifier
188
+
189
+ BUNDLED WITH
190
+ 1.13.6
@@ -0,0 +1,22 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "aruba"
7
+ gem "coffee-rails"
8
+ gem "cucumber", "1.3.19"
9
+ gem "jquery-rails"
10
+ gem "rake"
11
+ gem "rspec-rails", "~> 3.5.0.beta4"
12
+ gem "uglifier"
13
+ gem "test-unit"
14
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
15
+ gem "jdbc-sqlite3", :platforms => :jruby
16
+ gem "therubyrhino", :platforms => :jruby
17
+ gem "jruby-openssl", :platforms => :jruby
18
+ gem "sqlite3", :platforms => :ruby
19
+ gem "activerecord", "~> 5.0.0"
20
+ gem "railties", "~> 5.0.0"
21
+
22
+ gemspec :path => "../", :name => "factory_bot_rails"
@@ -0,0 +1,153 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_bot_rails (1.0.0)
5
+ factory_bot (~> 1.0.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (5.0.0.1)
12
+ actionview (= 5.0.0.1)
13
+ activesupport (= 5.0.0.1)
14
+ rack (~> 2.0)
15
+ rack-test (~> 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
+ actionview (5.0.0.1)
19
+ activesupport (= 5.0.0.1)
20
+ builder (~> 3.1)
21
+ erubis (~> 2.7.0)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ activemodel (5.0.0.1)
25
+ activesupport (= 5.0.0.1)
26
+ activerecord (5.0.0.1)
27
+ activemodel (= 5.0.0.1)
28
+ activesupport (= 5.0.0.1)
29
+ arel (~> 7.0)
30
+ activesupport (5.0.0.1)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (~> 0.7)
33
+ minitest (~> 5.1)
34
+ tzinfo (~> 1.1)
35
+ appraisal (2.1.0)
36
+ bundler
37
+ rake
38
+ thor (>= 0.14.0)
39
+ arel (7.1.4)
40
+ aruba (0.14.2)
41
+ childprocess (~> 0.5.6)
42
+ contracts (~> 0.9)
43
+ cucumber (>= 1.3.19)
44
+ ffi (~> 1.9.10)
45
+ rspec-expectations (>= 2.99)
46
+ thor (~> 0.19)
47
+ builder (3.2.2)
48
+ childprocess (0.5.9)
49
+ ffi (~> 1.0, >= 1.0.11)
50
+ coffee-rails (4.2.1)
51
+ coffee-script (>= 2.2.0)
52
+ railties (>= 4.0.0, < 5.2.x)
53
+ coffee-script (2.4.1)
54
+ coffee-script-source
55
+ execjs
56
+ coffee-script-source (1.11.1)
57
+ concurrent-ruby (1.0.2)
58
+ contracts (0.14.0)
59
+ cucumber (1.3.19)
60
+ builder (>= 2.1.2)
61
+ diff-lcs (>= 1.1.3)
62
+ gherkin (~> 2.12)
63
+ multi_json (>= 1.7.5, < 2.0)
64
+ multi_test (>= 0.1.2)
65
+ diff-lcs (1.2.5)
66
+ erubis (2.7.0)
67
+ execjs (2.7.0)
68
+ factory_bot (1.0.0)
69
+ activesupport (>= 3.0.0)
70
+ ffi (1.9.14)
71
+ gherkin (2.12.2)
72
+ multi_json (~> 1.3)
73
+ i18n (0.7.0)
74
+ jquery-rails (4.1.1)
75
+ rails-dom-testing (>= 1, < 3)
76
+ railties (>= 4.2.0)
77
+ thor (>= 0.14, < 2.0)
78
+ loofah (2.0.3)
79
+ nokogiri (>= 1.5.9)
80
+ method_source (0.8.2)
81
+ mini_portile2 (2.1.0)
82
+ minitest (5.10.1)
83
+ multi_json (1.12.1)
84
+ multi_test (0.1.2)
85
+ nokogiri (1.6.8.1)
86
+ mini_portile2 (~> 2.1.0)
87
+ power_assert (0.4.1)
88
+ rack (2.0.1)
89
+ rack-test (0.6.3)
90
+ rack (>= 1.0)
91
+ rails-dom-testing (2.0.1)
92
+ activesupport (>= 4.2.0, < 6.0)
93
+ nokogiri (~> 1.6.0)
94
+ rails-html-sanitizer (1.0.3)
95
+ loofah (~> 2.0)
96
+ railties (5.0.0.1)
97
+ actionpack (= 5.0.0.1)
98
+ activesupport (= 5.0.0.1)
99
+ method_source
100
+ rake (>= 0.8.7)
101
+ thor (>= 0.18.1, < 2.0)
102
+ rake (11.3.0)
103
+ rspec-core (3.5.4)
104
+ rspec-support (~> 3.5.0)
105
+ rspec-expectations (3.5.0)
106
+ diff-lcs (>= 1.2.0, < 2.0)
107
+ rspec-support (~> 3.5.0)
108
+ rspec-mocks (3.5.0)
109
+ diff-lcs (>= 1.2.0, < 2.0)
110
+ rspec-support (~> 3.5.0)
111
+ rspec-rails (3.5.2)
112
+ actionpack (>= 3.0)
113
+ activesupport (>= 3.0)
114
+ railties (>= 3.0)
115
+ rspec-core (~> 3.5.0)
116
+ rspec-expectations (~> 3.5.0)
117
+ rspec-mocks (~> 3.5.0)
118
+ rspec-support (~> 3.5.0)
119
+ rspec-support (3.5.0)
120
+ sqlite3 (1.3.12)
121
+ test-unit (3.2.3)
122
+ power_assert
123
+ thor (0.19.4)
124
+ thread_safe (0.3.5)
125
+ tzinfo (1.2.2)
126
+ thread_safe (~> 0.1)
127
+ uglifier (3.0.4)
128
+ execjs (>= 0.3.0, < 3)
129
+
130
+ PLATFORMS
131
+ ruby
132
+
133
+ DEPENDENCIES
134
+ activerecord (~> 5.0.0)
135
+ activerecord-jdbcsqlite3-adapter
136
+ appraisal
137
+ aruba
138
+ coffee-rails
139
+ cucumber (= 1.3.19)
140
+ factory_bot_rails!
141
+ jdbc-sqlite3
142
+ jquery-rails
143
+ jruby-openssl
144
+ railties (~> 5.0.0)
145
+ rake
146
+ rspec-rails (~> 3.5.0.beta4)
147
+ sqlite3
148
+ test-unit
149
+ therubyrhino
150
+ uglifier
151
+
152
+ BUNDLED WITH
153
+ 1.13.6