factory_girl_rails 4.7.0 → 4.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +3 -3
  3. data/Gemfile.lock +5 -5
  4. data/NEWS +9 -0
  5. data/README.md +9 -4
  6. data/bin/stubs/a2h +16 -0
  7. data/bin/stubs/appraisal +17 -0
  8. data/bin/stubs/aruba +16 -0
  9. data/bin/stubs/autospec +17 -0
  10. data/bin/stubs/bcat +16 -0
  11. data/bin/stubs/btee +16 -0
  12. data/bin/stubs/bundler +17 -0
  13. data/bin/stubs/cdiff +16 -0
  14. data/bin/stubs/cucumber +17 -0
  15. data/bin/stubs/decolor +16 -0
  16. data/bin/stubs/erubis +17 -0
  17. data/bin/stubs/htmldiff +17 -0
  18. data/bin/stubs/ldiff +17 -0
  19. data/bin/stubs/nokogiri +16 -0
  20. data/bin/stubs/rackup +17 -0
  21. data/bin/stubs/rails +17 -0
  22. data/bin/stubs/rake +17 -0
  23. data/bin/stubs/rake2thor +16 -0
  24. data/bin/stubs/rdiscount +16 -0
  25. data/bin/stubs/rdoc +16 -0
  26. data/bin/stubs/ri +16 -0
  27. data/bin/stubs/rspec +17 -0
  28. data/bin/stubs/setup +16 -0
  29. data/bin/stubs/sprockets +16 -0
  30. data/bin/stubs/thor +17 -0
  31. data/bin/stubs/tilt +16 -0
  32. data/factory_girl_rails.gemspec +6 -5
  33. data/gemfiles/rails3.2.gemfile.lock +177 -0
  34. data/gemfiles/rails4.1.gemfile.lock +175 -0
  35. data/gemfiles/rails4.2.gemfile.lock +192 -0
  36. data/gemfiles/rails5.0.gemfile +3 -3
  37. data/gemfiles/rails5.0.gemfile.lock +155 -0
  38. data/pkg/factory_girl_rails-4.5.0.gem +0 -0
  39. data/tmp/aruba/testapp/Gemfile +50 -0
  40. data/tmp/aruba/testapp/Gemfile.lock +188 -0
  41. data/tmp/aruba/testapp/README.md +24 -0
  42. data/tmp/aruba/testapp/Rakefile +6 -0
  43. data/tmp/aruba/testapp/app/assets/config/manifest.js +3 -0
  44. data/tmp/aruba/testapp/app/assets/javascripts/application.js +16 -0
  45. data/tmp/aruba/testapp/app/assets/javascripts/cable.js +13 -0
  46. data/tmp/aruba/testapp/app/assets/stylesheets/application.css +15 -0
  47. data/tmp/aruba/testapp/app/channels/application_cable/channel.rb +4 -0
  48. data/tmp/aruba/testapp/app/channels/application_cable/connection.rb +4 -0
  49. data/tmp/aruba/testapp/app/controllers/application_controller.rb +3 -0
  50. data/tmp/aruba/testapp/app/helpers/application_helper.rb +2 -0
  51. data/tmp/aruba/testapp/app/jobs/application_job.rb +2 -0
  52. data/tmp/aruba/testapp/app/mailers/application_mailer.rb +4 -0
  53. data/tmp/aruba/testapp/app/models/application_record.rb +3 -0
  54. data/tmp/aruba/testapp/app/models/user.rb +2 -0
  55. data/tmp/aruba/testapp/app/views/layouts/application.html.erb +14 -0
  56. data/tmp/aruba/testapp/app/views/layouts/mailer.html.erb +13 -0
  57. data/tmp/aruba/testapp/app/views/layouts/mailer.text.erb +1 -0
  58. data/tmp/aruba/testapp/bin/bundle +3 -0
  59. data/tmp/aruba/testapp/bin/rails +9 -0
  60. data/tmp/aruba/testapp/bin/rake +9 -0
  61. data/tmp/aruba/testapp/bin/setup +34 -0
  62. data/tmp/aruba/testapp/bin/spring +16 -0
  63. data/tmp/aruba/testapp/bin/update +29 -0
  64. data/tmp/aruba/testapp/config.ru +5 -0
  65. data/tmp/aruba/testapp/config/application.rb +16 -0
  66. data/tmp/aruba/testapp/config/boot.rb +3 -0
  67. data/tmp/aruba/testapp/config/cable.yml +9 -0
  68. data/tmp/aruba/testapp/config/database.yml +25 -0
  69. data/tmp/aruba/testapp/config/environment.rb +5 -0
  70. data/tmp/aruba/testapp/config/environments/development.rb +54 -0
  71. data/tmp/aruba/testapp/config/environments/production.rb +86 -0
  72. data/tmp/aruba/testapp/config/environments/test.rb +42 -0
  73. data/tmp/aruba/testapp/config/initializers/application_controller_renderer.rb +6 -0
  74. data/tmp/aruba/testapp/config/initializers/assets.rb +11 -0
  75. data/tmp/aruba/testapp/config/initializers/backtrace_silencers.rb +7 -0
  76. data/tmp/aruba/testapp/config/initializers/cookies_serializer.rb +5 -0
  77. data/tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  78. data/tmp/aruba/testapp/config/initializers/inflections.rb +16 -0
  79. data/tmp/aruba/testapp/config/initializers/mime_types.rb +4 -0
  80. data/tmp/aruba/testapp/config/initializers/new_framework_defaults.rb +24 -0
  81. data/tmp/aruba/testapp/config/initializers/session_store.rb +3 -0
  82. data/tmp/aruba/testapp/config/initializers/wrap_parameters.rb +14 -0
  83. data/tmp/aruba/testapp/config/locales/en.yml +23 -0
  84. data/tmp/aruba/testapp/config/puma.rb +47 -0
  85. data/tmp/aruba/testapp/config/routes.rb +3 -0
  86. data/tmp/aruba/testapp/config/secrets.yml +22 -0
  87. data/tmp/aruba/testapp/config/spring.rb +6 -0
  88. data/tmp/aruba/testapp/db/development.sqlite3 +0 -0
  89. data/tmp/aruba/testapp/db/migrate/1_create_users.rb +7 -0
  90. data/tmp/aruba/testapp/db/schema.rb +19 -0
  91. data/tmp/aruba/testapp/db/seeds.rb +7 -0
  92. data/tmp/aruba/testapp/db/test.sqlite3 +0 -0
  93. data/tmp/aruba/testapp/lib/some_railtie/factories.rb +5 -0
  94. data/tmp/aruba/testapp/lib/some_railtie/railties.rb +8 -0
  95. data/tmp/aruba/testapp/log/development.log +16 -0
  96. data/tmp/aruba/testapp/log/test.log +21 -0
  97. data/tmp/aruba/testapp/public/404.html +67 -0
  98. data/tmp/aruba/testapp/public/422.html +67 -0
  99. data/tmp/aruba/testapp/public/500.html +66 -0
  100. data/tmp/aruba/testapp/public/apple-touch-icon-precomposed.png +0 -0
  101. data/tmp/aruba/testapp/public/apple-touch-icon.png +0 -0
  102. data/tmp/aruba/testapp/public/favicon.ico +0 -0
  103. data/tmp/aruba/testapp/public/robots.txt +5 -0
  104. data/tmp/aruba/testapp/test/test_helper.rb +10 -0
  105. data/tmp/aruba/testapp/test/unit/user_test.rb +8 -0
  106. metadata +105 -9
  107. data/.gitignore +0 -9
  108. data/.travis.yml +0 -30
@@ -0,0 +1,192 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.6)
12
+ actionpack (= 4.2.6)
13
+ actionview (= 4.2.6)
14
+ activejob (= 4.2.6)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.6)
18
+ actionview (= 4.2.6)
19
+ activesupport (= 4.2.6)
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.6)
25
+ activesupport (= 4.2.6)
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.6)
31
+ activesupport (= 4.2.6)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.6)
34
+ activesupport (= 4.2.6)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.6)
37
+ activemodel (= 4.2.6)
38
+ activesupport (= 4.2.6)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.6)
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.1)
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.1.1)
62
+ coffee-script (>= 2.2.0)
63
+ railties (>= 4.0.0, < 5.1.x)
64
+ coffee-script (2.4.1)
65
+ coffee-script-source
66
+ execjs
67
+ coffee-script-source (1.10.0)
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_girl (4.8.0)
80
+ activesupport (>= 3.0.0)
81
+ ffi (1.9.10)
82
+ gherkin (2.12.2)
83
+ multi_json (~> 1.3)
84
+ globalid (0.3.6)
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.9.0)
101
+ multi_json (1.12.1)
102
+ multi_test (0.1.2)
103
+ nokogiri (1.6.8)
104
+ mini_portile2 (~> 2.1.0)
105
+ pkg-config (~> 1.1.7)
106
+ pkg-config (1.1.7)
107
+ power_assert (0.2.7)
108
+ rack (1.6.4)
109
+ rack-test (0.6.3)
110
+ rack (>= 1.0)
111
+ rails (4.2.6)
112
+ actionmailer (= 4.2.6)
113
+ actionpack (= 4.2.6)
114
+ actionview (= 4.2.6)
115
+ activejob (= 4.2.6)
116
+ activemodel (= 4.2.6)
117
+ activerecord (= 4.2.6)
118
+ activesupport (= 4.2.6)
119
+ bundler (>= 1.3.0, < 2.0)
120
+ railties (= 4.2.6)
121
+ sprockets-rails
122
+ rails-deprecated_sanitizer (1.0.3)
123
+ activesupport (>= 4.2.0.alpha)
124
+ rails-dom-testing (1.0.7)
125
+ activesupport (>= 4.2.0.beta, < 5.0)
126
+ nokogiri (~> 1.6.0)
127
+ rails-deprecated_sanitizer (>= 1.0.1)
128
+ rails-html-sanitizer (1.0.3)
129
+ loofah (~> 2.0)
130
+ railties (4.2.6)
131
+ actionpack (= 4.2.6)
132
+ activesupport (= 4.2.6)
133
+ rake (>= 0.8.7)
134
+ thor (>= 0.18.1, < 2.0)
135
+ rake (11.2.2)
136
+ rspec-core (3.4.4)
137
+ rspec-support (~> 3.4.0)
138
+ rspec-expectations (3.4.0)
139
+ diff-lcs (>= 1.2.0, < 2.0)
140
+ rspec-support (~> 3.4.0)
141
+ rspec-mocks (3.4.1)
142
+ diff-lcs (>= 1.2.0, < 2.0)
143
+ rspec-support (~> 3.4.0)
144
+ rspec-rails (3.4.2)
145
+ actionpack (>= 3.0, < 4.3)
146
+ activesupport (>= 3.0, < 4.3)
147
+ railties (>= 3.0, < 4.3)
148
+ rspec-core (~> 3.4.0)
149
+ rspec-expectations (~> 3.4.0)
150
+ rspec-mocks (~> 3.4.0)
151
+ rspec-support (~> 3.4.0)
152
+ rspec-support (3.4.1)
153
+ sprockets (3.6.2)
154
+ concurrent-ruby (~> 1.0)
155
+ rack (> 1, < 3)
156
+ sprockets-rails (3.0.4)
157
+ actionpack (>= 4.0)
158
+ activesupport (>= 4.0)
159
+ sprockets (>= 3.0.0)
160
+ sqlite3 (1.3.11)
161
+ test-unit (3.1.8)
162
+ power_assert
163
+ thor (0.19.1)
164
+ thread_safe (0.3.5)
165
+ tzinfo (1.2.2)
166
+ thread_safe (~> 0.1)
167
+ uglifier (3.0.0)
168
+ execjs (>= 0.3.0, < 3)
169
+
170
+ PLATFORMS
171
+ ruby
172
+
173
+ DEPENDENCIES
174
+ activerecord-jdbcsqlite3-adapter
175
+ appraisal
176
+ aruba
177
+ coffee-rails
178
+ cucumber (= 1.3.19)
179
+ factory_girl_rails!
180
+ jdbc-sqlite3
181
+ jquery-rails
182
+ jruby-openssl
183
+ rails (~> 4.2.0)
184
+ rake
185
+ rspec-rails
186
+ sqlite3
187
+ test-unit
188
+ therubyrhino
189
+ uglifier
190
+
191
+ BUNDLED WITH
192
+ 1.13.6
@@ -8,7 +8,7 @@ gem "coffee-rails"
8
8
  gem "cucumber", "1.3.19"
9
9
  gem "jquery-rails"
10
10
  gem "rake"
11
- gem "rspec-rails", "~> 3.5.0.beta3"
11
+ gem "rspec-rails", "~> 3.5.0.beta4"
12
12
  gem "uglifier"
13
13
  gem "test-unit"
14
14
  gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby
@@ -16,7 +16,7 @@ gem "jdbc-sqlite3", :platforms => :jruby
16
16
  gem "therubyrhino", :platforms => :jruby
17
17
  gem "jruby-openssl", :platforms => :jruby
18
18
  gem "sqlite3", :platforms => :ruby
19
- gem "activerecord", "~> 5.0.0.beta3"
20
- gem "railties", "~> 5.0.0.beta3"
19
+ gem "activerecord", "~> 5.0.0"
20
+ gem "railties", "~> 5.0.0"
21
21
 
22
22
  gemspec :path => "../"
@@ -0,0 +1,155 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (5.0.0)
12
+ actionview (= 5.0.0)
13
+ activesupport (= 5.0.0)
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)
19
+ activesupport (= 5.0.0)
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)
25
+ activesupport (= 5.0.0)
26
+ activerecord (5.0.0)
27
+ activemodel (= 5.0.0)
28
+ activesupport (= 5.0.0)
29
+ arel (~> 7.0)
30
+ activesupport (5.0.0)
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.0.0)
40
+ aruba (0.14.1)
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.10.0)
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_girl (4.8.0)
69
+ activesupport (>= 3.0.0)
70
+ ffi (1.9.10)
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.9.0)
83
+ multi_json (1.12.1)
84
+ multi_test (0.1.2)
85
+ nokogiri (1.6.8)
86
+ mini_portile2 (~> 2.1.0)
87
+ pkg-config (~> 1.1.7)
88
+ pkg-config (1.1.7)
89
+ power_assert (0.3.0)
90
+ rack (2.0.1)
91
+ rack-test (0.6.3)
92
+ rack (>= 1.0)
93
+ rails-dom-testing (2.0.1)
94
+ activesupport (>= 4.2.0, < 6.0)
95
+ nokogiri (~> 1.6.0)
96
+ rails-html-sanitizer (1.0.3)
97
+ loofah (~> 2.0)
98
+ railties (5.0.0)
99
+ actionpack (= 5.0.0)
100
+ activesupport (= 5.0.0)
101
+ method_source
102
+ rake (>= 0.8.7)
103
+ thor (>= 0.18.1, < 2.0)
104
+ rake (11.2.2)
105
+ rspec-core (3.5.0.beta4)
106
+ rspec-support (= 3.5.0.beta4)
107
+ rspec-expectations (3.5.0.beta4)
108
+ diff-lcs (>= 1.2.0, < 2.0)
109
+ rspec-support (= 3.5.0.beta4)
110
+ rspec-mocks (3.5.0.beta4)
111
+ diff-lcs (>= 1.2.0, < 2.0)
112
+ rspec-support (= 3.5.0.beta4)
113
+ rspec-rails (3.5.0.beta4)
114
+ actionpack (>= 3.0)
115
+ activesupport (>= 3.0)
116
+ railties (>= 3.0)
117
+ rspec-core (= 3.5.0.beta4)
118
+ rspec-expectations (= 3.5.0.beta4)
119
+ rspec-mocks (= 3.5.0.beta4)
120
+ rspec-support (= 3.5.0.beta4)
121
+ rspec-support (3.5.0.beta4)
122
+ sqlite3 (1.3.11)
123
+ test-unit (3.2.0)
124
+ power_assert
125
+ thor (0.19.1)
126
+ thread_safe (0.3.5)
127
+ tzinfo (1.2.2)
128
+ thread_safe (~> 0.1)
129
+ uglifier (3.0.0)
130
+ execjs (>= 0.3.0, < 3)
131
+
132
+ PLATFORMS
133
+ ruby
134
+
135
+ DEPENDENCIES
136
+ activerecord (~> 5.0.0)
137
+ activerecord-jdbcsqlite3-adapter
138
+ appraisal
139
+ aruba
140
+ coffee-rails
141
+ cucumber (= 1.3.19)
142
+ factory_girl_rails!
143
+ jdbc-sqlite3
144
+ jquery-rails
145
+ jruby-openssl
146
+ railties (~> 5.0.0)
147
+ rake
148
+ rspec-rails (~> 3.5.0.beta4)
149
+ sqlite3
150
+ test-unit
151
+ therubyrhino
152
+ uglifier
153
+
154
+ BUNDLED WITH
155
+ 1.13.6
@@ -0,0 +1,50 @@
1
+ source 'https://rubygems.org'
2
+
3
+
4
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
+ gem 'rails', '~> 5.0.0'
6
+ # Use sqlite3 as the database for Active Record
7
+ gem 'sqlite3'
8
+ # Use Puma as the app server
9
+ gem 'puma', '~> 3.0'
10
+ # Use SCSS for stylesheets
11
+ gem 'sass-rails', '~> 5.0'
12
+ # Use Uglifier as compressor for JavaScript assets
13
+ gem 'uglifier', '>= 1.3.0'
14
+ # Use CoffeeScript for .coffee assets and views
15
+ gem 'coffee-rails', '~> 4.2'
16
+ # See https://github.com/rails/execjs#readme for more supported runtimes
17
+ # gem 'therubyracer', platforms: :ruby
18
+
19
+ # Use jquery as the JavaScript library
20
+ gem 'jquery-rails'
21
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22
+ gem 'turbolinks', '~> 5'
23
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24
+ gem 'jbuilder', '~> 2.5'
25
+ # Use Redis adapter to run Action Cable in production
26
+ # gem 'redis', '~> 3.0'
27
+ # Use ActiveModel has_secure_password
28
+ # gem 'bcrypt', '~> 3.1.7'
29
+
30
+ # Use Capistrano for deployment
31
+ # gem 'capistrano-rails', group: :development
32
+
33
+ group :development, :test do
34
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
35
+ gem 'byebug', platform: :mri
36
+ end
37
+
38
+ group :development do
39
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
40
+ gem 'web-console'
41
+ gem 'listen', '~> 3.0.5'
42
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
43
+ gem 'spring'
44
+ gem 'spring-watcher-listen', '~> 2.0.0'
45
+ end
46
+
47
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
48
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
49
+ gem "factory_girl_rails", :path => "/Users/joshuaclayton/dev/gems/factory_girl_rails"
50
+ gem "test-unit"
@@ -0,0 +1,188 @@
1
+ PATH
2
+ remote: /Users/joshuaclayton/dev/gems/factory_girl_rails
3
+ specs:
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
+ railties (>= 3.0.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.0.1)
12
+ actionpack (= 5.0.0.1)
13
+ nio4r (~> 1.2)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.0.1)
16
+ actionpack (= 5.0.0.1)
17
+ actionview (= 5.0.0.1)
18
+ activejob (= 5.0.0.1)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.0.1)
22
+ actionview (= 5.0.0.1)
23
+ activesupport (= 5.0.0.1)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.0.1)
29
+ activesupport (= 5.0.0.1)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
+ activejob (5.0.0.1)
35
+ activesupport (= 5.0.0.1)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.0.1)
38
+ activesupport (= 5.0.0.1)
39
+ activerecord (5.0.0.1)
40
+ activemodel (= 5.0.0.1)
41
+ activesupport (= 5.0.0.1)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.0.1)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ arel (7.1.4)
49
+ builder (3.2.2)
50
+ byebug (9.0.6)
51
+ coffee-rails (4.2.1)
52
+ coffee-script (>= 2.2.0)
53
+ railties (>= 4.0.0, < 5.2.x)
54
+ coffee-script (2.4.1)
55
+ coffee-script-source
56
+ execjs
57
+ coffee-script-source (1.11.1)
58
+ concurrent-ruby (1.0.2)
59
+ debug_inspector (0.0.2)
60
+ erubis (2.7.0)
61
+ execjs (2.7.0)
62
+ factory_girl (4.8.0)
63
+ activesupport (>= 3.0.0)
64
+ ffi (1.9.14)
65
+ globalid (0.3.7)
66
+ activesupport (>= 4.1.0)
67
+ i18n (0.7.0)
68
+ jbuilder (2.6.1)
69
+ activesupport (>= 3.0.0, < 5.1)
70
+ multi_json (~> 1.2)
71
+ jquery-rails (4.2.1)
72
+ rails-dom-testing (>= 1, < 3)
73
+ railties (>= 4.2.0)
74
+ thor (>= 0.14, < 2.0)
75
+ listen (3.0.8)
76
+ rb-fsevent (~> 0.9, >= 0.9.4)
77
+ rb-inotify (~> 0.9, >= 0.9.7)
78
+ loofah (2.0.3)
79
+ nokogiri (>= 1.5.9)
80
+ mail (2.6.4)
81
+ mime-types (>= 1.16, < 4)
82
+ method_source (0.8.2)
83
+ mime-types (3.1)
84
+ mime-types-data (~> 3.2015)
85
+ mime-types-data (3.2016.0521)
86
+ mini_portile2 (2.1.0)
87
+ minitest (5.10.1)
88
+ multi_json (1.12.1)
89
+ nio4r (1.2.1)
90
+ nokogiri (1.6.8.1)
91
+ mini_portile2 (~> 2.1.0)
92
+ power_assert (0.3.0)
93
+ puma (3.6.2)
94
+ rack (2.0.1)
95
+ rack-test (0.6.3)
96
+ rack (>= 1.0)
97
+ rails (5.0.0.1)
98
+ actioncable (= 5.0.0.1)
99
+ actionmailer (= 5.0.0.1)
100
+ actionpack (= 5.0.0.1)
101
+ actionview (= 5.0.0.1)
102
+ activejob (= 5.0.0.1)
103
+ activemodel (= 5.0.0.1)
104
+ activerecord (= 5.0.0.1)
105
+ activesupport (= 5.0.0.1)
106
+ bundler (>= 1.3.0, < 2.0)
107
+ railties (= 5.0.0.1)
108
+ sprockets-rails (>= 2.0.0)
109
+ rails-dom-testing (2.0.1)
110
+ activesupport (>= 4.2.0, < 6.0)
111
+ nokogiri (~> 1.6.0)
112
+ rails-html-sanitizer (1.0.3)
113
+ loofah (~> 2.0)
114
+ railties (5.0.0.1)
115
+ actionpack (= 5.0.0.1)
116
+ activesupport (= 5.0.0.1)
117
+ method_source
118
+ rake (>= 0.8.7)
119
+ thor (>= 0.18.1, < 2.0)
120
+ rake (12.0.0)
121
+ rb-fsevent (0.9.8)
122
+ rb-inotify (0.9.7)
123
+ ffi (>= 0.5.0)
124
+ sass (3.4.22)
125
+ sass-rails (5.0.6)
126
+ railties (>= 4.0.0, < 6)
127
+ sass (~> 3.1)
128
+ sprockets (>= 2.8, < 4.0)
129
+ sprockets-rails (>= 2.0, < 4.0)
130
+ tilt (>= 1.1, < 3)
131
+ spring (2.0.0)
132
+ activesupport (>= 4.2)
133
+ spring-watcher-listen (2.0.1)
134
+ listen (>= 2.7, < 4.0)
135
+ spring (>= 1.2, < 3.0)
136
+ sprockets (3.7.0)
137
+ concurrent-ruby (~> 1.0)
138
+ rack (> 1, < 3)
139
+ sprockets-rails (3.2.0)
140
+ actionpack (>= 4.0)
141
+ activesupport (>= 4.0)
142
+ sprockets (>= 3.0.0)
143
+ sqlite3 (1.3.12)
144
+ test-unit (3.2.0)
145
+ power_assert
146
+ thor (0.19.4)
147
+ thread_safe (0.3.5)
148
+ tilt (2.0.5)
149
+ turbolinks (5.0.1)
150
+ turbolinks-source (~> 5)
151
+ turbolinks-source (5.0.0)
152
+ tzinfo (1.2.2)
153
+ thread_safe (~> 0.1)
154
+ uglifier (3.0.4)
155
+ execjs (>= 0.3.0, < 3)
156
+ web-console (3.4.0)
157
+ actionview (>= 5.0)
158
+ activemodel (>= 5.0)
159
+ debug_inspector
160
+ railties (>= 5.0)
161
+ websocket-driver (0.6.4)
162
+ websocket-extensions (>= 0.1.0)
163
+ websocket-extensions (0.1.2)
164
+
165
+ PLATFORMS
166
+ ruby
167
+
168
+ DEPENDENCIES
169
+ byebug
170
+ coffee-rails (~> 4.2)
171
+ factory_girl_rails!
172
+ jbuilder (~> 2.5)
173
+ jquery-rails
174
+ listen (~> 3.0.5)
175
+ puma (~> 3.0)
176
+ rails (~> 5.0.0)
177
+ sass-rails (~> 5.0)
178
+ spring
179
+ spring-watcher-listen (~> 2.0.0)
180
+ sqlite3
181
+ test-unit
182
+ turbolinks (~> 5)
183
+ tzinfo-data
184
+ uglifier (>= 1.3.0)
185
+ web-console
186
+
187
+ BUNDLED WITH
188
+ 1.13.6