databound 0.0.3

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 (83) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +5 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +63 -0
  7. data/Rakefile +2 -0
  8. data/config.ru +7 -0
  9. data/databound.gemspec +31 -0
  10. data/lib/databound.rb +83 -0
  11. data/lib/databound/data.rb +51 -0
  12. data/lib/databound/manager.rb +60 -0
  13. data/lib/databound/rails/routes.rb +17 -0
  14. data/lib/databound/version.rb +3 -0
  15. data/spec/controllers/databound_spec.rb +138 -0
  16. data/spec/controllers/dsl_controller_spec.rb +177 -0
  17. data/spec/controllers/loose_dsl_controller_spec.rb +127 -0
  18. data/spec/controllers/no_model_controller_spec.rb +9 -0
  19. data/spec/controllers/permitted_columns_controller_spec.rb +104 -0
  20. data/spec/internal/app/controllers/application_controller.rb +5 -0
  21. data/spec/internal/app/controllers/dsl_controller.rb +17 -0
  22. data/spec/internal/app/controllers/loose_dsl_controller.rb +13 -0
  23. data/spec/internal/app/controllers/no_model_controller.rb +3 -0
  24. data/spec/internal/app/controllers/permitted_columns_controller.rb +13 -0
  25. data/spec/internal/app/controllers/users_controller.rb +9 -0
  26. data/spec/internal/app/models/user.rb +2 -0
  27. data/spec/internal/config/database.yml +3 -0
  28. data/spec/internal/config/routes.rb +7 -0
  29. data/spec/internal/db/combustion_test.sqlite +0 -0
  30. data/spec/internal/db/schema.rb +7 -0
  31. data/spec/internal/log/.gitignore +1 -0
  32. data/spec/internal/public/favicon.ico +0 -0
  33. data/spec/spec_helper.rb +36 -0
  34. data/spec/support/rails_test_app/.gitignore +16 -0
  35. data/spec/support/rails_test_app/Gemfile +40 -0
  36. data/spec/support/rails_test_app/Gemfile.lock +120 -0
  37. data/spec/support/rails_test_app/README.rdoc +28 -0
  38. data/spec/support/rails_test_app/Rakefile +6 -0
  39. data/spec/support/rails_test_app/app/assets/images/.keep +0 -0
  40. data/spec/support/rails_test_app/app/assets/javascripts/application.js +16 -0
  41. data/spec/support/rails_test_app/app/assets/stylesheets/application.css +15 -0
  42. data/spec/support/rails_test_app/app/controllers/application_controller.rb +5 -0
  43. data/spec/support/rails_test_app/app/controllers/concerns/.keep +0 -0
  44. data/spec/support/rails_test_app/app/helpers/application_helper.rb +2 -0
  45. data/spec/support/rails_test_app/app/mailers/.keep +0 -0
  46. data/spec/support/rails_test_app/app/models/.keep +0 -0
  47. data/spec/support/rails_test_app/app/models/concerns/.keep +0 -0
  48. data/spec/support/rails_test_app/app/views/layouts/application.html.erb +14 -0
  49. data/spec/support/rails_test_app/bin/bundle +3 -0
  50. data/spec/support/rails_test_app/bin/rails +8 -0
  51. data/spec/support/rails_test_app/bin/rake +8 -0
  52. data/spec/support/rails_test_app/bin/spring +18 -0
  53. data/spec/support/rails_test_app/config.ru +4 -0
  54. data/spec/support/rails_test_app/config/application.rb +30 -0
  55. data/spec/support/rails_test_app/config/boot.rb +4 -0
  56. data/spec/support/rails_test_app/config/database.yml +25 -0
  57. data/spec/support/rails_test_app/config/environment.rb +5 -0
  58. data/spec/support/rails_test_app/config/environments/development.rb +37 -0
  59. data/spec/support/rails_test_app/config/environments/production.rb +78 -0
  60. data/spec/support/rails_test_app/config/environments/test.rb +39 -0
  61. data/spec/support/rails_test_app/config/initializers/assets.rb +8 -0
  62. data/spec/support/rails_test_app/config/initializers/backtrace_silencers.rb +7 -0
  63. data/spec/support/rails_test_app/config/initializers/cookies_serializer.rb +3 -0
  64. data/spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb +4 -0
  65. data/spec/support/rails_test_app/config/initializers/inflections.rb +16 -0
  66. data/spec/support/rails_test_app/config/initializers/mime_types.rb +4 -0
  67. data/spec/support/rails_test_app/config/initializers/session_store.rb +3 -0
  68. data/spec/support/rails_test_app/config/initializers/wrap_parameters.rb +14 -0
  69. data/spec/support/rails_test_app/config/locales/en.yml +23 -0
  70. data/spec/support/rails_test_app/config/routes.rb +56 -0
  71. data/spec/support/rails_test_app/config/secrets.yml +22 -0
  72. data/spec/support/rails_test_app/db/seeds.rb +7 -0
  73. data/spec/support/rails_test_app/lib/assets/.keep +0 -0
  74. data/spec/support/rails_test_app/lib/tasks/.keep +0 -0
  75. data/spec/support/rails_test_app/log/.keep +0 -0
  76. data/spec/support/rails_test_app/public/404.html +67 -0
  77. data/spec/support/rails_test_app/public/422.html +67 -0
  78. data/spec/support/rails_test_app/public/500.html +66 -0
  79. data/spec/support/rails_test_app/public/favicon.ico +0 -0
  80. data/spec/support/rails_test_app/public/robots.txt +5 -0
  81. data/spec/support/rails_test_app/vendor/assets/javascripts/.keep +0 -0
  82. data/spec/support/rails_test_app/vendor/assets/stylesheets/.keep +0 -0
  83. metadata +320 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</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/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -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>
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
metadata ADDED
@@ -0,0 +1,320 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: databound
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Domas Bitvinskas
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: andand
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: combustion
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.5.2
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.5.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry-stack_explorer
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: bundler
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.6'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.6'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rake
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '10.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '10.0'
139
+ description: This is the Ruby on Rails backend part for the Databound javascript lib.
140
+ email:
141
+ - domas.bitvinskas@me.com
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".travis.yml"
148
+ - Gemfile
149
+ - LICENSE.txt
150
+ - README.md
151
+ - Rakefile
152
+ - config.ru
153
+ - databound.gemspec
154
+ - lib/databound.rb
155
+ - lib/databound/data.rb
156
+ - lib/databound/manager.rb
157
+ - lib/databound/rails/routes.rb
158
+ - lib/databound/version.rb
159
+ - spec/controllers/databound_spec.rb
160
+ - spec/controllers/dsl_controller_spec.rb
161
+ - spec/controllers/loose_dsl_controller_spec.rb
162
+ - spec/controllers/no_model_controller_spec.rb
163
+ - spec/controllers/permitted_columns_controller_spec.rb
164
+ - spec/internal/app/controllers/application_controller.rb
165
+ - spec/internal/app/controllers/dsl_controller.rb
166
+ - spec/internal/app/controllers/loose_dsl_controller.rb
167
+ - spec/internal/app/controllers/no_model_controller.rb
168
+ - spec/internal/app/controllers/permitted_columns_controller.rb
169
+ - spec/internal/app/controllers/users_controller.rb
170
+ - spec/internal/app/models/user.rb
171
+ - spec/internal/config/database.yml
172
+ - spec/internal/config/routes.rb
173
+ - spec/internal/db/combustion_test.sqlite
174
+ - spec/internal/db/schema.rb
175
+ - spec/internal/log/.gitignore
176
+ - spec/internal/public/favicon.ico
177
+ - spec/spec_helper.rb
178
+ - spec/support/rails_test_app/.gitignore
179
+ - spec/support/rails_test_app/Gemfile
180
+ - spec/support/rails_test_app/Gemfile.lock
181
+ - spec/support/rails_test_app/README.rdoc
182
+ - spec/support/rails_test_app/Rakefile
183
+ - spec/support/rails_test_app/app/assets/images/.keep
184
+ - spec/support/rails_test_app/app/assets/javascripts/application.js
185
+ - spec/support/rails_test_app/app/assets/stylesheets/application.css
186
+ - spec/support/rails_test_app/app/controllers/application_controller.rb
187
+ - spec/support/rails_test_app/app/controllers/concerns/.keep
188
+ - spec/support/rails_test_app/app/helpers/application_helper.rb
189
+ - spec/support/rails_test_app/app/mailers/.keep
190
+ - spec/support/rails_test_app/app/models/.keep
191
+ - spec/support/rails_test_app/app/models/concerns/.keep
192
+ - spec/support/rails_test_app/app/views/layouts/application.html.erb
193
+ - spec/support/rails_test_app/bin/bundle
194
+ - spec/support/rails_test_app/bin/rails
195
+ - spec/support/rails_test_app/bin/rake
196
+ - spec/support/rails_test_app/bin/spring
197
+ - spec/support/rails_test_app/config.ru
198
+ - spec/support/rails_test_app/config/application.rb
199
+ - spec/support/rails_test_app/config/boot.rb
200
+ - spec/support/rails_test_app/config/database.yml
201
+ - spec/support/rails_test_app/config/environment.rb
202
+ - spec/support/rails_test_app/config/environments/development.rb
203
+ - spec/support/rails_test_app/config/environments/production.rb
204
+ - spec/support/rails_test_app/config/environments/test.rb
205
+ - spec/support/rails_test_app/config/initializers/assets.rb
206
+ - spec/support/rails_test_app/config/initializers/backtrace_silencers.rb
207
+ - spec/support/rails_test_app/config/initializers/cookies_serializer.rb
208
+ - spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb
209
+ - spec/support/rails_test_app/config/initializers/inflections.rb
210
+ - spec/support/rails_test_app/config/initializers/mime_types.rb
211
+ - spec/support/rails_test_app/config/initializers/session_store.rb
212
+ - spec/support/rails_test_app/config/initializers/wrap_parameters.rb
213
+ - spec/support/rails_test_app/config/locales/en.yml
214
+ - spec/support/rails_test_app/config/routes.rb
215
+ - spec/support/rails_test_app/config/secrets.yml
216
+ - spec/support/rails_test_app/db/seeds.rb
217
+ - spec/support/rails_test_app/lib/assets/.keep
218
+ - spec/support/rails_test_app/lib/tasks/.keep
219
+ - spec/support/rails_test_app/log/.keep
220
+ - spec/support/rails_test_app/public/404.html
221
+ - spec/support/rails_test_app/public/422.html
222
+ - spec/support/rails_test_app/public/500.html
223
+ - spec/support/rails_test_app/public/favicon.ico
224
+ - spec/support/rails_test_app/public/robots.txt
225
+ - spec/support/rails_test_app/vendor/assets/javascripts/.keep
226
+ - spec/support/rails_test_app/vendor/assets/stylesheets/.keep
227
+ homepage: https://github.com/Nedomas/databound
228
+ licenses:
229
+ - MIT
230
+ metadata: {}
231
+ post_install_message:
232
+ rdoc_options: []
233
+ require_paths:
234
+ - lib
235
+ required_ruby_version: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - ">="
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ required_rubygems_version: !ruby/object:Gem::Requirement
241
+ requirements:
242
+ - - ">="
243
+ - !ruby/object:Gem::Version
244
+ version: '0'
245
+ requirements: []
246
+ rubyforge_project:
247
+ rubygems_version: 2.2.2
248
+ signing_key:
249
+ specification_version: 4
250
+ summary: ActiveRecord exposed to the Javascript side and guarded by guns
251
+ test_files:
252
+ - spec/controllers/databound_spec.rb
253
+ - spec/controllers/dsl_controller_spec.rb
254
+ - spec/controllers/loose_dsl_controller_spec.rb
255
+ - spec/controllers/no_model_controller_spec.rb
256
+ - spec/controllers/permitted_columns_controller_spec.rb
257
+ - spec/internal/app/controllers/application_controller.rb
258
+ - spec/internal/app/controllers/dsl_controller.rb
259
+ - spec/internal/app/controllers/loose_dsl_controller.rb
260
+ - spec/internal/app/controllers/no_model_controller.rb
261
+ - spec/internal/app/controllers/permitted_columns_controller.rb
262
+ - spec/internal/app/controllers/users_controller.rb
263
+ - spec/internal/app/models/user.rb
264
+ - spec/internal/config/database.yml
265
+ - spec/internal/config/routes.rb
266
+ - spec/internal/db/combustion_test.sqlite
267
+ - spec/internal/db/schema.rb
268
+ - spec/internal/log/.gitignore
269
+ - spec/internal/public/favicon.ico
270
+ - spec/spec_helper.rb
271
+ - spec/support/rails_test_app/.gitignore
272
+ - spec/support/rails_test_app/Gemfile
273
+ - spec/support/rails_test_app/Gemfile.lock
274
+ - spec/support/rails_test_app/README.rdoc
275
+ - spec/support/rails_test_app/Rakefile
276
+ - spec/support/rails_test_app/app/assets/images/.keep
277
+ - spec/support/rails_test_app/app/assets/javascripts/application.js
278
+ - spec/support/rails_test_app/app/assets/stylesheets/application.css
279
+ - spec/support/rails_test_app/app/controllers/application_controller.rb
280
+ - spec/support/rails_test_app/app/controllers/concerns/.keep
281
+ - spec/support/rails_test_app/app/helpers/application_helper.rb
282
+ - spec/support/rails_test_app/app/mailers/.keep
283
+ - spec/support/rails_test_app/app/models/.keep
284
+ - spec/support/rails_test_app/app/models/concerns/.keep
285
+ - spec/support/rails_test_app/app/views/layouts/application.html.erb
286
+ - spec/support/rails_test_app/bin/bundle
287
+ - spec/support/rails_test_app/bin/rails
288
+ - spec/support/rails_test_app/bin/rake
289
+ - spec/support/rails_test_app/bin/spring
290
+ - spec/support/rails_test_app/config.ru
291
+ - spec/support/rails_test_app/config/application.rb
292
+ - spec/support/rails_test_app/config/boot.rb
293
+ - spec/support/rails_test_app/config/database.yml
294
+ - spec/support/rails_test_app/config/environment.rb
295
+ - spec/support/rails_test_app/config/environments/development.rb
296
+ - spec/support/rails_test_app/config/environments/production.rb
297
+ - spec/support/rails_test_app/config/environments/test.rb
298
+ - spec/support/rails_test_app/config/initializers/assets.rb
299
+ - spec/support/rails_test_app/config/initializers/backtrace_silencers.rb
300
+ - spec/support/rails_test_app/config/initializers/cookies_serializer.rb
301
+ - spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb
302
+ - spec/support/rails_test_app/config/initializers/inflections.rb
303
+ - spec/support/rails_test_app/config/initializers/mime_types.rb
304
+ - spec/support/rails_test_app/config/initializers/session_store.rb
305
+ - spec/support/rails_test_app/config/initializers/wrap_parameters.rb
306
+ - spec/support/rails_test_app/config/locales/en.yml
307
+ - spec/support/rails_test_app/config/routes.rb
308
+ - spec/support/rails_test_app/config/secrets.yml
309
+ - spec/support/rails_test_app/db/seeds.rb
310
+ - spec/support/rails_test_app/lib/assets/.keep
311
+ - spec/support/rails_test_app/lib/tasks/.keep
312
+ - spec/support/rails_test_app/log/.keep
313
+ - spec/support/rails_test_app/public/404.html
314
+ - spec/support/rails_test_app/public/422.html
315
+ - spec/support/rails_test_app/public/500.html
316
+ - spec/support/rails_test_app/public/favicon.ico
317
+ - spec/support/rails_test_app/public/robots.txt
318
+ - spec/support/rails_test_app/vendor/assets/javascripts/.keep
319
+ - spec/support/rails_test_app/vendor/assets/stylesheets/.keep
320
+ has_rdoc: