json_voorhees 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +52 -4
- data/lib/generators/json_voorhees/app_make_authorizations/USAGE +1 -1
- data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +1 -0
- data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +8 -1
- data/lib/generators/json_voorhees/app_make_tests/USAGE +1 -1
- data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +26 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +3 -1
- data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +5 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/no_auth_request.rb.erb +90 -0
- data/lib/generators/json_voorhees/app_scaffold/USAGE +9 -0
- data/lib/generators/json_voorhees/app_scaffold/app_scaffold_generator.rb +22 -0
- data/lib/generators/json_voorhees/engine_create_controller/USAGE +1 -1
- data/lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb +11 -0
- data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +1 -1
- data/lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb +1 -1
- data/lib/generators/json_voorhees/engine_create_serializer/USAGE +1 -1
- data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +1 -0
- data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +13 -0
- data/lib/generators/json_voorhees/engine_scaffold/USAGE +9 -0
- data/lib/generators/json_voorhees/engine_scaffold/engine_scaffold_generator.rb +18 -0
- data/lib/generators/json_voorhees/massive_scaffold/USAGE +10 -0
- data/lib/generators/json_voorhees/massive_scaffold/massive_scaffold_generator.rb +23 -0
- data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +10 -0
- data/lib/json_voorhees/version.rb +1 -1
- data/test/lib/generators/json_voorhees/app_scaffold_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/engine_scaffold_generator_test.rb +16 -0
- data/test/lib/generators/json_voorhees/massive_scaffold_generator_test.rb +16 -0
- data/test/test_app/Gemfile +23 -0
- data/test/test_app/Gemfile.lock +99 -1
- data/test/test_app/README.md +1 -0
- data/test/test_app/app/controllers/api/v1/api_controller.rb +26 -0
- data/test/test_app/app/controllers/app_index_controller.rb +4 -0
- data/test/test_app/app/controllers/application_controller.rb +5 -0
- data/test/test_app/app/controllers/main_controller.rb +4 -0
- data/test/test_app/app/views/app_index/app.html.erb +0 -0
- data/test/test_app/app/views/layouts/app_index.html.erb +9 -0
- data/test/test_app/app/views/layouts/application.html.erb +8 -3
- data/test/test_app/app/views/main/admin.html.erb +9 -0
- data/test/test_app/config/application.rb +4 -0
- data/test/test_app/config/routes.rb +8 -0
- data/test/test_app/db/development.sqlite3 +0 -0
- data/test/test_app/db/migrate/20140905145354_create_people_users.people.rb +12 -0
- data/test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb +12 -0
- data/test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb +6 -0
- data/test/test_app/db/production.sqlite3 +0 -0
- data/test/test_app/db/schema.rb +19 -1
- data/test/test_app/db/test.sqlite3 +0 -0
- data/test/test_app/engines/people/Gemfile +14 -0
- data/test/test_app/engines/people/Gemfile.lock +92 -0
- data/test/test_app/engines/people/MIT-LICENSE +20 -0
- data/test/test_app/engines/people/README.md +1 -0
- data/test/test_app/engines/people/Rakefile +34 -0
- data/test/test_app/engines/people/app/assets/javascripts/people/application.js +13 -0
- data/test/test_app/engines/people/app/assets/javascripts/people/users.js +2 -0
- data/test/test_app/engines/people/app/assets/stylesheets/people/application.css +15 -0
- data/test/test_app/engines/people/app/assets/stylesheets/people/users.css +4 -0
- data/test/test_app/engines/people/app/assets/stylesheets/scaffold.css +56 -0
- data/test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb +5 -0
- data/test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb +124 -0
- data/test/test_app/engines/people/app/controllers/people/application_controller.rb +4 -0
- data/test/test_app/engines/people/app/controllers/people/users_controller.rb +62 -0
- data/test/test_app/engines/people/app/helpers/people/application_helper.rb +4 -0
- data/test/test_app/engines/people/app/helpers/people/users_helper.rb +4 -0
- data/test/test_app/engines/people/app/models/people/user.rb +26 -0
- data/test/test_app/engines/people/app/serializers/people/user_serializer.rb +39 -0
- data/test/test_app/engines/people/app/views/layouts/people/default/application.html.erb +14 -0
- data/test/test_app/engines/people/app/views/people/users/_form.html.erb +29 -0
- data/test/test_app/engines/people/app/views/people/users/edit.html.erb +6 -0
- data/test/test_app/engines/people/app/views/people/users/index.html.erb +29 -0
- data/test/test_app/engines/people/app/views/people/users/new.html.erb +5 -0
- data/test/test_app/engines/people/app/views/people/users/show.html.erb +19 -0
- data/test/test_app/engines/people/bin/rails +12 -0
- data/test/test_app/engines/people/config/routes.rb +24 -0
- data/test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb +11 -0
- data/test/test_app/engines/people/lib/people/engine.rb +5 -0
- data/test/test_app/engines/people/lib/people/version.rb +3 -0
- data/test/test_app/engines/people/lib/people.rb +4 -0
- data/test/test_app/engines/people/lib/tasks/people_tasks.rake +4 -0
- data/test/test_app/engines/people/people.gemspec +31 -0
- data/test/test_app/engines/people/test/controllers/people/users_controller_test.rb +51 -0
- data/test/test_app/{README.rdoc → engines/people/test/dummy/README.rdoc} +0 -0
- data/test/test_app/engines/people/test/dummy/Rakefile +6 -0
- data/test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/test_app/engines/people/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/test_app/engines/people/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/test_app/engines/people/test/dummy/bin/bundle +3 -0
- data/test/test_app/engines/people/test/dummy/bin/rails +4 -0
- data/test/test_app/engines/people/test/dummy/bin/rake +4 -0
- data/test/test_app/engines/people/test/dummy/config/application.rb +23 -0
- data/test/test_app/engines/people/test/dummy/config/boot.rb +5 -0
- data/test/test_app/engines/people/test/dummy/config/database.yml +25 -0
- data/test/test_app/engines/people/test/dummy/config/environment.rb +5 -0
- data/test/test_app/engines/people/test/dummy/config/environments/development.rb +37 -0
- data/test/test_app/engines/people/test/dummy/config/environments/production.rb +82 -0
- data/test/test_app/engines/people/test/dummy/config/environments/test.rb +39 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/assets.rb +8 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_app/engines/people/test/dummy/config/locales/en.yml +23 -0
- data/test/test_app/engines/people/test/dummy/config/routes.rb +4 -0
- data/test/test_app/engines/people/test/dummy/config/secrets.yml +22 -0
- data/test/test_app/engines/people/test/dummy/config.ru +4 -0
- data/test/test_app/engines/people/test/dummy/db/schema.rb +24 -0
- data/test/test_app/engines/people/test/dummy/public/404.html +67 -0
- data/test/test_app/engines/people/test/dummy/public/422.html +67 -0
- data/test/test_app/engines/people/test/dummy/public/500.html +66 -0
- data/test/test_app/engines/people/test/dummy/public/favicon.ico +0 -0
- data/test/test_app/engines/people/test/fixtures/people/users.yml +11 -0
- data/test/test_app/engines/people/test/helpers/people/users_helper_test.rb +6 -0
- data/test/test_app/engines/people/test/integration/navigation_test.rb +10 -0
- data/test/test_app/engines/people/test/models/people/user_test.rb +9 -0
- data/test/test_app/engines/people/test/people_test.rb +7 -0
- data/test/test_app/engines/people/test/test_helper.rb +15 -0
- data/test/test_app/gems/authorization/Gemfile +14 -0
- data/test/test_app/gems/authorization/Gemfile.lock +92 -0
- data/test/test_app/gems/authorization/MIT-LICENSE +20 -0
- data/test/test_app/gems/authorization/README.rdoc +3 -0
- data/test/test_app/gems/authorization/Rakefile +32 -0
- data/test/test_app/gems/authorization/authorization.gemspec +23 -0
- data/test/test_app/gems/authorization/lib/authorization/people/user.rb +82 -0
- data/test/test_app/gems/authorization/lib/authorization/version.rb +3 -0
- data/test/test_app/gems/authorization/lib/authorization.rb +3 -0
- data/test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake +4 -0
- data/test/test_app/gems/authorization/test/authorization_test.rb +7 -0
- data/test/test_app/gems/authorization/test/dummy/README.rdoc +28 -0
- data/test/test_app/gems/authorization/test/dummy/Rakefile +6 -0
- data/test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/test_app/gems/authorization/test/dummy/bin/bundle +3 -0
- data/test/test_app/gems/authorization/test/dummy/bin/rails +4 -0
- data/test/test_app/gems/authorization/test/dummy/bin/rake +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/application.rb +23 -0
- data/test/test_app/gems/authorization/test/dummy/config/boot.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/config/database.yml +25 -0
- data/test/test_app/gems/authorization/test/dummy/config/environment.rb +5 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/development.rb +37 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/production.rb +82 -0
- data/test/test_app/gems/authorization/test/dummy/config/environments/test.rb +39 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb +8 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_app/gems/authorization/test/dummy/config/locales/en.yml +23 -0
- data/test/test_app/gems/authorization/test/dummy/config/routes.rb +56 -0
- data/test/test_app/gems/authorization/test/dummy/config/secrets.yml +22 -0
- data/test/test_app/gems/authorization/test/dummy/config.ru +4 -0
- data/test/test_app/gems/authorization/test/dummy/public/404.html +67 -0
- data/test/test_app/gems/authorization/test/dummy/public/422.html +67 -0
- data/test/test_app/gems/authorization/test/dummy/public/500.html +66 -0
- data/test/test_app/gems/authorization/test/dummy/public/favicon.ico +0 -0
- data/test/test_app/gems/authorization/test/test_helper.rb +15 -0
- data/test/test_app/log/development.log +195 -0
- data/test/test_app/log/production.log +20 -0
- data/test/test_app/log/test.log +8427 -0
- data/test/test_app/spec/controllers/app_index_controller_spec.rb +12 -0
- data/test/test_app/spec/engines/people/api/v1/models/user_spec.rb +59 -0
- data/test/test_app/spec/engines/people/api/v1/requests/user_spec.rb +154 -0
- data/test/test_app/spec/engines/people/api/v1/routing/user_spec.rb +77 -0
- data/test/test_app/spec/factories/people_user_factory.rb +14 -0
- data/test/test_app/spec/rails_helper.rb +47 -0
- data/test/test_app/spec/spec_helper.rb +78 -0
- data/test/test_app/spec/support/factory_girl.rb +16 -0
- data/test/test_app/spec/support/request_helpers.rb +7 -0
- metadata +293 -6
- data/test/test_app/test/test_helper.rb +0 -10
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json_voorhees
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cleophus Robinson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -63,8 +63,11 @@ files:
|
|
63
63
|
- lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb
|
64
64
|
- lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb
|
65
65
|
- lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb
|
66
|
+
- lib/generators/json_voorhees/app_make_tests/templates/no_auth_request.rb.erb
|
66
67
|
- lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb
|
67
68
|
- lib/generators/json_voorhees/app_make_tests/templates/routing.rb.erb
|
69
|
+
- lib/generators/json_voorhees/app_scaffold/USAGE
|
70
|
+
- lib/generators/json_voorhees/app_scaffold/app_scaffold_generator.rb
|
68
71
|
- lib/generators/json_voorhees/engine_create_controller/USAGE
|
69
72
|
- lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb
|
70
73
|
- lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb
|
@@ -72,6 +75,10 @@ files:
|
|
72
75
|
- lib/generators/json_voorhees/engine_create_serializer/USAGE
|
73
76
|
- lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb
|
74
77
|
- lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb
|
78
|
+
- lib/generators/json_voorhees/engine_scaffold/USAGE
|
79
|
+
- lib/generators/json_voorhees/engine_scaffold/engine_scaffold_generator.rb
|
80
|
+
- lib/generators/json_voorhees/massive_scaffold/USAGE
|
81
|
+
- lib/generators/json_voorhees/massive_scaffold/massive_scaffold_generator.rb
|
75
82
|
- lib/generators/json_voorhees/setup_app/USAGE
|
76
83
|
- lib/generators/json_voorhees/setup_app/setup_app_generator.rb
|
77
84
|
- lib/generators/json_voorhees/setup_app/templates/api_controller_no_arcadex.rb
|
@@ -139,16 +146,25 @@ files:
|
|
139
146
|
- test/dummy/public/favicon.ico
|
140
147
|
- test/integration/navigation_test.rb
|
141
148
|
- test/json_voorhees_test.rb
|
149
|
+
- test/lib/generators/json_voorhees/app_scaffold_generator_test.rb
|
150
|
+
- test/lib/generators/json_voorhees/engine_scaffold_generator_test.rb
|
142
151
|
- test/lib/generators/json_voorhees/engine_serializer_generator_test.rb
|
152
|
+
- test/lib/generators/json_voorhees/massive_scaffold_generator_test.rb
|
143
153
|
- test/test_app/Gemfile
|
144
154
|
- test/test_app/Gemfile.lock
|
145
|
-
- test/test_app/README.
|
155
|
+
- test/test_app/README.md
|
146
156
|
- test/test_app/Rakefile
|
147
157
|
- test/test_app/app/assets/javascripts/application.js
|
148
158
|
- test/test_app/app/assets/stylesheets/application.css
|
159
|
+
- test/test_app/app/controllers/api/v1/api_controller.rb
|
160
|
+
- test/test_app/app/controllers/app_index_controller.rb
|
149
161
|
- test/test_app/app/controllers/application_controller.rb
|
162
|
+
- test/test_app/app/controllers/main_controller.rb
|
150
163
|
- test/test_app/app/helpers/application_helper.rb
|
164
|
+
- test/test_app/app/views/app_index/app.html.erb
|
165
|
+
- test/test_app/app/views/layouts/app_index.html.erb
|
151
166
|
- test/test_app/app/views/layouts/application.html.erb
|
167
|
+
- test/test_app/app/views/main/admin.html.erb
|
152
168
|
- test/test_app/bin/bundle
|
153
169
|
- test/test_app/bin/rails
|
154
170
|
- test/test_app/bin/rake
|
@@ -173,8 +189,131 @@ files:
|
|
173
189
|
- test/test_app/config/routes.rb
|
174
190
|
- test/test_app/config/secrets.yml
|
175
191
|
- test/test_app/db/development.sqlite3
|
192
|
+
- test/test_app/db/migrate/20140905145354_create_people_users.people.rb
|
193
|
+
- test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb
|
194
|
+
- test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb
|
195
|
+
- test/test_app/db/production.sqlite3
|
176
196
|
- test/test_app/db/schema.rb
|
177
197
|
- test/test_app/db/seeds.rb
|
198
|
+
- test/test_app/db/test.sqlite3
|
199
|
+
- test/test_app/engines/people/Gemfile
|
200
|
+
- test/test_app/engines/people/Gemfile.lock
|
201
|
+
- test/test_app/engines/people/MIT-LICENSE
|
202
|
+
- test/test_app/engines/people/README.md
|
203
|
+
- test/test_app/engines/people/Rakefile
|
204
|
+
- test/test_app/engines/people/app/assets/javascripts/people/application.js
|
205
|
+
- test/test_app/engines/people/app/assets/javascripts/people/users.js
|
206
|
+
- test/test_app/engines/people/app/assets/stylesheets/people/application.css
|
207
|
+
- test/test_app/engines/people/app/assets/stylesheets/people/users.css
|
208
|
+
- test/test_app/engines/people/app/assets/stylesheets/scaffold.css
|
209
|
+
- test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb
|
210
|
+
- test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb
|
211
|
+
- test/test_app/engines/people/app/controllers/people/application_controller.rb
|
212
|
+
- test/test_app/engines/people/app/controllers/people/users_controller.rb
|
213
|
+
- test/test_app/engines/people/app/helpers/people/application_helper.rb
|
214
|
+
- test/test_app/engines/people/app/helpers/people/users_helper.rb
|
215
|
+
- test/test_app/engines/people/app/models/people/user.rb
|
216
|
+
- test/test_app/engines/people/app/serializers/people/user_serializer.rb
|
217
|
+
- test/test_app/engines/people/app/views/layouts/people/default/application.html.erb
|
218
|
+
- test/test_app/engines/people/app/views/people/users/_form.html.erb
|
219
|
+
- test/test_app/engines/people/app/views/people/users/edit.html.erb
|
220
|
+
- test/test_app/engines/people/app/views/people/users/index.html.erb
|
221
|
+
- test/test_app/engines/people/app/views/people/users/new.html.erb
|
222
|
+
- test/test_app/engines/people/app/views/people/users/show.html.erb
|
223
|
+
- test/test_app/engines/people/bin/rails
|
224
|
+
- test/test_app/engines/people/config/routes.rb
|
225
|
+
- test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb
|
226
|
+
- test/test_app/engines/people/lib/people.rb
|
227
|
+
- test/test_app/engines/people/lib/people/engine.rb
|
228
|
+
- test/test_app/engines/people/lib/people/version.rb
|
229
|
+
- test/test_app/engines/people/lib/tasks/people_tasks.rake
|
230
|
+
- test/test_app/engines/people/people.gemspec
|
231
|
+
- test/test_app/engines/people/test/controllers/people/users_controller_test.rb
|
232
|
+
- test/test_app/engines/people/test/dummy/README.rdoc
|
233
|
+
- test/test_app/engines/people/test/dummy/Rakefile
|
234
|
+
- test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js
|
235
|
+
- test/test_app/engines/people/test/dummy/app/assets/stylesheets/application.css
|
236
|
+
- test/test_app/engines/people/test/dummy/app/controllers/application_controller.rb
|
237
|
+
- test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb
|
238
|
+
- test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb
|
239
|
+
- test/test_app/engines/people/test/dummy/bin/bundle
|
240
|
+
- test/test_app/engines/people/test/dummy/bin/rails
|
241
|
+
- test/test_app/engines/people/test/dummy/bin/rake
|
242
|
+
- test/test_app/engines/people/test/dummy/config.ru
|
243
|
+
- test/test_app/engines/people/test/dummy/config/application.rb
|
244
|
+
- test/test_app/engines/people/test/dummy/config/boot.rb
|
245
|
+
- test/test_app/engines/people/test/dummy/config/database.yml
|
246
|
+
- test/test_app/engines/people/test/dummy/config/environment.rb
|
247
|
+
- test/test_app/engines/people/test/dummy/config/environments/development.rb
|
248
|
+
- test/test_app/engines/people/test/dummy/config/environments/production.rb
|
249
|
+
- test/test_app/engines/people/test/dummy/config/environments/test.rb
|
250
|
+
- test/test_app/engines/people/test/dummy/config/initializers/assets.rb
|
251
|
+
- test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb
|
252
|
+
- test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb
|
253
|
+
- test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb
|
254
|
+
- test/test_app/engines/people/test/dummy/config/initializers/inflections.rb
|
255
|
+
- test/test_app/engines/people/test/dummy/config/initializers/mime_types.rb
|
256
|
+
- test/test_app/engines/people/test/dummy/config/initializers/session_store.rb
|
257
|
+
- test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb
|
258
|
+
- test/test_app/engines/people/test/dummy/config/locales/en.yml
|
259
|
+
- test/test_app/engines/people/test/dummy/config/routes.rb
|
260
|
+
- test/test_app/engines/people/test/dummy/config/secrets.yml
|
261
|
+
- test/test_app/engines/people/test/dummy/db/schema.rb
|
262
|
+
- test/test_app/engines/people/test/dummy/public/404.html
|
263
|
+
- test/test_app/engines/people/test/dummy/public/422.html
|
264
|
+
- test/test_app/engines/people/test/dummy/public/500.html
|
265
|
+
- test/test_app/engines/people/test/dummy/public/favicon.ico
|
266
|
+
- test/test_app/engines/people/test/fixtures/people/users.yml
|
267
|
+
- test/test_app/engines/people/test/helpers/people/users_helper_test.rb
|
268
|
+
- test/test_app/engines/people/test/integration/navigation_test.rb
|
269
|
+
- test/test_app/engines/people/test/models/people/user_test.rb
|
270
|
+
- test/test_app/engines/people/test/people_test.rb
|
271
|
+
- test/test_app/engines/people/test/test_helper.rb
|
272
|
+
- test/test_app/gems/authorization/Gemfile
|
273
|
+
- test/test_app/gems/authorization/Gemfile.lock
|
274
|
+
- test/test_app/gems/authorization/MIT-LICENSE
|
275
|
+
- test/test_app/gems/authorization/README.rdoc
|
276
|
+
- test/test_app/gems/authorization/Rakefile
|
277
|
+
- test/test_app/gems/authorization/authorization.gemspec
|
278
|
+
- test/test_app/gems/authorization/lib/authorization.rb
|
279
|
+
- test/test_app/gems/authorization/lib/authorization/people/user.rb
|
280
|
+
- test/test_app/gems/authorization/lib/authorization/version.rb
|
281
|
+
- test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake
|
282
|
+
- test/test_app/gems/authorization/test/authorization_test.rb
|
283
|
+
- test/test_app/gems/authorization/test/dummy/README.rdoc
|
284
|
+
- test/test_app/gems/authorization/test/dummy/Rakefile
|
285
|
+
- test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js
|
286
|
+
- test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css
|
287
|
+
- test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb
|
288
|
+
- test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb
|
289
|
+
- test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb
|
290
|
+
- test/test_app/gems/authorization/test/dummy/bin/bundle
|
291
|
+
- test/test_app/gems/authorization/test/dummy/bin/rails
|
292
|
+
- test/test_app/gems/authorization/test/dummy/bin/rake
|
293
|
+
- test/test_app/gems/authorization/test/dummy/config.ru
|
294
|
+
- test/test_app/gems/authorization/test/dummy/config/application.rb
|
295
|
+
- test/test_app/gems/authorization/test/dummy/config/boot.rb
|
296
|
+
- test/test_app/gems/authorization/test/dummy/config/database.yml
|
297
|
+
- test/test_app/gems/authorization/test/dummy/config/environment.rb
|
298
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/development.rb
|
299
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/production.rb
|
300
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/test.rb
|
301
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb
|
302
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb
|
303
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb
|
304
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb
|
305
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb
|
306
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb
|
307
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb
|
308
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb
|
309
|
+
- test/test_app/gems/authorization/test/dummy/config/locales/en.yml
|
310
|
+
- test/test_app/gems/authorization/test/dummy/config/routes.rb
|
311
|
+
- test/test_app/gems/authorization/test/dummy/config/secrets.yml
|
312
|
+
- test/test_app/gems/authorization/test/dummy/public/404.html
|
313
|
+
- test/test_app/gems/authorization/test/dummy/public/422.html
|
314
|
+
- test/test_app/gems/authorization/test/dummy/public/500.html
|
315
|
+
- test/test_app/gems/authorization/test/dummy/public/favicon.ico
|
316
|
+
- test/test_app/gems/authorization/test/test_helper.rb
|
178
317
|
- test/test_app/log/development.log
|
179
318
|
- test/test_app/log/production.log
|
180
319
|
- test/test_app/log/test.log
|
@@ -183,7 +322,15 @@ files:
|
|
183
322
|
- test/test_app/public/500.html
|
184
323
|
- test/test_app/public/favicon.ico
|
185
324
|
- test/test_app/public/robots.txt
|
186
|
-
- test/test_app/
|
325
|
+
- test/test_app/spec/controllers/app_index_controller_spec.rb
|
326
|
+
- test/test_app/spec/engines/people/api/v1/models/user_spec.rb
|
327
|
+
- test/test_app/spec/engines/people/api/v1/requests/user_spec.rb
|
328
|
+
- test/test_app/spec/engines/people/api/v1/routing/user_spec.rb
|
329
|
+
- test/test_app/spec/factories/people_user_factory.rb
|
330
|
+
- test/test_app/spec/rails_helper.rb
|
331
|
+
- test/test_app/spec/spec_helper.rb
|
332
|
+
- test/test_app/spec/support/factory_girl.rb
|
333
|
+
- test/test_app/spec/support/request_helpers.rb
|
187
334
|
- test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e
|
188
335
|
- test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
189
336
|
- test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59
|
@@ -285,13 +432,57 @@ test_files:
|
|
285
432
|
- test/test_app/bin/rake
|
286
433
|
- test/test_app/bin/rails
|
287
434
|
- test/test_app/bin/bundle
|
288
|
-
- test/test_app/test/test_helper.rb
|
289
435
|
- test/test_app/public/robots.txt
|
290
436
|
- test/test_app/public/404.html
|
291
437
|
- test/test_app/public/favicon.ico
|
292
438
|
- test/test_app/public/422.html
|
293
439
|
- test/test_app/public/500.html
|
294
440
|
- test/test_app/config.ru
|
441
|
+
- test/test_app/gems/authorization/Gemfile.lock
|
442
|
+
- test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake
|
443
|
+
- test/test_app/gems/authorization/lib/authorization/people/user.rb
|
444
|
+
- test/test_app/gems/authorization/lib/authorization/version.rb
|
445
|
+
- test/test_app/gems/authorization/lib/authorization.rb
|
446
|
+
- test/test_app/gems/authorization/MIT-LICENSE
|
447
|
+
- test/test_app/gems/authorization/test/authorization_test.rb
|
448
|
+
- test/test_app/gems/authorization/test/dummy/bin/rake
|
449
|
+
- test/test_app/gems/authorization/test/dummy/bin/rails
|
450
|
+
- test/test_app/gems/authorization/test/dummy/bin/bundle
|
451
|
+
- test/test_app/gems/authorization/test/dummy/public/404.html
|
452
|
+
- test/test_app/gems/authorization/test/dummy/public/favicon.ico
|
453
|
+
- test/test_app/gems/authorization/test/dummy/public/422.html
|
454
|
+
- test/test_app/gems/authorization/test/dummy/public/500.html
|
455
|
+
- test/test_app/gems/authorization/test/dummy/config.ru
|
456
|
+
- test/test_app/gems/authorization/test/dummy/config/locales/en.yml
|
457
|
+
- test/test_app/gems/authorization/test/dummy/config/application.rb
|
458
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb
|
459
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb
|
460
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb
|
461
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb
|
462
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb
|
463
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb
|
464
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb
|
465
|
+
- test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb
|
466
|
+
- test/test_app/gems/authorization/test/dummy/config/routes.rb
|
467
|
+
- test/test_app/gems/authorization/test/dummy/config/environment.rb
|
468
|
+
- test/test_app/gems/authorization/test/dummy/config/database.yml
|
469
|
+
- test/test_app/gems/authorization/test/dummy/config/boot.rb
|
470
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/test.rb
|
471
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/development.rb
|
472
|
+
- test/test_app/gems/authorization/test/dummy/config/environments/production.rb
|
473
|
+
- test/test_app/gems/authorization/test/dummy/config/secrets.yml
|
474
|
+
- test/test_app/gems/authorization/test/dummy/Rakefile
|
475
|
+
- test/test_app/gems/authorization/test/dummy/README.rdoc
|
476
|
+
- test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb
|
477
|
+
- test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb
|
478
|
+
- test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb
|
479
|
+
- test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js
|
480
|
+
- test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css
|
481
|
+
- test/test_app/gems/authorization/test/test_helper.rb
|
482
|
+
- test/test_app/gems/authorization/authorization.gemspec
|
483
|
+
- test/test_app/gems/authorization/Rakefile
|
484
|
+
- test/test_app/gems/authorization/README.rdoc
|
485
|
+
- test/test_app/gems/authorization/Gemfile
|
295
486
|
- test/test_app/config/locales/en.yml
|
296
487
|
- test/test_app/config/application.rb
|
297
488
|
- test/test_app/config/initializers/mime_types.rb
|
@@ -310,7 +501,12 @@ test_files:
|
|
310
501
|
- test/test_app/config/environments/development.rb
|
311
502
|
- test/test_app/config/environments/production.rb
|
312
503
|
- test/test_app/config/secrets.yml
|
504
|
+
- test/test_app/db/test.sqlite3
|
505
|
+
- test/test_app/db/production.sqlite3
|
313
506
|
- test/test_app/db/schema.rb
|
507
|
+
- test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb
|
508
|
+
- test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb
|
509
|
+
- test/test_app/db/migrate/20140905145354_create_people_users.people.rb
|
314
510
|
- test/test_app/db/development.sqlite3
|
315
511
|
- test/test_app/db/seeds.rb
|
316
512
|
- test/test_app/Rakefile
|
@@ -329,16 +525,104 @@ test_files:
|
|
329
525
|
- test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6
|
330
526
|
- test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d
|
331
527
|
- test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
332
|
-
- test/test_app/README.rdoc
|
333
528
|
- test/test_app/Gemfile
|
529
|
+
- test/test_app/README.md
|
530
|
+
- test/test_app/app/controllers/app_index_controller.rb
|
531
|
+
- test/test_app/app/controllers/api/v1/api_controller.rb
|
532
|
+
- test/test_app/app/controllers/main_controller.rb
|
334
533
|
- test/test_app/app/controllers/application_controller.rb
|
534
|
+
- test/test_app/app/views/main/admin.html.erb
|
535
|
+
- test/test_app/app/views/app_index/app.html.erb
|
335
536
|
- test/test_app/app/views/layouts/application.html.erb
|
537
|
+
- test/test_app/app/views/layouts/app_index.html.erb
|
336
538
|
- test/test_app/app/helpers/application_helper.rb
|
337
539
|
- test/test_app/app/assets/javascripts/application.js
|
338
540
|
- test/test_app/app/assets/stylesheets/application.css
|
541
|
+
- test/test_app/engines/people/Gemfile.lock
|
542
|
+
- test/test_app/engines/people/bin/rails
|
543
|
+
- test/test_app/engines/people/lib/people.rb
|
544
|
+
- test/test_app/engines/people/lib/tasks/people_tasks.rake
|
545
|
+
- test/test_app/engines/people/lib/people/engine.rb
|
546
|
+
- test/test_app/engines/people/lib/people/version.rb
|
547
|
+
- test/test_app/engines/people/MIT-LICENSE
|
548
|
+
- test/test_app/engines/people/test/people_test.rb
|
549
|
+
- test/test_app/engines/people/test/fixtures/people/users.yml
|
550
|
+
- test/test_app/engines/people/test/integration/navigation_test.rb
|
551
|
+
- test/test_app/engines/people/test/models/people/user_test.rb
|
552
|
+
- test/test_app/engines/people/test/controllers/people/users_controller_test.rb
|
553
|
+
- test/test_app/engines/people/test/dummy/bin/rake
|
554
|
+
- test/test_app/engines/people/test/dummy/bin/rails
|
555
|
+
- test/test_app/engines/people/test/dummy/bin/bundle
|
556
|
+
- test/test_app/engines/people/test/dummy/public/404.html
|
557
|
+
- test/test_app/engines/people/test/dummy/public/favicon.ico
|
558
|
+
- test/test_app/engines/people/test/dummy/public/422.html
|
559
|
+
- test/test_app/engines/people/test/dummy/public/500.html
|
560
|
+
- test/test_app/engines/people/test/dummy/config.ru
|
561
|
+
- test/test_app/engines/people/test/dummy/config/locales/en.yml
|
562
|
+
- test/test_app/engines/people/test/dummy/config/application.rb
|
563
|
+
- test/test_app/engines/people/test/dummy/config/initializers/mime_types.rb
|
564
|
+
- test/test_app/engines/people/test/dummy/config/initializers/inflections.rb
|
565
|
+
- test/test_app/engines/people/test/dummy/config/initializers/session_store.rb
|
566
|
+
- test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb
|
567
|
+
- test/test_app/engines/people/test/dummy/config/initializers/assets.rb
|
568
|
+
- test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb
|
569
|
+
- test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb
|
570
|
+
- test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb
|
571
|
+
- test/test_app/engines/people/test/dummy/config/routes.rb
|
572
|
+
- test/test_app/engines/people/test/dummy/config/environment.rb
|
573
|
+
- test/test_app/engines/people/test/dummy/config/database.yml
|
574
|
+
- test/test_app/engines/people/test/dummy/config/boot.rb
|
575
|
+
- test/test_app/engines/people/test/dummy/config/environments/test.rb
|
576
|
+
- test/test_app/engines/people/test/dummy/config/environments/development.rb
|
577
|
+
- test/test_app/engines/people/test/dummy/config/environments/production.rb
|
578
|
+
- test/test_app/engines/people/test/dummy/config/secrets.yml
|
579
|
+
- test/test_app/engines/people/test/dummy/db/schema.rb
|
580
|
+
- test/test_app/engines/people/test/dummy/Rakefile
|
581
|
+
- test/test_app/engines/people/test/dummy/README.rdoc
|
582
|
+
- test/test_app/engines/people/test/dummy/app/controllers/application_controller.rb
|
583
|
+
- test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb
|
584
|
+
- test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb
|
585
|
+
- test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js
|
586
|
+
- test/test_app/engines/people/test/dummy/app/assets/stylesheets/application.css
|
587
|
+
- test/test_app/engines/people/test/test_helper.rb
|
588
|
+
- test/test_app/engines/people/test/helpers/people/users_helper_test.rb
|
589
|
+
- test/test_app/engines/people/people.gemspec
|
590
|
+
- test/test_app/engines/people/config/routes.rb
|
591
|
+
- test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb
|
592
|
+
- test/test_app/engines/people/Rakefile
|
593
|
+
- test/test_app/engines/people/Gemfile
|
594
|
+
- test/test_app/engines/people/README.md
|
595
|
+
- test/test_app/engines/people/app/models/people/user.rb
|
596
|
+
- test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb
|
597
|
+
- test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb
|
598
|
+
- test/test_app/engines/people/app/controllers/people/application_controller.rb
|
599
|
+
- test/test_app/engines/people/app/controllers/people/users_controller.rb
|
600
|
+
- test/test_app/engines/people/app/views/layouts/people/default/application.html.erb
|
601
|
+
- test/test_app/engines/people/app/views/people/users/index.html.erb
|
602
|
+
- test/test_app/engines/people/app/views/people/users/_form.html.erb
|
603
|
+
- test/test_app/engines/people/app/views/people/users/new.html.erb
|
604
|
+
- test/test_app/engines/people/app/views/people/users/edit.html.erb
|
605
|
+
- test/test_app/engines/people/app/views/people/users/show.html.erb
|
606
|
+
- test/test_app/engines/people/app/serializers/people/user_serializer.rb
|
607
|
+
- test/test_app/engines/people/app/helpers/people/application_helper.rb
|
608
|
+
- test/test_app/engines/people/app/helpers/people/users_helper.rb
|
609
|
+
- test/test_app/engines/people/app/assets/javascripts/people/application.js
|
610
|
+
- test/test_app/engines/people/app/assets/javascripts/people/users.js
|
611
|
+
- test/test_app/engines/people/app/assets/stylesheets/scaffold.css
|
612
|
+
- test/test_app/engines/people/app/assets/stylesheets/people/users.css
|
613
|
+
- test/test_app/engines/people/app/assets/stylesheets/people/application.css
|
339
614
|
- test/test_app/log/production.log
|
340
615
|
- test/test_app/log/development.log
|
341
616
|
- test/test_app/log/test.log
|
617
|
+
- test/test_app/spec/support/request_helpers.rb
|
618
|
+
- test/test_app/spec/support/factory_girl.rb
|
619
|
+
- test/test_app/spec/rails_helper.rb
|
620
|
+
- test/test_app/spec/controllers/app_index_controller_spec.rb
|
621
|
+
- test/test_app/spec/factories/people_user_factory.rb
|
622
|
+
- test/test_app/spec/engines/people/api/v1/models/user_spec.rb
|
623
|
+
- test/test_app/spec/engines/people/api/v1/requests/user_spec.rb
|
624
|
+
- test/test_app/spec/engines/people/api/v1/routing/user_spec.rb
|
625
|
+
- test/test_app/spec/spec_helper.rb
|
342
626
|
- test/test_engine/Gemfile.lock
|
343
627
|
- test/test_engine/bin/rails
|
344
628
|
- test/test_engine/lib/test_engine/engine.rb
|
@@ -395,6 +679,9 @@ test_files:
|
|
395
679
|
- test/test_engine/app/assets/javascripts/test_engine/application.js
|
396
680
|
- test/test_engine/app/assets/stylesheets/test_engine/application.css
|
397
681
|
- test/integration/navigation_test.rb
|
682
|
+
- test/lib/generators/json_voorhees/app_scaffold_generator_test.rb
|
683
|
+
- test/lib/generators/json_voorhees/engine_scaffold_generator_test.rb
|
684
|
+
- test/lib/generators/json_voorhees/massive_scaffold_generator_test.rb
|
398
685
|
- test/lib/generators/json_voorhees/engine_serializer_generator_test.rb
|
399
686
|
- test/json_voorhees_test.rb
|
400
687
|
- test/dummy/bin/rake
|
@@ -1,10 +0,0 @@
|
|
1
|
-
ENV['RAILS_ENV'] ||= 'test'
|
2
|
-
require File.expand_path('../../config/environment', __FILE__)
|
3
|
-
require 'rails/test_help'
|
4
|
-
|
5
|
-
class ActiveSupport::TestCase
|
6
|
-
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
7
|
-
fixtures :all
|
8
|
-
|
9
|
-
# Add more helper methods to be used by all tests here...
|
10
|
-
end
|