rock_motive 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +54 -0
  4. data/lib/generators/mini_test/context_generator.rb +20 -0
  5. data/lib/generators/mini_test/role_generator.rb +20 -0
  6. data/lib/generators/mini_test/templates/context_spec.rb +4 -0
  7. data/lib/generators/mini_test/templates/context_test.rb +4 -0
  8. data/lib/generators/mini_test/templates/role_spec.rb +4 -0
  9. data/lib/generators/mini_test/templates/role_test.rb +4 -0
  10. data/lib/generators/rails/context_generator.rb +29 -0
  11. data/lib/generators/rails/role_generator.rb +14 -0
  12. data/lib/generators/rails/templates/context.rb +11 -0
  13. data/lib/generators/rails/templates/role.rb +2 -0
  14. data/lib/generators/test_unit/context_generator.rb +9 -0
  15. data/lib/generators/test_unit/role_generator.rb +9 -0
  16. data/lib/generators/test_unit/templates/context_test.rb +4 -0
  17. data/lib/generators/test_unit/templates/role_test.rb +4 -0
  18. data/lib/rock_motive/context.rb +79 -0
  19. data/lib/rock_motive/railtie.rb +8 -0
  20. data/lib/rock_motive/version.rb +3 -0
  21. data/lib/rock_motive.rb +3 -0
  22. data/lib/tasks/rock_motive_tasks.rake +4 -0
  23. data/test/dummy/README.rdoc +28 -0
  24. data/test/dummy/Rakefile +6 -0
  25. data/test/dummy/app/assets/javascripts/application.js +13 -0
  26. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/test/dummy/app/controllers/application_controller.rb +5 -0
  28. data/test/dummy/app/helpers/application_helper.rb +2 -0
  29. data/test/dummy/app/models/bird.rb +2 -0
  30. data/test/dummy/app/roles/pigeon_role.rb +5 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/bin/bundle +3 -0
  33. data/test/dummy/bin/rails +4 -0
  34. data/test/dummy/bin/rake +4 -0
  35. data/test/dummy/bin/setup +29 -0
  36. data/test/dummy/config/application.rb +31 -0
  37. data/test/dummy/config/boot.rb +5 -0
  38. data/test/dummy/config/database.yml +25 -0
  39. data/test/dummy/config/environment.rb +5 -0
  40. data/test/dummy/config/environments/development.rb +41 -0
  41. data/test/dummy/config/environments/production.rb +79 -0
  42. data/test/dummy/config/environments/test.rb +42 -0
  43. data/test/dummy/config/initializers/assets.rb +11 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  46. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  47. data/test/dummy/config/initializers/inflections.rb +16 -0
  48. data/test/dummy/config/initializers/mime_types.rb +4 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +56 -0
  53. data/test/dummy/config/secrets.yml +22 -0
  54. data/test/dummy/config.ru +4 -0
  55. data/test/dummy/db/migrate/20150201003815_create_birds.rb +9 -0
  56. data/test/dummy/db/schema.rb +22 -0
  57. data/test/dummy/db/test.sqlite3 +0 -0
  58. data/test/dummy/log/development.log +0 -0
  59. data/test/dummy/log/test.log +1705 -0
  60. data/test/dummy/public/404.html +67 -0
  61. data/test/dummy/public/422.html +67 -0
  62. data/test/dummy/public/500.html +66 -0
  63. data/test/dummy/public/favicon.ico +0 -0
  64. data/test/rock_motive/context_test.rb +72 -0
  65. data/test/rock_motive_test.rb +7 -0
  66. data/test/test_helper.rb +24 -0
  67. metadata +279 -0
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</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/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</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,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>
File without changes
@@ -0,0 +1,72 @@
1
+ require 'test_helper'
2
+ require 'rock_motive/context'
3
+
4
+ class RockMotive::ContextTest < ActiveSupport::TestCase
5
+ test '.execute' do
6
+ assert { context_class.execute }
7
+ end
8
+
9
+ test '.execute with override' do
10
+ assert { context_class_with_override_execute.execute }
11
+ end
12
+
13
+ test '#execute with extend' do
14
+ bird = Bird.new(name: 'hato')
15
+
16
+ assert { context_class_with_role.execute(bird) == 'hato!' }
17
+ end
18
+
19
+ test '#execute with keyword argument' do
20
+ bird = Bird.new(name: 'hato')
21
+
22
+ assert { context_class_with_keyword.execute(bird, pigeon: bird) == 'hato!' }
23
+ end
24
+
25
+ test '#execute with unextended' do
26
+ bird = Bird.new(name: 'hato')
27
+
28
+ context_class_with_role.execute(bird)
29
+
30
+ assert { bird.singleton_class.ancestors.exclude?(PigeonRole) }
31
+
32
+ context_class_with_keyword.execute(bird, pigeon: bird)
33
+
34
+ assert { bird.singleton_class.ancestors.exclude?(PigeonRole) }
35
+ end
36
+
37
+ private
38
+
39
+ def context_class
40
+ @context_class ||= Class.new(RockMotive::Context) do
41
+ def execute
42
+ true
43
+ end
44
+ end
45
+ end
46
+
47
+ def context_class_with_role
48
+ @context_class_with_role ||= Class.new(RockMotive::Context) do
49
+ def execute(pigeon)
50
+ pigeon.chirp
51
+ end
52
+ end
53
+ end
54
+
55
+ def context_class_with_override_execute
56
+ @context_class_with_override_execute ||= Class.new(RockMotive::Context) do
57
+ def self.execute
58
+ true
59
+ end
60
+ end
61
+ end
62
+
63
+ # rubocop:disable all
64
+ def context_class_with_keyword
65
+ @context_class_with_keyword ||= Class.new(RockMotive::Context) do
66
+ def execute(hato, msg = '', *args, pigeon:, penguin: nil, **opt)
67
+ pigeon.chirp
68
+ end
69
+ end
70
+ end
71
+ # rubocop:enable all
72
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class RockMotiveTest < ActiveSupport::TestCase
4
+ test 'truth' do
5
+ assert_kind_of Module, RockMotive
6
+ end
7
+ end
@@ -0,0 +1,24 @@
1
+ # Configure Rails Environment
2
+ ENV['RAILS_ENV'] = 'test'
3
+
4
+ require 'simplecov'
5
+ SimpleCov.start 'rails'
6
+ require 'codeclimate-test-reporter'
7
+ CodeClimate::TestReporter.start
8
+
9
+ require File.expand_path('../../test/dummy/config/environment.rb', __FILE__)
10
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path('../../test/dummy/db/migrate', __FILE__)]
11
+ require 'rails/test_help'
12
+ require 'minitest/power_assert'
13
+
14
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
15
+ # to be shown.
16
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
17
+
18
+ # Load support files
19
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
20
+
21
+ # Load fixtures from the engine
22
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
23
+ ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
24
+ end
metadata ADDED
@@ -0,0 +1,279 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rock_motive
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.beta1
5
+ platform: ruby
6
+ authors:
7
+ - Sho Kusano
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-02-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: uninclude
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
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: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest-power_assert
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: rubocop
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: simplecov
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: codeclimate-test-reporter
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: ruby-prof
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: benchmark-ips
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Inject DCI to Rails
140
+ email:
141
+ - rosylilly@aduca.org
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - MIT-LICENSE
147
+ - Rakefile
148
+ - lib/generators/mini_test/context_generator.rb
149
+ - lib/generators/mini_test/role_generator.rb
150
+ - lib/generators/mini_test/templates/context_spec.rb
151
+ - lib/generators/mini_test/templates/context_test.rb
152
+ - lib/generators/mini_test/templates/role_spec.rb
153
+ - lib/generators/mini_test/templates/role_test.rb
154
+ - lib/generators/rails/context_generator.rb
155
+ - lib/generators/rails/role_generator.rb
156
+ - lib/generators/rails/templates/context.rb
157
+ - lib/generators/rails/templates/role.rb
158
+ - lib/generators/test_unit/context_generator.rb
159
+ - lib/generators/test_unit/role_generator.rb
160
+ - lib/generators/test_unit/templates/context_test.rb
161
+ - lib/generators/test_unit/templates/role_test.rb
162
+ - lib/rock_motive.rb
163
+ - lib/rock_motive/context.rb
164
+ - lib/rock_motive/railtie.rb
165
+ - lib/rock_motive/version.rb
166
+ - lib/tasks/rock_motive_tasks.rake
167
+ - test/dummy/README.rdoc
168
+ - test/dummy/Rakefile
169
+ - test/dummy/app/assets/javascripts/application.js
170
+ - test/dummy/app/assets/stylesheets/application.css
171
+ - test/dummy/app/controllers/application_controller.rb
172
+ - test/dummy/app/helpers/application_helper.rb
173
+ - test/dummy/app/models/bird.rb
174
+ - test/dummy/app/roles/pigeon_role.rb
175
+ - test/dummy/app/views/layouts/application.html.erb
176
+ - test/dummy/bin/bundle
177
+ - test/dummy/bin/rails
178
+ - test/dummy/bin/rake
179
+ - test/dummy/bin/setup
180
+ - test/dummy/config.ru
181
+ - test/dummy/config/application.rb
182
+ - test/dummy/config/boot.rb
183
+ - test/dummy/config/database.yml
184
+ - test/dummy/config/environment.rb
185
+ - test/dummy/config/environments/development.rb
186
+ - test/dummy/config/environments/production.rb
187
+ - test/dummy/config/environments/test.rb
188
+ - test/dummy/config/initializers/assets.rb
189
+ - test/dummy/config/initializers/backtrace_silencers.rb
190
+ - test/dummy/config/initializers/cookies_serializer.rb
191
+ - test/dummy/config/initializers/filter_parameter_logging.rb
192
+ - test/dummy/config/initializers/inflections.rb
193
+ - test/dummy/config/initializers/mime_types.rb
194
+ - test/dummy/config/initializers/session_store.rb
195
+ - test/dummy/config/initializers/wrap_parameters.rb
196
+ - test/dummy/config/locales/en.yml
197
+ - test/dummy/config/routes.rb
198
+ - test/dummy/config/secrets.yml
199
+ - test/dummy/db/migrate/20150201003815_create_birds.rb
200
+ - test/dummy/db/schema.rb
201
+ - test/dummy/db/test.sqlite3
202
+ - test/dummy/log/development.log
203
+ - test/dummy/log/test.log
204
+ - test/dummy/public/404.html
205
+ - test/dummy/public/422.html
206
+ - test/dummy/public/500.html
207
+ - test/dummy/public/favicon.ico
208
+ - test/rock_motive/context_test.rb
209
+ - test/rock_motive_test.rb
210
+ - test/test_helper.rb
211
+ homepage: https://github.com/rosylilly/rock_motive
212
+ licenses:
213
+ - MIT
214
+ metadata: {}
215
+ post_install_message:
216
+ rdoc_options: []
217
+ require_paths:
218
+ - lib
219
+ required_ruby_version: !ruby/object:Gem::Requirement
220
+ requirements:
221
+ - - ">="
222
+ - !ruby/object:Gem::Version
223
+ version: '0'
224
+ required_rubygems_version: !ruby/object:Gem::Requirement
225
+ requirements:
226
+ - - ">"
227
+ - !ruby/object:Gem::Version
228
+ version: 1.3.1
229
+ requirements: []
230
+ rubyforge_project:
231
+ rubygems_version: 2.4.5
232
+ signing_key:
233
+ specification_version: 4
234
+ summary: Inject DCI to Rails
235
+ test_files:
236
+ - test/dummy/app/assets/javascripts/application.js
237
+ - test/dummy/app/assets/stylesheets/application.css
238
+ - test/dummy/app/controllers/application_controller.rb
239
+ - test/dummy/app/helpers/application_helper.rb
240
+ - test/dummy/app/models/bird.rb
241
+ - test/dummy/app/roles/pigeon_role.rb
242
+ - test/dummy/app/views/layouts/application.html.erb
243
+ - test/dummy/bin/bundle
244
+ - test/dummy/bin/rails
245
+ - test/dummy/bin/rake
246
+ - test/dummy/bin/setup
247
+ - test/dummy/config/application.rb
248
+ - test/dummy/config/boot.rb
249
+ - test/dummy/config/database.yml
250
+ - test/dummy/config/environment.rb
251
+ - test/dummy/config/environments/development.rb
252
+ - test/dummy/config/environments/production.rb
253
+ - test/dummy/config/environments/test.rb
254
+ - test/dummy/config/initializers/assets.rb
255
+ - test/dummy/config/initializers/backtrace_silencers.rb
256
+ - test/dummy/config/initializers/cookies_serializer.rb
257
+ - test/dummy/config/initializers/filter_parameter_logging.rb
258
+ - test/dummy/config/initializers/inflections.rb
259
+ - test/dummy/config/initializers/mime_types.rb
260
+ - test/dummy/config/initializers/session_store.rb
261
+ - test/dummy/config/initializers/wrap_parameters.rb
262
+ - test/dummy/config/locales/en.yml
263
+ - test/dummy/config/routes.rb
264
+ - test/dummy/config/secrets.yml
265
+ - test/dummy/config.ru
266
+ - test/dummy/db/migrate/20150201003815_create_birds.rb
267
+ - test/dummy/db/schema.rb
268
+ - test/dummy/db/test.sqlite3
269
+ - test/dummy/log/development.log
270
+ - test/dummy/log/test.log
271
+ - test/dummy/public/404.html
272
+ - test/dummy/public/422.html
273
+ - test/dummy/public/500.html
274
+ - test/dummy/public/favicon.ico
275
+ - test/dummy/Rakefile
276
+ - test/dummy/README.rdoc
277
+ - test/rock_motive/context_test.rb
278
+ - test/rock_motive_test.rb
279
+ - test/test_helper.rb