json_voorhees 0.2.3 → 0.3.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 (301) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -14
  3. data/lib/generators/json_voorhees/app_make_admin/USAGE +8 -0
  4. data/lib/generators/json_voorhees/app_make_admin/app_make_admin_generator.rb +39 -0
  5. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/_footer.html.erb +0 -0
  6. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/_header.html.erb +10 -6
  7. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/admin_home_no_user +0 -0
  8. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/admin_home_with_user +0 -0
  9. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/application +0 -0
  10. data/lib/generators/json_voorhees/{setup_app → app_make_admin}/templates/views/application.css.scss +0 -0
  11. data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +2 -2
  12. data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +2 -2
  13. data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +5 -5
  14. data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +1 -1
  15. data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +9 -9
  16. data/lib/generators/json_voorhees/app_make_tests/templates/no_auth_request.rb.erb +16 -16
  17. data/lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb +24 -24
  18. data/lib/generators/json_voorhees/app_make_user/USAGE +8 -0
  19. data/lib/generators/json_voorhees/app_make_user/app_make_user_generator.rb +66 -0
  20. data/lib/generators/json_voorhees/app_make_user/templates/user/include_authorization.rb +4 -0
  21. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/factory_girl.rb +1 -1
  22. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/model_specs.rb +14 -14
  23. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/request_specs.rb +31 -31
  24. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/specs/route_specs.rb +0 -0
  25. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_authorizations.rb +3 -3
  26. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_controller.rb +10 -10
  27. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_model.rb +2 -1
  28. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_routes.rb +0 -0
  29. data/lib/generators/json_voorhees/{setup_app → app_make_user}/templates/user/user_serializer.rb +7 -7
  30. data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +8 -8
  31. data/lib/generators/json_voorhees/engine_create_model/USAGE +8 -0
  32. data/lib/generators/json_voorhees/engine_create_model/engine_create_model_generator.rb +36 -0
  33. data/lib/generators/json_voorhees/engine_create_model/templates/model.rb +8 -0
  34. data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +1 -1
  35. data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +7 -7
  36. data/lib/generators/json_voorhees/engine_scaffold/engine_scaffold_generator.rb +5 -1
  37. data/lib/generators/json_voorhees/massive_scaffold/massive_scaffold_generator.rb +7 -2
  38. data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +69 -129
  39. data/lib/json_voorhees/version.rb +1 -1
  40. data/test/fresh_copy/test_app/Gemfile +46 -0
  41. data/test/fresh_copy/test_app/Gemfile.lock +125 -0
  42. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/README.rdoc +0 -0
  43. data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/Rakefile +1 -1
  44. data/test/{test_app → fresh_copy/test_app}/app/assets/javascripts/application.js +0 -0
  45. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/app/assets/stylesheets/application.css +3 -5
  46. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/app/controllers/application_controller.rb +0 -0
  47. data/test/{test_app → fresh_copy/test_app}/app/helpers/application_helper.rb +0 -0
  48. data/test/{test_app → fresh_copy/test_app}/app/views/layouts/application.html.erb +1 -6
  49. data/test/{test_app → fresh_copy/test_app}/bin/bundle +0 -0
  50. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/bin/rails +0 -0
  51. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/bin/rake +0 -0
  52. data/test/{test_app → fresh_copy/test_app}/config.ru +0 -0
  53. data/test/{test_app → fresh_copy/test_app}/config/application.rb +0 -4
  54. data/test/{test_app → fresh_copy/test_app}/config/boot.rb +0 -0
  55. data/test/{test_app → fresh_copy/test_app}/config/database.yml +8 -8
  56. data/test/{test_app → fresh_copy/test_app}/config/environment.rb +1 -1
  57. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/environments/development.rb +2 -10
  58. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/environments/production.rb +5 -7
  59. data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/config/environments/test.rb +2 -5
  60. data/test/{test_app → fresh_copy/test_app}/config/initializers/backtrace_silencers.rb +0 -0
  61. data/test/{test_app → fresh_copy/test_app}/config/initializers/filter_parameter_logging.rb +0 -0
  62. data/test/{test_app → fresh_copy/test_app}/config/initializers/inflections.rb +0 -0
  63. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/config/initializers/mime_types.rb +1 -0
  64. data/test/fresh_copy/test_app/config/initializers/secret_token.rb +12 -0
  65. data/test/fresh_copy/test_app/config/initializers/session_store.rb +3 -0
  66. data/test/{test_app → fresh_copy/test_app}/config/initializers/wrap_parameters.rb +0 -0
  67. data/test/{test_app → fresh_copy/test_app}/config/locales/en.yml +0 -0
  68. data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/config/routes.rb +1 -1
  69. data/test/{test_app → fresh_copy/test_app}/db/seeds.rb +0 -0
  70. data/test/{test_app/gems/authorization/test/dummy → fresh_copy/test_app}/public/404.html +11 -20
  71. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/public/422.html +11 -20
  72. data/test/{test_app → fresh_copy/test_app}/public/500.html +10 -19
  73. data/test/{test_app/engines/people/test/dummy → fresh_copy/test_app}/public/favicon.ico +0 -0
  74. data/test/{test_app → fresh_copy/test_app}/public/robots.txt +0 -0
  75. data/test/fresh_copy/test_app/test/test_helper.rb +15 -0
  76. data/test/lib/generators/json_voorhees/app_make_admin_generator_test.rb +16 -0
  77. data/test/lib/generators/json_voorhees/app_make_user_generator_test.rb +16 -0
  78. data/test/lib/generators/json_voorhees/engine_create_model_generator_test.rb +16 -0
  79. data/test/lib/generators/json_voorhees/engine_make_model_generator_test.rb +16 -0
  80. metadata +105 -520
  81. data/lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb +0 -3
  82. data/test/test_app/Gemfile +0 -65
  83. data/test/test_app/Gemfile.lock +0 -230
  84. data/test/test_app/README.md +0 -1
  85. data/test/test_app/Rakefile +0 -6
  86. data/test/test_app/app/assets/stylesheets/application.css +0 -15
  87. data/test/test_app/app/controllers/api/v1/api_controller.rb +0 -26
  88. data/test/test_app/app/controllers/app_index_controller.rb +0 -4
  89. data/test/test_app/app/controllers/application_controller.rb +0 -10
  90. data/test/test_app/app/controllers/main_controller.rb +0 -4
  91. data/test/test_app/app/views/app_index/app.html.erb +0 -0
  92. data/test/test_app/app/views/layouts/app_index.html.erb +0 -9
  93. data/test/test_app/app/views/main/admin.html.erb +0 -9
  94. data/test/test_app/bin/rails +0 -8
  95. data/test/test_app/bin/rake +0 -8
  96. data/test/test_app/bin/spring +0 -18
  97. data/test/test_app/config/environments/development.rb +0 -37
  98. data/test/test_app/config/environments/production.rb +0 -82
  99. data/test/test_app/config/environments/test.rb +0 -39
  100. data/test/test_app/config/initializers/assets.rb +0 -8
  101. data/test/test_app/config/initializers/cookies_serializer.rb +0 -3
  102. data/test/test_app/config/initializers/mime_types.rb +0 -4
  103. data/test/test_app/config/initializers/session_store.rb +0 -3
  104. data/test/test_app/config/routes.rb +0 -64
  105. data/test/test_app/config/secrets.yml +0 -22
  106. data/test/test_app/db/development.sqlite3 +0 -0
  107. data/test/test_app/db/migrate/20140905145354_create_people_users.people.rb +0 -12
  108. data/test/test_app/db/migrate/20140905145355_create_arcadex_tokens.arcadex.rb +0 -12
  109. data/test/test_app/db/migrate/20140905145356_add_index_to_token.arcadex.rb +0 -6
  110. data/test/test_app/db/schema.rb +0 -16
  111. data/test/test_app/engines/people/Gemfile +0 -14
  112. data/test/test_app/engines/people/Gemfile.lock +0 -92
  113. data/test/test_app/engines/people/MIT-LICENSE +0 -20
  114. data/test/test_app/engines/people/README.md +0 -1
  115. data/test/test_app/engines/people/Rakefile +0 -34
  116. data/test/test_app/engines/people/app/assets/javascripts/people/application.js +0 -13
  117. data/test/test_app/engines/people/app/assets/javascripts/people/users.js +0 -2
  118. data/test/test_app/engines/people/app/assets/stylesheets/people/application.css +0 -15
  119. data/test/test_app/engines/people/app/assets/stylesheets/people/users.css +0 -4
  120. data/test/test_app/engines/people/app/assets/stylesheets/scaffold.css +0 -56
  121. data/test/test_app/engines/people/app/controllers/people/api/v1/application_controller.rb +0 -5
  122. data/test/test_app/engines/people/app/controllers/people/api/v1/users_controller.rb +0 -124
  123. data/test/test_app/engines/people/app/controllers/people/application_controller.rb +0 -4
  124. data/test/test_app/engines/people/app/controllers/people/users_controller.rb +0 -62
  125. data/test/test_app/engines/people/app/helpers/people/application_helper.rb +0 -4
  126. data/test/test_app/engines/people/app/helpers/people/users_helper.rb +0 -4
  127. data/test/test_app/engines/people/app/models/people/user.rb +0 -26
  128. data/test/test_app/engines/people/app/serializers/people/user_serializer.rb +0 -39
  129. data/test/test_app/engines/people/app/views/layouts/people/default/application.html.erb +0 -14
  130. data/test/test_app/engines/people/app/views/people/users/_form.html.erb +0 -29
  131. data/test/test_app/engines/people/app/views/people/users/edit.html.erb +0 -6
  132. data/test/test_app/engines/people/app/views/people/users/index.html.erb +0 -29
  133. data/test/test_app/engines/people/app/views/people/users/new.html.erb +0 -5
  134. data/test/test_app/engines/people/app/views/people/users/show.html.erb +0 -19
  135. data/test/test_app/engines/people/bin/rails +0 -12
  136. data/test/test_app/engines/people/config/routes.rb +0 -24
  137. data/test/test_app/engines/people/db/migrate/20140905145341_create_people_users.rb +0 -11
  138. data/test/test_app/engines/people/lib/people.rb +0 -4
  139. data/test/test_app/engines/people/lib/people/engine.rb +0 -5
  140. data/test/test_app/engines/people/lib/people/version.rb +0 -3
  141. data/test/test_app/engines/people/lib/tasks/people_tasks.rake +0 -4
  142. data/test/test_app/engines/people/people.gemspec +0 -31
  143. data/test/test_app/engines/people/test/controllers/people/users_controller_test.rb +0 -51
  144. data/test/test_app/engines/people/test/dummy/Rakefile +0 -6
  145. data/test/test_app/engines/people/test/dummy/app/assets/javascripts/application.js +0 -13
  146. data/test/test_app/engines/people/test/dummy/app/helpers/application_helper.rb +0 -2
  147. data/test/test_app/engines/people/test/dummy/app/views/layouts/application.html.erb +0 -14
  148. data/test/test_app/engines/people/test/dummy/bin/bundle +0 -3
  149. data/test/test_app/engines/people/test/dummy/config.ru +0 -4
  150. data/test/test_app/engines/people/test/dummy/config/application.rb +0 -23
  151. data/test/test_app/engines/people/test/dummy/config/boot.rb +0 -5
  152. data/test/test_app/engines/people/test/dummy/config/database.yml +0 -25
  153. data/test/test_app/engines/people/test/dummy/config/environment.rb +0 -5
  154. data/test/test_app/engines/people/test/dummy/config/environments/test.rb +0 -39
  155. data/test/test_app/engines/people/test/dummy/config/initializers/assets.rb +0 -8
  156. data/test/test_app/engines/people/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  157. data/test/test_app/engines/people/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  158. data/test/test_app/engines/people/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  159. data/test/test_app/engines/people/test/dummy/config/initializers/inflections.rb +0 -16
  160. data/test/test_app/engines/people/test/dummy/config/initializers/session_store.rb +0 -3
  161. data/test/test_app/engines/people/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  162. data/test/test_app/engines/people/test/dummy/config/locales/en.yml +0 -23
  163. data/test/test_app/engines/people/test/dummy/config/routes.rb +0 -4
  164. data/test/test_app/engines/people/test/dummy/config/secrets.yml +0 -22
  165. data/test/test_app/engines/people/test/dummy/db/development.sqlite3 +0 -0
  166. data/test/test_app/engines/people/test/dummy/db/schema.rb +0 -24
  167. data/test/test_app/engines/people/test/dummy/log/development.log +0 -0
  168. data/test/test_app/engines/people/test/dummy/public/404.html +0 -67
  169. data/test/test_app/engines/people/test/dummy/public/500.html +0 -66
  170. data/test/test_app/engines/people/test/fixtures/people/users.yml +0 -11
  171. data/test/test_app/engines/people/test/helpers/people/users_helper_test.rb +0 -6
  172. data/test/test_app/engines/people/test/integration/navigation_test.rb +0 -10
  173. data/test/test_app/engines/people/test/models/people/user_test.rb +0 -9
  174. data/test/test_app/engines/people/test/people_test.rb +0 -7
  175. data/test/test_app/engines/people/test/test_helper.rb +0 -15
  176. data/test/test_app/gems/authorization/Gemfile +0 -14
  177. data/test/test_app/gems/authorization/Gemfile.lock +0 -92
  178. data/test/test_app/gems/authorization/MIT-LICENSE +0 -20
  179. data/test/test_app/gems/authorization/README.rdoc +0 -3
  180. data/test/test_app/gems/authorization/Rakefile +0 -32
  181. data/test/test_app/gems/authorization/authorization.gemspec +0 -23
  182. data/test/test_app/gems/authorization/lib/authorization.rb +0 -3
  183. data/test/test_app/gems/authorization/lib/authorization/people/user.rb +0 -82
  184. data/test/test_app/gems/authorization/lib/authorization/version.rb +0 -3
  185. data/test/test_app/gems/authorization/lib/tasks/authorization_tasks.rake +0 -4
  186. data/test/test_app/gems/authorization/test/authorization_test.rb +0 -7
  187. data/test/test_app/gems/authorization/test/dummy/README.rdoc +0 -28
  188. data/test/test_app/gems/authorization/test/dummy/app/assets/javascripts/application.js +0 -13
  189. data/test/test_app/gems/authorization/test/dummy/app/assets/stylesheets/application.css +0 -15
  190. data/test/test_app/gems/authorization/test/dummy/app/controllers/application_controller.rb +0 -5
  191. data/test/test_app/gems/authorization/test/dummy/app/helpers/application_helper.rb +0 -2
  192. data/test/test_app/gems/authorization/test/dummy/app/views/layouts/application.html.erb +0 -14
  193. data/test/test_app/gems/authorization/test/dummy/bin/bundle +0 -3
  194. data/test/test_app/gems/authorization/test/dummy/bin/rails +0 -4
  195. data/test/test_app/gems/authorization/test/dummy/bin/rake +0 -4
  196. data/test/test_app/gems/authorization/test/dummy/config.ru +0 -4
  197. data/test/test_app/gems/authorization/test/dummy/config/application.rb +0 -23
  198. data/test/test_app/gems/authorization/test/dummy/config/boot.rb +0 -5
  199. data/test/test_app/gems/authorization/test/dummy/config/database.yml +0 -25
  200. data/test/test_app/gems/authorization/test/dummy/config/environment.rb +0 -5
  201. data/test/test_app/gems/authorization/test/dummy/config/environments/development.rb +0 -37
  202. data/test/test_app/gems/authorization/test/dummy/config/environments/production.rb +0 -82
  203. data/test/test_app/gems/authorization/test/dummy/config/initializers/assets.rb +0 -8
  204. data/test/test_app/gems/authorization/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  205. data/test/test_app/gems/authorization/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  206. data/test/test_app/gems/authorization/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  207. data/test/test_app/gems/authorization/test/dummy/config/initializers/inflections.rb +0 -16
  208. data/test/test_app/gems/authorization/test/dummy/config/initializers/mime_types.rb +0 -4
  209. data/test/test_app/gems/authorization/test/dummy/config/initializers/session_store.rb +0 -3
  210. data/test/test_app/gems/authorization/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  211. data/test/test_app/gems/authorization/test/dummy/config/locales/en.yml +0 -23
  212. data/test/test_app/gems/authorization/test/dummy/config/secrets.yml +0 -22
  213. data/test/test_app/gems/authorization/test/dummy/public/422.html +0 -67
  214. data/test/test_app/gems/authorization/test/dummy/public/500.html +0 -66
  215. data/test/test_app/gems/authorization/test/dummy/public/favicon.ico +0 -0
  216. data/test/test_app/gems/authorization/test/test_helper.rb +0 -15
  217. data/test/test_app/log/development.log +0 -1803
  218. data/test/test_app/log/production.log +0 -97
  219. data/test/test_app/log/test.log +0 -23337
  220. data/test/test_app/public/404.html +0 -67
  221. data/test/test_app/public/422.html +0 -67
  222. data/test/test_app/public/favicon.ico +0 -0
  223. data/test/test_app/spec/controllers/app_index_controller_spec.rb +0 -12
  224. data/test/test_app/spec/engines/people/api/v1/models/user_spec.rb +0 -59
  225. data/test/test_app/spec/engines/people/api/v1/requests/user_spec.rb +0 -154
  226. data/test/test_app/spec/engines/people/api/v1/routing/user_spec.rb +0 -77
  227. data/test/test_app/spec/factories/people_user_factory.rb +0 -14
  228. data/test/test_app/spec/rails_helper.rb +0 -47
  229. data/test/test_app/spec/spec_helper.rb +0 -78
  230. data/test/test_app/spec/support/factory_girl.rb +0 -16
  231. data/test/test_app/spec/support/request_helpers.rb +0 -7
  232. data/test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e +0 -0
  233. data/test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  234. data/test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59 +0 -0
  235. data/test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  236. data/test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  237. data/test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5 +0 -0
  238. data/test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b +0 -0
  239. data/test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a +0 -0
  240. data/test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f +0 -0
  241. data/test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6 +0 -0
  242. data/test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365 +0 -0
  243. data/test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d +0 -0
  244. data/test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  245. data/test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  246. data/test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  247. data/test/test_engine/Gemfile +0 -17
  248. data/test/test_engine/Gemfile.lock +0 -128
  249. data/test/test_engine/MIT-LICENSE +0 -20
  250. data/test/test_engine/README.md +0 -1
  251. data/test/test_engine/Rakefile +0 -34
  252. data/test/test_engine/app/assets/javascripts/test_engine/application.js +0 -13
  253. data/test/test_engine/app/assets/stylesheets/test_engine/application.css +0 -15
  254. data/test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb +0 -5
  255. data/test/test_engine/app/controllers/test_engine/application_controller.rb +0 -4
  256. data/test/test_engine/app/helpers/test_engine/application_helper.rb +0 -4
  257. data/test/test_engine/app/views/layouts/test_engine/default/application.html.erb +0 -14
  258. data/test/test_engine/bin/rails +0 -12
  259. data/test/test_engine/config/routes.rb +0 -23
  260. data/test/test_engine/lib/tasks/test_engine_tasks.rake +0 -4
  261. data/test/test_engine/lib/test_engine.rb +0 -4
  262. data/test/test_engine/lib/test_engine/engine.rb +0 -5
  263. data/test/test_engine/lib/test_engine/version.rb +0 -3
  264. data/test/test_engine/test/dummy/README.rdoc +0 -28
  265. data/test/test_engine/test/dummy/Rakefile +0 -6
  266. data/test/test_engine/test/dummy/app/assets/javascripts/application.js +0 -13
  267. data/test/test_engine/test/dummy/app/assets/stylesheets/application.css +0 -15
  268. data/test/test_engine/test/dummy/app/controllers/application_controller.rb +0 -5
  269. data/test/test_engine/test/dummy/app/helpers/application_helper.rb +0 -2
  270. data/test/test_engine/test/dummy/app/views/layouts/application.html.erb +0 -14
  271. data/test/test_engine/test/dummy/bin/bundle +0 -3
  272. data/test/test_engine/test/dummy/bin/rails +0 -4
  273. data/test/test_engine/test/dummy/bin/rake +0 -4
  274. data/test/test_engine/test/dummy/config.ru +0 -4
  275. data/test/test_engine/test/dummy/config/application.rb +0 -23
  276. data/test/test_engine/test/dummy/config/boot.rb +0 -5
  277. data/test/test_engine/test/dummy/config/database.yml +0 -25
  278. data/test/test_engine/test/dummy/config/environment.rb +0 -5
  279. data/test/test_engine/test/dummy/config/environments/development.rb +0 -37
  280. data/test/test_engine/test/dummy/config/environments/production.rb +0 -82
  281. data/test/test_engine/test/dummy/config/environments/test.rb +0 -39
  282. data/test/test_engine/test/dummy/config/initializers/assets.rb +0 -8
  283. data/test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  284. data/test/test_engine/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  285. data/test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  286. data/test/test_engine/test/dummy/config/initializers/inflections.rb +0 -16
  287. data/test/test_engine/test/dummy/config/initializers/mime_types.rb +0 -4
  288. data/test/test_engine/test/dummy/config/initializers/session_store.rb +0 -3
  289. data/test/test_engine/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  290. data/test/test_engine/test/dummy/config/locales/en.yml +0 -23
  291. data/test/test_engine/test/dummy/config/routes.rb +0 -4
  292. data/test/test_engine/test/dummy/config/secrets.yml +0 -22
  293. data/test/test_engine/test/dummy/log/development.log +0 -0
  294. data/test/test_engine/test/dummy/public/404.html +0 -67
  295. data/test/test_engine/test/dummy/public/422.html +0 -67
  296. data/test/test_engine/test/dummy/public/500.html +0 -66
  297. data/test/test_engine/test/dummy/public/favicon.ico +0 -0
  298. data/test/test_engine/test/integration/navigation_test.rb +0 -10
  299. data/test/test_engine/test/test_engine_test.rb +0 -7
  300. data/test/test_engine/test/test_helper.rb +0 -15
  301. data/test/test_engine/test_engine.gemspec +0 -31
@@ -1,3 +0,0 @@
1
- require 'authorization/v1/people/user'
2
- module Authorization
3
- end
@@ -1,65 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'people', :path => "engines/people"
4
-
5
-
6
-
7
- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
8
- gem 'rails', '4.1.5'
9
- # Use sqlite3 as the database for Active Record
10
- gem 'sqlite3'
11
- # Use SCSS for stylesheets
12
- gem 'sass-rails', '~> 4.0.3'
13
- # Use Uglifier as compressor for JavaScript assets
14
- gem 'uglifier', '>= 1.3.0'
15
- # Use CoffeeScript for .js.coffee assets and views
16
- gem 'coffee-rails', '~> 4.0.0'
17
- # See https://github.com/sstephenson/execjs#readme for more supported runtimes
18
- # gem 'therubyracer', platforms: :ruby
19
-
20
- # Use jquery as the JavaScript library
21
- gem 'jquery-rails'
22
- # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
23
- gem 'turbolinks'
24
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
25
- gem 'jbuilder', '~> 2.0'
26
- # bundle exec rake doc:rails generates the API under doc/api.
27
- gem 'sdoc', '~> 0.4.0', group: :doc
28
-
29
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
30
- gem 'spring', group: :development
31
-
32
- # Use ActiveModel has_secure_password
33
- # gem 'bcrypt', '~> 3.1.7'
34
-
35
- # Use unicorn as the app server
36
- # gem 'unicorn'
37
-
38
- # Use Capistrano for deployment
39
- # gem 'capistrano-rails', group: :development
40
-
41
- # Use debugger
42
- # gem 'debugger', group: [:development, :test]
43
-
44
- #gem "json_voorhees", :git => "https://github.com/cleor41/json_voorhees.git"
45
- gem "json_voorhees", :path => "../../../json_voorhees"
46
-
47
- group :development, :test do
48
- gem "figaro", "~> 0.7.0"
49
- gem "annotate", ">=2.6.0"
50
- gem "better_errors", "~> 1.1.0"
51
- gem "binding_of_caller", "~> 0.7.1"
52
- gem "rspec-rails", "~> 3.0.0"
53
- gem "byebug", "~> 3.2.0"
54
- gem "factory_girl_rails", "~> 4.0"
55
- gem "database_cleaner", "~> 1.3.0"
56
- end
57
-
58
- gem "authorization", path: "gems/authorization"
59
- gem "active_model_serializers", "~> 0.8.0"
60
- gem "rails-api"
61
- gem "kaminari"
62
- gem "bcrypt", "~> 3.1.7"
63
- gem "type_cartographer"
64
- gem "devise", "~> 3.2.4"
65
- gem "arcadex", "~> 1.0.4"
@@ -1,230 +0,0 @@
1
- PATH
2
- remote: ../../../json_voorhees
3
- specs:
4
- json_voorhees (0.1.0)
5
- rails (>= 4.0.0)
6
-
7
- PATH
8
- remote: engines/people
9
- specs:
10
- people (0.0.1)
11
- active_model_serializers (~> 0.8.0)
12
- arcadex
13
- bcrypt (~> 3.1.7)
14
- rails (~> 4.1.5)
15
- rails-api
16
- type_cartographer
17
-
18
- PATH
19
- remote: gems/authorization
20
- specs:
21
- authorization (0.0.1)
22
- rails (~> 4.1.5)
23
-
24
- GEM
25
- remote: https://rubygems.org/
26
- specs:
27
- actionmailer (4.1.5)
28
- actionpack (= 4.1.5)
29
- actionview (= 4.1.5)
30
- mail (~> 2.5.4)
31
- actionpack (4.1.5)
32
- actionview (= 4.1.5)
33
- activesupport (= 4.1.5)
34
- rack (~> 1.5.2)
35
- rack-test (~> 0.6.2)
36
- actionview (4.1.5)
37
- activesupport (= 4.1.5)
38
- builder (~> 3.1)
39
- erubis (~> 2.7.0)
40
- active_model_serializers (0.8.2)
41
- activemodel (>= 3.0)
42
- activemodel (4.1.5)
43
- activesupport (= 4.1.5)
44
- builder (~> 3.1)
45
- activerecord (4.1.5)
46
- activemodel (= 4.1.5)
47
- activesupport (= 4.1.5)
48
- arel (~> 5.0.0)
49
- activesupport (4.1.5)
50
- i18n (~> 0.6, >= 0.6.9)
51
- json (~> 1.7, >= 1.7.7)
52
- minitest (~> 5.1)
53
- thread_safe (~> 0.1)
54
- tzinfo (~> 1.1)
55
- annotate (2.6.5)
56
- activerecord (>= 2.3.0)
57
- rake (>= 0.8.7)
58
- arcadex (1.0.4)
59
- devise (>= 3.2.4)
60
- rails (>= 4.0.0)
61
- arel (5.0.1.20140414130214)
62
- bcrypt (3.1.7)
63
- better_errors (1.1.0)
64
- coderay (>= 1.0.0)
65
- erubis (>= 2.6.6)
66
- binding_of_caller (0.7.2)
67
- debug_inspector (>= 0.0.1)
68
- builder (3.2.2)
69
- byebug (3.2.0)
70
- columnize (~> 0.8)
71
- debugger-linecache (~> 1.2)
72
- coderay (1.1.0)
73
- coffee-rails (4.0.1)
74
- coffee-script (>= 2.2.0)
75
- railties (>= 4.0.0, < 5.0)
76
- coffee-script (2.3.0)
77
- coffee-script-source
78
- execjs
79
- coffee-script-source (1.8.0)
80
- columnize (0.8.9)
81
- database_cleaner (1.3.0)
82
- debug_inspector (0.0.2)
83
- debugger-linecache (1.2.0)
84
- devise (3.2.4)
85
- bcrypt (~> 3.0)
86
- orm_adapter (~> 0.1)
87
- railties (>= 3.2.6, < 5)
88
- thread_safe (~> 0.1)
89
- warden (~> 1.2.3)
90
- diff-lcs (1.2.5)
91
- erubis (2.7.0)
92
- execjs (2.2.1)
93
- factory_girl (4.4.0)
94
- activesupport (>= 3.0.0)
95
- factory_girl_rails (4.4.1)
96
- factory_girl (~> 4.4.0)
97
- railties (>= 3.0.0)
98
- figaro (0.7.0)
99
- bundler (~> 1.0)
100
- rails (>= 3, < 5)
101
- hike (1.2.3)
102
- i18n (0.6.11)
103
- jbuilder (2.1.3)
104
- activesupport (>= 3.0.0, < 5)
105
- multi_json (~> 1.2)
106
- jquery-rails (3.1.2)
107
- railties (>= 3.0, < 5.0)
108
- thor (>= 0.14, < 2.0)
109
- json (1.8.1)
110
- kaminari (0.16.1)
111
- actionpack (>= 3.0.0)
112
- activesupport (>= 3.0.0)
113
- mail (2.5.4)
114
- mime-types (~> 1.16)
115
- treetop (~> 1.4.8)
116
- mime-types (1.25.1)
117
- minitest (5.4.1)
118
- multi_json (1.10.1)
119
- orm_adapter (0.5.0)
120
- polyglot (0.3.5)
121
- rack (1.5.2)
122
- rack-test (0.6.2)
123
- rack (>= 1.0)
124
- rails (4.1.5)
125
- actionmailer (= 4.1.5)
126
- actionpack (= 4.1.5)
127
- actionview (= 4.1.5)
128
- activemodel (= 4.1.5)
129
- activerecord (= 4.1.5)
130
- activesupport (= 4.1.5)
131
- bundler (>= 1.3.0, < 2.0)
132
- railties (= 4.1.5)
133
- sprockets-rails (~> 2.0)
134
- rails-api (0.2.1)
135
- actionpack (>= 3.2.11)
136
- railties (>= 3.2.11)
137
- railties (4.1.5)
138
- actionpack (= 4.1.5)
139
- activesupport (= 4.1.5)
140
- rake (>= 0.8.7)
141
- thor (>= 0.18.1, < 2.0)
142
- rake (10.3.2)
143
- rdoc (4.1.1)
144
- json (~> 1.4)
145
- rspec-core (3.0.4)
146
- rspec-support (~> 3.0.0)
147
- rspec-expectations (3.0.4)
148
- diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.0.0)
150
- rspec-mocks (3.0.4)
151
- rspec-support (~> 3.0.0)
152
- rspec-rails (3.0.2)
153
- actionpack (>= 3.0)
154
- activesupport (>= 3.0)
155
- railties (>= 3.0)
156
- rspec-core (~> 3.0.0)
157
- rspec-expectations (~> 3.0.0)
158
- rspec-mocks (~> 3.0.0)
159
- rspec-support (~> 3.0.0)
160
- rspec-support (3.0.4)
161
- sass (3.2.19)
162
- sass-rails (4.0.3)
163
- railties (>= 4.0.0, < 5.0)
164
- sass (~> 3.2.0)
165
- sprockets (~> 2.8, <= 2.11.0)
166
- sprockets-rails (~> 2.0)
167
- sdoc (0.4.1)
168
- json (~> 1.7, >= 1.7.7)
169
- rdoc (~> 4.0)
170
- spring (1.1.3)
171
- sprockets (2.11.0)
172
- hike (~> 1.2)
173
- multi_json (~> 1.0)
174
- rack (~> 1.0)
175
- tilt (~> 1.1, != 1.3.0)
176
- sprockets-rails (2.1.4)
177
- actionpack (>= 3.0)
178
- activesupport (>= 3.0)
179
- sprockets (~> 2.8)
180
- sqlite3 (1.3.9)
181
- thor (0.19.1)
182
- thread_safe (0.3.4)
183
- tilt (1.4.1)
184
- treetop (1.4.15)
185
- polyglot
186
- polyglot (>= 0.3.1)
187
- turbolinks (2.3.0)
188
- coffee-rails
189
- type_cartographer (1.0.0)
190
- rails (>= 4.0.0)
191
- tzinfo (1.2.2)
192
- thread_safe (~> 0.1)
193
- uglifier (2.5.3)
194
- execjs (>= 0.3.0)
195
- json (>= 1.8.0)
196
- warden (1.2.3)
197
- rack (>= 1.0)
198
-
199
- PLATFORMS
200
- ruby
201
-
202
- DEPENDENCIES
203
- active_model_serializers (~> 0.8.0)
204
- annotate (>= 2.6.0)
205
- arcadex (~> 1.0.4)
206
- authorization!
207
- bcrypt (~> 3.1.7)
208
- better_errors (~> 1.1.0)
209
- binding_of_caller (~> 0.7.1)
210
- byebug (~> 3.2.0)
211
- coffee-rails (~> 4.0.0)
212
- database_cleaner (~> 1.3.0)
213
- devise (~> 3.2.4)
214
- factory_girl_rails (~> 4.0)
215
- figaro (~> 0.7.0)
216
- jbuilder (~> 2.0)
217
- jquery-rails
218
- json_voorhees!
219
- kaminari
220
- people!
221
- rails (= 4.1.5)
222
- rails-api
223
- rspec-rails (~> 3.0.0)
224
- sass-rails (~> 4.0.3)
225
- sdoc (~> 0.4.0)
226
- spring
227
- sqlite3
228
- turbolinks
229
- type_cartographer
230
- uglifier (>= 1.3.0)
@@ -1 +0,0 @@
1
- # Describe your application here
@@ -1,6 +0,0 @@
1
- # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
-
4
- require File.expand_path('../config/application', __FILE__)
5
-
6
- Rails.application.load_tasks
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any styles
10
- * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
- * file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,26 +0,0 @@
1
- class Api::V1::ApiController < ::ActionController::API
2
-
3
- before_action :authenticate_user
4
-
5
- private
6
-
7
- def authenticate_user
8
- #["current_user","current_token"] Make this true to check for email also
9
- @instance_hash = ::Arcadex.full_authentication(params,request,false)
10
- if @instance_hash.nil?
11
- render :json => {errors: "User is not logged in, register or log in"} , status: :unauthorized
12
- end
13
- end
14
-
15
- def current_user
16
- if !@instance_hash.nil?
17
- @instance_hash["current_user"]
18
- end
19
- end
20
-
21
- def current_token
22
- if !@instance_hash.nil?
23
- @instance_hash["current_token"]
24
- end
25
- end
26
- end
@@ -1,4 +0,0 @@
1
- class AppIndexController < ActionController::Base
2
- def app
3
- end
4
- end
@@ -1,10 +0,0 @@
1
- class ApplicationController < ActionController::Base
2
- # Prevent CSRF attacks by raising an exception.
3
- # For APIs, you may want to use :null_session instead.
4
- protect_from_forgery with: :exception
5
-
6
- #This needs to be put inside a config file. but this is good for now
7
- #This only requires the password for the admin section of the website
8
- http_basic_authenticate_with name: "admin", password: "password"
9
-
10
- end
@@ -1,4 +0,0 @@
1
- class MainController < ApplicationController
2
- def admin
3
- end
4
- end
File without changes
@@ -1,9 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title></title>
5
- </head>
6
- <body>
7
- <%= yield %>
8
- </body>
9
- </html>
@@ -1,9 +0,0 @@
1
- <h1>ADMIN</h1>
2
-
3
- <ul>
4
- <li>People Engine</li>
5
- <li><%= link_to 'user_index', people.users_path %></li>
6
-
7
- <li>Arcadex Engine</li>
8
- <li><%= link_to 'token_index', arcadex.tokens_path %></li>
9
- </ul>
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
- begin
3
- load File.expand_path("../spring", __FILE__)
4
- rescue LoadError
5
- end
6
- APP_PATH = File.expand_path('../../config/application', __FILE__)
7
- require_relative '../config/boot'
8
- require 'rails/commands'
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
- begin
3
- load File.expand_path("../spring", __FILE__)
4
- rescue LoadError
5
- end
6
- require_relative '../config/boot'
7
- require 'rake'
8
- Rake.application.run
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # This file loads spring without using Bundler, in order to be fast
4
- # It gets overwritten when you run the `spring binstub` command
5
-
6
- unless defined?(Spring)
7
- require "rubygems"
8
- require "bundler"
9
-
10
- if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ spring \((.*?)\)$.*?^$/m)
11
- ENV["GEM_PATH"] = ([Bundler.bundle_path.to_s] + Gem.path).join(File::PATH_SEPARATOR)
12
- ENV["GEM_HOME"] = ""
13
- Gem.paths = ENV
14
-
15
- gem "spring", match[1]
16
- require "spring/binstub"
17
- end
18
- end