ecom 0.1.1 → 0.2.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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -0
  3. data/app/controllers/ecom/cart_controller.rb +28 -38
  4. data/app/controllers/ecom/products_controller.rb +1 -1
  5. data/app/models/ecom/category.rb +2 -0
  6. data/app/models/ecom/line_item.rb +3 -6
  7. data/app/models/ecom/product.rb +4 -3
  8. data/app/models/ecom/purchase.rb +12 -3
  9. data/app/models/ecom/user.rb +1 -1
  10. data/app/uploaders/ecom/image_uploader.rb +2 -2
  11. data/app/views/ecom/cart/show.html.erb +8 -9
  12. data/app/views/ecom/products/_form.html.erb +4 -4
  13. data/app/views/ecom/products/index.html.erb +27 -9
  14. data/app/views/ecom/products/show.html.erb +7 -10
  15. data/config/initializers/devise.rb +2 -2
  16. data/config/routes.rb +6 -11
  17. data/lib/ecom/engine.rb +1 -1
  18. data/lib/ecom/version.rb +1 -1
  19. data/lib/generators/ecom/install_generator.rb +2 -0
  20. data/test/controllers/ecom/cart_controller_test.rb +13 -0
  21. data/test/controllers/ecom/products_controller_test.rb +52 -0
  22. data/test/dummy/Rakefile +6 -0
  23. data/test/dummy/app/assets/config/manifest.js +5 -0
  24. data/test/dummy/app/assets/javascripts/application.js +13 -0
  25. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  26. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  28. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  29. data/test/dummy/app/controllers/application_controller.rb +3 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/jobs/application_job.rb +2 -0
  32. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  33. data/test/dummy/app/models/application_record.rb +3 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  36. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  37. data/test/dummy/bin/bundle +3 -0
  38. data/test/dummy/bin/rails +4 -0
  39. data/test/dummy/bin/rake +4 -0
  40. data/test/dummy/bin/setup +34 -0
  41. data/test/dummy/bin/update +29 -0
  42. data/test/dummy/config.ru +5 -0
  43. data/test/dummy/config/application.rb +15 -0
  44. data/test/dummy/config/boot.rb +5 -0
  45. data/test/dummy/config/cable.yml +9 -0
  46. data/test/dummy/config/database.yml +25 -0
  47. data/test/dummy/config/environment.rb +5 -0
  48. data/test/dummy/config/environments/development.rb +54 -0
  49. data/test/dummy/config/environments/production.rb +86 -0
  50. data/test/dummy/config/environments/test.rb +42 -0
  51. data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
  52. data/test/dummy/config/initializers/assets.rb +11 -0
  53. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  54. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  55. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  56. data/test/dummy/config/initializers/inflections.rb +16 -0
  57. data/test/dummy/config/initializers/mime_types.rb +4 -0
  58. data/test/dummy/config/initializers/new_framework_defaults.rb +24 -0
  59. data/test/dummy/config/initializers/session_store.rb +3 -0
  60. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  61. data/test/dummy/config/locales/en.yml +23 -0
  62. data/test/dummy/config/mongoid.yml +143 -0
  63. data/test/dummy/config/puma.rb +47 -0
  64. data/test/dummy/config/routes.rb +3 -0
  65. data/test/dummy/config/secrets.yml +22 -0
  66. data/test/dummy/config/spring.rb +6 -0
  67. data/test/dummy/db/development.sqlite3 +0 -0
  68. data/test/dummy/log/development.log +8 -0
  69. data/test/dummy/public/404.html +67 -0
  70. data/test/dummy/public/422.html +67 -0
  71. data/test/dummy/public/500.html +66 -0
  72. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  73. data/test/dummy/public/apple-touch-icon.png +0 -0
  74. data/test/dummy/public/favicon.ico +0 -0
  75. data/test/ecom_test.rb +7 -0
  76. data/test/fixtures/ecom/categories.yml +7 -0
  77. data/test/fixtures/ecom/line_items.yml +9 -0
  78. data/test/fixtures/ecom/products.yml +13 -0
  79. data/test/fixtures/ecom/purchases.yml +11 -0
  80. data/test/fixtures/ecom/users.yml +11 -0
  81. data/test/integration/navigation_test.rb +8 -0
  82. data/test/models/ecom/category_test.rb +9 -0
  83. data/test/models/ecom/line_item_test.rb +9 -0
  84. data/test/models/ecom/product_test.rb +9 -0
  85. data/test/models/ecom/purchase_test.rb +9 -0
  86. data/test/models/ecom/user_test.rb +9 -0
  87. data/test/test_helper.rb +20 -0
  88. metadata +156 -19
  89. data/app/assets/javascripts/ecom/categories.js +0 -2
  90. data/app/assets/stylesheets/ecom/categories.css +0 -4
  91. data/app/controllers/ecom/categories_controller.rb +0 -62
  92. data/app/helpers/ecom/categories_helper.rb +0 -4
  93. data/app/views/ecom/categories/_form.html.erb +0 -22
  94. data/app/views/ecom/categories/edit.html.erb +0 -6
  95. data/app/views/ecom/categories/index.html.erb +0 -27
  96. data/app/views/ecom/categories/new.html.erb +0 -5
  97. data/app/views/ecom/categories/show.html.erb +0 -9
  98. data/config/initializers/line_items.rb +0 -1
  99. data/config/initializers/product.rb +0 -1
  100. data/config/initializers/purchase.rb +0 -1
  101. data/config/locales/en.yml +0 -5
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Ecom::Test < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Ecom
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ title: MyString
5
+
6
+ two:
7
+ title: MyString
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ product_id: MyString
5
+ price: 1.5
6
+
7
+ two:
8
+ product_id: MyString
9
+ price: 1.5
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ description: MyString
6
+ base_price: 1.5
7
+ size: MyString
8
+
9
+ two:
10
+ name: MyString
11
+ description: MyString
12
+ base_price: 1.5
13
+ size: MyString
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ user_id: MyString
5
+ check_out_at: 2016-12-13 20:50:38
6
+ total_price: 1.5
7
+
8
+ two:
9
+ user_id: MyString
10
+ check_out_at: 2016-12-13 20:50:38
11
+ total_price: 1.5
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
8
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ecom
4
+ class CategoryTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ecom
4
+ class LineItemTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ecom
4
+ class ProductTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ecom
4
+ class PurchaseTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ecom
4
+ class UserTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,20 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
7
+ require "rails/test_help"
8
+
9
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
10
+ # to be shown.
11
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
+
13
+
14
+ # Load fixtures from the engine
15
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
16
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
17
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
18
+ ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + "/files"
19
+ ActiveSupport::TestCase.fixtures :all
20
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Falck
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-15 00:00:00.000000000 Z
11
+ date: 2016-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -58,7 +58,21 @@ dependencies:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
- description: Description of Ecom.
61
+ - !ruby/object:Gem::Dependency
62
+ name: carrierwave
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ description: Rails plugin to create Ecom app
62
76
  email:
63
77
  - adam.falck@gmail.com
64
78
  executables: []
@@ -71,20 +85,16 @@ files:
71
85
  - app/assets/config/ecom_manifest.js
72
86
  - app/assets/javascripts/ecom/application.js
73
87
  - app/assets/javascripts/ecom/cart.js
74
- - app/assets/javascripts/ecom/categories.js
75
88
  - app/assets/javascripts/ecom/products.js
76
89
  - app/assets/stylesheets/ecom/application.css
77
90
  - app/assets/stylesheets/ecom/cart.css
78
- - app/assets/stylesheets/ecom/categories.css
79
91
  - app/assets/stylesheets/ecom/products.css
80
92
  - app/assets/stylesheets/scaffold.css
81
93
  - app/controllers/ecom/application_controller.rb
82
94
  - app/controllers/ecom/cart_controller.rb
83
- - app/controllers/ecom/categories_controller.rb
84
95
  - app/controllers/ecom/products_controller.rb
85
96
  - app/helpers/ecom/application_helper.rb
86
97
  - app/helpers/ecom/cart_helper.rb
87
- - app/helpers/ecom/categories_helper.rb
88
98
  - app/helpers/ecom/products_helper.rb
89
99
  - app/jobs/ecom/application_job.rb
90
100
  - app/mailers/ecom/application_mailer.rb
@@ -96,11 +106,6 @@ files:
96
106
  - app/models/ecom/user.rb
97
107
  - app/uploaders/ecom/image_uploader.rb
98
108
  - app/views/ecom/cart/show.html.erb
99
- - app/views/ecom/categories/_form.html.erb
100
- - app/views/ecom/categories/edit.html.erb
101
- - app/views/ecom/categories/index.html.erb
102
- - app/views/ecom/categories/new.html.erb
103
- - app/views/ecom/categories/show.html.erb
104
109
  - app/views/ecom/products/_form.html.erb
105
110
  - app/views/ecom/products/edit.html.erb
106
111
  - app/views/ecom/products/index.html.erb
@@ -108,18 +113,82 @@ files:
108
113
  - app/views/ecom/products/show.html.erb
109
114
  - app/views/layouts/ecom/application.html.erb
110
115
  - config/initializers/devise.rb
111
- - config/initializers/line_items.rb
112
- - config/initializers/product.rb
113
- - config/initializers/purchase.rb
114
116
  - config/locales/devise.en.yml
115
- - config/locales/en.yml
116
117
  - config/routes.rb
117
118
  - lib/ecom.rb
118
119
  - lib/ecom/engine.rb
119
120
  - lib/ecom/version.rb
120
121
  - lib/generators/ecom/install_generator.rb
121
122
  - lib/tasks/ecom_tasks.rake
122
- homepage: https://adamonrails.tk
123
+ - test/controllers/ecom/cart_controller_test.rb
124
+ - test/controllers/ecom/products_controller_test.rb
125
+ - test/dummy/Rakefile
126
+ - test/dummy/app/assets/config/manifest.js
127
+ - test/dummy/app/assets/javascripts/application.js
128
+ - test/dummy/app/assets/javascripts/cable.js
129
+ - test/dummy/app/assets/stylesheets/application.css
130
+ - test/dummy/app/channels/application_cable/channel.rb
131
+ - test/dummy/app/channels/application_cable/connection.rb
132
+ - test/dummy/app/controllers/application_controller.rb
133
+ - test/dummy/app/helpers/application_helper.rb
134
+ - test/dummy/app/jobs/application_job.rb
135
+ - test/dummy/app/mailers/application_mailer.rb
136
+ - test/dummy/app/models/application_record.rb
137
+ - test/dummy/app/views/layouts/application.html.erb
138
+ - test/dummy/app/views/layouts/mailer.html.erb
139
+ - test/dummy/app/views/layouts/mailer.text.erb
140
+ - test/dummy/bin/bundle
141
+ - test/dummy/bin/rails
142
+ - test/dummy/bin/rake
143
+ - test/dummy/bin/setup
144
+ - test/dummy/bin/update
145
+ - test/dummy/config.ru
146
+ - test/dummy/config/application.rb
147
+ - test/dummy/config/boot.rb
148
+ - test/dummy/config/cable.yml
149
+ - test/dummy/config/database.yml
150
+ - test/dummy/config/environment.rb
151
+ - test/dummy/config/environments/development.rb
152
+ - test/dummy/config/environments/production.rb
153
+ - test/dummy/config/environments/test.rb
154
+ - test/dummy/config/initializers/application_controller_renderer.rb
155
+ - test/dummy/config/initializers/assets.rb
156
+ - test/dummy/config/initializers/backtrace_silencers.rb
157
+ - test/dummy/config/initializers/cookies_serializer.rb
158
+ - test/dummy/config/initializers/filter_parameter_logging.rb
159
+ - test/dummy/config/initializers/inflections.rb
160
+ - test/dummy/config/initializers/mime_types.rb
161
+ - test/dummy/config/initializers/new_framework_defaults.rb
162
+ - test/dummy/config/initializers/session_store.rb
163
+ - test/dummy/config/initializers/wrap_parameters.rb
164
+ - test/dummy/config/locales/en.yml
165
+ - test/dummy/config/mongoid.yml
166
+ - test/dummy/config/puma.rb
167
+ - test/dummy/config/routes.rb
168
+ - test/dummy/config/secrets.yml
169
+ - test/dummy/config/spring.rb
170
+ - test/dummy/db/development.sqlite3
171
+ - test/dummy/log/development.log
172
+ - test/dummy/public/404.html
173
+ - test/dummy/public/422.html
174
+ - test/dummy/public/500.html
175
+ - test/dummy/public/apple-touch-icon-precomposed.png
176
+ - test/dummy/public/apple-touch-icon.png
177
+ - test/dummy/public/favicon.ico
178
+ - test/ecom_test.rb
179
+ - test/fixtures/ecom/categories.yml
180
+ - test/fixtures/ecom/line_items.yml
181
+ - test/fixtures/ecom/products.yml
182
+ - test/fixtures/ecom/purchases.yml
183
+ - test/fixtures/ecom/users.yml
184
+ - test/integration/navigation_test.rb
185
+ - test/models/ecom/category_test.rb
186
+ - test/models/ecom/line_item_test.rb
187
+ - test/models/ecom/product_test.rb
188
+ - test/models/ecom/purchase_test.rb
189
+ - test/models/ecom/user_test.rb
190
+ - test/test_helper.rb
191
+ homepage: http://adamonrails.tk
123
192
  licenses:
124
193
  - MIT
125
194
  metadata: {}
@@ -142,5 +211,73 @@ rubyforge_project:
142
211
  rubygems_version: 2.5.1
143
212
  signing_key:
144
213
  specification_version: 4
145
- summary: Summary of Ecom.
146
- test_files: []
214
+ summary: A complete ecom app
215
+ test_files:
216
+ - test/controllers/ecom/cart_controller_test.rb
217
+ - test/controllers/ecom/products_controller_test.rb
218
+ - test/integration/navigation_test.rb
219
+ - test/fixtures/ecom/categories.yml
220
+ - test/fixtures/ecom/purchases.yml
221
+ - test/fixtures/ecom/line_items.yml
222
+ - test/fixtures/ecom/users.yml
223
+ - test/fixtures/ecom/products.yml
224
+ - test/models/ecom/category_test.rb
225
+ - test/models/ecom/line_item_test.rb
226
+ - test/models/ecom/product_test.rb
227
+ - test/models/ecom/purchase_test.rb
228
+ - test/models/ecom/user_test.rb
229
+ - test/ecom_test.rb
230
+ - test/test_helper.rb
231
+ - test/dummy/log/development.log
232
+ - test/dummy/db/development.sqlite3
233
+ - test/dummy/config.ru
234
+ - test/dummy/Rakefile
235
+ - test/dummy/bin/update
236
+ - test/dummy/bin/rails
237
+ - test/dummy/bin/bundle
238
+ - test/dummy/bin/rake
239
+ - test/dummy/bin/setup
240
+ - test/dummy/config/environment.rb
241
+ - test/dummy/config/application.rb
242
+ - test/dummy/config/initializers/backtrace_silencers.rb
243
+ - test/dummy/config/initializers/inflections.rb
244
+ - test/dummy/config/initializers/mime_types.rb
245
+ - test/dummy/config/initializers/cookies_serializer.rb
246
+ - test/dummy/config/initializers/application_controller_renderer.rb
247
+ - test/dummy/config/initializers/wrap_parameters.rb
248
+ - test/dummy/config/initializers/new_framework_defaults.rb
249
+ - test/dummy/config/initializers/session_store.rb
250
+ - test/dummy/config/initializers/filter_parameter_logging.rb
251
+ - test/dummy/config/initializers/assets.rb
252
+ - test/dummy/config/spring.rb
253
+ - test/dummy/config/cable.yml
254
+ - test/dummy/config/mongoid.yml
255
+ - test/dummy/config/locales/en.yml
256
+ - test/dummy/config/database.yml
257
+ - test/dummy/config/puma.rb
258
+ - test/dummy/config/environments/production.rb
259
+ - test/dummy/config/environments/development.rb
260
+ - test/dummy/config/environments/test.rb
261
+ - test/dummy/config/routes.rb
262
+ - test/dummy/config/secrets.yml
263
+ - test/dummy/config/boot.rb
264
+ - test/dummy/app/controllers/application_controller.rb
265
+ - test/dummy/app/views/layouts/mailer.text.erb
266
+ - test/dummy/app/views/layouts/application.html.erb
267
+ - test/dummy/app/views/layouts/mailer.html.erb
268
+ - test/dummy/app/models/application_record.rb
269
+ - test/dummy/app/helpers/application_helper.rb
270
+ - test/dummy/app/channels/application_cable/connection.rb
271
+ - test/dummy/app/channels/application_cable/channel.rb
272
+ - test/dummy/app/jobs/application_job.rb
273
+ - test/dummy/app/mailers/application_mailer.rb
274
+ - test/dummy/app/assets/config/manifest.js
275
+ - test/dummy/app/assets/stylesheets/application.css
276
+ - test/dummy/app/assets/javascripts/application.js
277
+ - test/dummy/app/assets/javascripts/cable.js
278
+ - test/dummy/public/apple-touch-icon-precomposed.png
279
+ - test/dummy/public/favicon.ico
280
+ - test/dummy/public/404.html
281
+ - test/dummy/public/apple-touch-icon.png
282
+ - test/dummy/public/422.html
283
+ - test/dummy/public/500.html