json_voorhees 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +75 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/json_voorhees/application.js +13 -0
  6. data/app/assets/stylesheets/json_voorhees/application.css +15 -0
  7. data/app/controllers/json_voorhees/application_controller.rb +4 -0
  8. data/app/helpers/json_voorhees/application_helper.rb +4 -0
  9. data/app/views/layouts/json_voorhees/application.html.erb +14 -0
  10. data/config/routes.rb +2 -0
  11. data/lib/generators/json_voorhees/app_make_authorizations/USAGE +10 -0
  12. data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +39 -0
  13. data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +51 -0
  14. data/lib/generators/json_voorhees/app_make_tests/USAGE +9 -0
  15. data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +51 -0
  16. data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +9 -0
  17. data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +30 -0
  18. data/lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb +102 -0
  19. data/lib/generators/json_voorhees/app_make_tests/templates/routing.rb.erb +47 -0
  20. data/lib/generators/json_voorhees/engine_create_controller/USAGE +12 -0
  21. data/lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb +40 -0
  22. data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +98 -0
  23. data/lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb +61 -0
  24. data/lib/generators/json_voorhees/engine_create_serializer/USAGE +9 -0
  25. data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +34 -0
  26. data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +23 -0
  27. data/lib/generators/json_voorhees/setup_app/USAGE +9 -0
  28. data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +207 -0
  29. data/lib/generators/json_voorhees/setup_app/templates/api_controller_no_arcadex.rb +2 -0
  30. data/lib/generators/json_voorhees/setup_app/templates/api_controller_with_arcadex.rb +26 -0
  31. data/lib/generators/json_voorhees/setup_app/templates/app_index_controller.rb +4 -0
  32. data/lib/generators/json_voorhees/setup_app/templates/hidden_rspec.rb +3 -0
  33. data/lib/generators/json_voorhees/setup_app/templates/json_helpers.rb +7 -0
  34. data/lib/generators/json_voorhees/setup_app/templates/rspec_factory_girl.rb +16 -0
  35. data/lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb +3 -0
  36. data/lib/generators/json_voorhees/setup_app/templates/user/specs/factory_girl.rb +14 -0
  37. data/lib/generators/json_voorhees/setup_app/templates/user/specs/model_specs.rb +59 -0
  38. data/lib/generators/json_voorhees/setup_app/templates/user/specs/request_specs.rb +154 -0
  39. data/lib/generators/json_voorhees/setup_app/templates/user/specs/route_specs.rb +77 -0
  40. data/lib/generators/json_voorhees/setup_app/templates/user/user_authorizations.rb +82 -0
  41. data/lib/generators/json_voorhees/setup_app/templates/user/user_controller.rb +124 -0
  42. data/lib/generators/json_voorhees/setup_app/templates/user/user_model.rb +26 -0
  43. data/lib/generators/json_voorhees/setup_app/templates/user/user_routes.rb +24 -0
  44. data/lib/generators/json_voorhees/setup_app/templates/user/user_serializer.rb +39 -0
  45. data/lib/generators/json_voorhees/setup_app/templates/views/admin_no_user +6 -0
  46. data/lib/generators/json_voorhees/setup_app/templates/views/admin_with_user +9 -0
  47. data/lib/generators/json_voorhees/setup_app/templates/views/app +0 -0
  48. data/lib/generators/json_voorhees/setup_app/templates/views/app_index +9 -0
  49. data/lib/generators/json_voorhees/setup_app/templates/views/application +19 -0
  50. data/lib/generators/json_voorhees/setup_engine/USAGE +8 -0
  51. data/lib/generators/json_voorhees/setup_engine/setup_engine_generator.rb +81 -0
  52. data/lib/generators/json_voorhees/setup_engine/templates/api_controller.rb.erb +5 -0
  53. data/lib/generators/json_voorhees/setup_engine/templates/application_controller.rb.erb +4 -0
  54. data/lib/json_voorhees/engine.rb +5 -0
  55. data/lib/json_voorhees/version.rb +3 -0
  56. data/lib/json_voorhees.rb +4 -0
  57. data/lib/tasks/json_voorhees_tasks.rake +4 -0
  58. data/test/dummy/README.rdoc +28 -0
  59. data/test/dummy/Rakefile +6 -0
  60. data/test/dummy/app/assets/javascripts/application.js +13 -0
  61. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  62. data/test/dummy/app/controllers/application_controller.rb +5 -0
  63. data/test/dummy/app/helpers/application_helper.rb +2 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  65. data/test/dummy/bin/bundle +3 -0
  66. data/test/dummy/bin/rails +4 -0
  67. data/test/dummy/bin/rake +4 -0
  68. data/test/dummy/config/application.rb +23 -0
  69. data/test/dummy/config/boot.rb +5 -0
  70. data/test/dummy/config/database.yml +25 -0
  71. data/test/dummy/config/environment.rb +5 -0
  72. data/test/dummy/config/environments/development.rb +37 -0
  73. data/test/dummy/config/environments/production.rb +82 -0
  74. data/test/dummy/config/environments/test.rb +39 -0
  75. data/test/dummy/config/initializers/assets.rb +8 -0
  76. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  77. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  78. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/test/dummy/config/initializers/inflections.rb +16 -0
  80. data/test/dummy/config/initializers/mime_types.rb +4 -0
  81. data/test/dummy/config/initializers/session_store.rb +3 -0
  82. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  83. data/test/dummy/config/locales/en.yml +23 -0
  84. data/test/dummy/config/routes.rb +4 -0
  85. data/test/dummy/config/secrets.yml +22 -0
  86. data/test/dummy/config.ru +4 -0
  87. data/test/dummy/log/development.log +0 -0
  88. data/test/dummy/public/404.html +67 -0
  89. data/test/dummy/public/422.html +67 -0
  90. data/test/dummy/public/500.html +66 -0
  91. data/test/dummy/public/favicon.ico +0 -0
  92. data/test/integration/navigation_test.rb +10 -0
  93. data/test/json_voorhees_test.rb +7 -0
  94. data/test/lib/generators/json_voorhees/engine_serializer_generator_test.rb +16 -0
  95. data/test/test_app/Gemfile +42 -0
  96. data/test/test_app/Gemfile.lock +132 -0
  97. data/test/test_app/README.rdoc +28 -0
  98. data/test/test_app/Rakefile +6 -0
  99. data/test/test_app/app/assets/javascripts/application.js +16 -0
  100. data/test/test_app/app/assets/stylesheets/application.css +15 -0
  101. data/test/test_app/app/controllers/application_controller.rb +5 -0
  102. data/test/test_app/app/helpers/application_helper.rb +2 -0
  103. data/test/test_app/app/views/layouts/application.html.erb +14 -0
  104. data/test/test_app/bin/bundle +3 -0
  105. data/test/test_app/bin/rails +8 -0
  106. data/test/test_app/bin/rake +8 -0
  107. data/test/test_app/bin/spring +18 -0
  108. data/test/test_app/config/application.rb +23 -0
  109. data/test/test_app/config/boot.rb +4 -0
  110. data/test/test_app/config/database.yml +25 -0
  111. data/test/test_app/config/environment.rb +5 -0
  112. data/test/test_app/config/environments/development.rb +37 -0
  113. data/test/test_app/config/environments/production.rb +82 -0
  114. data/test/test_app/config/environments/test.rb +39 -0
  115. data/test/test_app/config/initializers/assets.rb +8 -0
  116. data/test/test_app/config/initializers/backtrace_silencers.rb +7 -0
  117. data/test/test_app/config/initializers/cookies_serializer.rb +3 -0
  118. data/test/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  119. data/test/test_app/config/initializers/inflections.rb +16 -0
  120. data/test/test_app/config/initializers/mime_types.rb +4 -0
  121. data/test/test_app/config/initializers/session_store.rb +3 -0
  122. data/test/test_app/config/initializers/wrap_parameters.rb +14 -0
  123. data/test/test_app/config/locales/en.yml +23 -0
  124. data/test/test_app/config/routes.rb +56 -0
  125. data/test/test_app/config/secrets.yml +22 -0
  126. data/test/test_app/config.ru +4 -0
  127. data/test/test_app/db/development.sqlite3 +0 -0
  128. data/test/test_app/db/schema.rb +16 -0
  129. data/test/test_app/db/seeds.rb +7 -0
  130. data/test/test_app/log/development.log +1517 -0
  131. data/test/test_app/log/production.log +68 -0
  132. data/test/test_app/log/test.log +10482 -0
  133. data/test/test_app/public/404.html +67 -0
  134. data/test/test_app/public/422.html +67 -0
  135. data/test/test_app/public/500.html +66 -0
  136. data/test/test_app/public/favicon.ico +0 -0
  137. data/test/test_app/public/robots.txt +5 -0
  138. data/test/test_app/test/test_helper.rb +10 -0
  139. data/test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e +0 -0
  140. data/test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  141. data/test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59 +0 -0
  142. data/test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  143. data/test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  144. data/test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5 +0 -0
  145. data/test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b +0 -0
  146. data/test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a +0 -0
  147. data/test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f +0 -0
  148. data/test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6 +0 -0
  149. data/test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365 +0 -0
  150. data/test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d +0 -0
  151. data/test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  152. data/test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  153. data/test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  154. data/test/test_engine/Gemfile +17 -0
  155. data/test/test_engine/Gemfile.lock +128 -0
  156. data/test/test_engine/MIT-LICENSE +20 -0
  157. data/test/test_engine/README.md +1 -0
  158. data/test/test_engine/Rakefile +34 -0
  159. data/test/test_engine/app/assets/javascripts/test_engine/application.js +13 -0
  160. data/test/test_engine/app/assets/stylesheets/test_engine/application.css +15 -0
  161. data/test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb +5 -0
  162. data/test/test_engine/app/controllers/test_engine/application_controller.rb +4 -0
  163. data/test/test_engine/app/helpers/test_engine/application_helper.rb +4 -0
  164. data/test/test_engine/app/views/layouts/test_engine/default/application.html.erb +14 -0
  165. data/test/test_engine/bin/rails +12 -0
  166. data/test/test_engine/config/routes.rb +23 -0
  167. data/test/test_engine/lib/tasks/test_engine_tasks.rake +4 -0
  168. data/test/test_engine/lib/test_engine/engine.rb +5 -0
  169. data/test/test_engine/lib/test_engine/version.rb +3 -0
  170. data/test/test_engine/lib/test_engine.rb +4 -0
  171. data/test/test_engine/test/dummy/README.rdoc +28 -0
  172. data/test/test_engine/test/dummy/Rakefile +6 -0
  173. data/test/test_engine/test/dummy/app/assets/javascripts/application.js +13 -0
  174. data/test/test_engine/test/dummy/app/assets/stylesheets/application.css +15 -0
  175. data/test/test_engine/test/dummy/app/controllers/application_controller.rb +5 -0
  176. data/test/test_engine/test/dummy/app/helpers/application_helper.rb +2 -0
  177. data/test/test_engine/test/dummy/app/views/layouts/application.html.erb +14 -0
  178. data/test/test_engine/test/dummy/bin/bundle +3 -0
  179. data/test/test_engine/test/dummy/bin/rails +4 -0
  180. data/test/test_engine/test/dummy/bin/rake +4 -0
  181. data/test/test_engine/test/dummy/config/application.rb +23 -0
  182. data/test/test_engine/test/dummy/config/boot.rb +5 -0
  183. data/test/test_engine/test/dummy/config/database.yml +25 -0
  184. data/test/test_engine/test/dummy/config/environment.rb +5 -0
  185. data/test/test_engine/test/dummy/config/environments/development.rb +37 -0
  186. data/test/test_engine/test/dummy/config/environments/production.rb +82 -0
  187. data/test/test_engine/test/dummy/config/environments/test.rb +39 -0
  188. data/test/test_engine/test/dummy/config/initializers/assets.rb +8 -0
  189. data/test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  190. data/test/test_engine/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  191. data/test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  192. data/test/test_engine/test/dummy/config/initializers/inflections.rb +16 -0
  193. data/test/test_engine/test/dummy/config/initializers/mime_types.rb +4 -0
  194. data/test/test_engine/test/dummy/config/initializers/session_store.rb +3 -0
  195. data/test/test_engine/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  196. data/test/test_engine/test/dummy/config/locales/en.yml +23 -0
  197. data/test/test_engine/test/dummy/config/routes.rb +4 -0
  198. data/test/test_engine/test/dummy/config/secrets.yml +22 -0
  199. data/test/test_engine/test/dummy/config.ru +4 -0
  200. data/test/test_engine/test/dummy/log/development.log +0 -0
  201. data/test/test_engine/test/dummy/public/404.html +67 -0
  202. data/test/test_engine/test/dummy/public/422.html +67 -0
  203. data/test/test_engine/test/dummy/public/500.html +66 -0
  204. data/test/test_engine/test/dummy/public/favicon.ico +0 -0
  205. data/test/test_engine/test/integration/navigation_test.rb +10 -0
  206. data/test/test_engine/test/test_engine_test.rb +7 -0
  207. data/test/test_engine/test/test_helper.rb +15 -0
  208. data/test/test_engine/test_engine.gemspec +31 -0
  209. data/test/test_helper.rb +15 -0
  210. metadata +434 -0
@@ -0,0 +1,31 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "test_engine/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |s|
8
+ s.name = "test_engine"
9
+ s.version = TestEngine::VERSION
10
+ s.authors = ["TODO: Your name"]
11
+ s.email = ["TODO: Your email"]
12
+ s.homepage = "TODO"
13
+ s.summary = "TODO: Summary of TestEngine."
14
+ s.description = "TODO: Description of TestEngine."
15
+ s.license = "MIT"
16
+
17
+ s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
18
+ s.test_files = Dir["test/**/*"]
19
+
20
+ s.add_dependency "rails-api"
21
+ s.add_dependency "type_cartographer"
22
+ s.add_dependency "arcadex"
23
+ s.add_dependency "active_model_serializers", "~> 0.8.0"
24
+ s.add_dependency "bcrypt", "~> 3.1.7"
25
+ s.add_development_dependency "annotate", ">=2.6.0"
26
+
27
+
28
+ s.add_dependency "rails", "~> 4.1.5"
29
+
30
+ s.add_development_dependency "sqlite3"
31
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,434 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: json_voorhees
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Cleophus Robinson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
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: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Uses a series of generators to get a project set with all of the boilerplates
42
+ finished. It uses rails-api and ams to create a framework that I use on all of my
43
+ api backends
44
+ email:
45
+ - CleoR41@gmail.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - MIT-LICENSE
51
+ - README.md
52
+ - Rakefile
53
+ - app/assets/javascripts/json_voorhees/application.js
54
+ - app/assets/stylesheets/json_voorhees/application.css
55
+ - app/controllers/json_voorhees/application_controller.rb
56
+ - app/helpers/json_voorhees/application_helper.rb
57
+ - app/views/layouts/json_voorhees/application.html.erb
58
+ - config/routes.rb
59
+ - lib/generators/json_voorhees/app_make_authorizations/USAGE
60
+ - lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb
61
+ - lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb
62
+ - lib/generators/json_voorhees/app_make_tests/USAGE
63
+ - lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb
64
+ - lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb
65
+ - lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb
66
+ - lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb
67
+ - lib/generators/json_voorhees/app_make_tests/templates/routing.rb.erb
68
+ - lib/generators/json_voorhees/engine_create_controller/USAGE
69
+ - lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb
70
+ - lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb
71
+ - lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb
72
+ - lib/generators/json_voorhees/engine_create_serializer/USAGE
73
+ - lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb
74
+ - lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb
75
+ - lib/generators/json_voorhees/setup_app/USAGE
76
+ - lib/generators/json_voorhees/setup_app/setup_app_generator.rb
77
+ - lib/generators/json_voorhees/setup_app/templates/api_controller_no_arcadex.rb
78
+ - lib/generators/json_voorhees/setup_app/templates/api_controller_with_arcadex.rb
79
+ - lib/generators/json_voorhees/setup_app/templates/app_index_controller.rb
80
+ - lib/generators/json_voorhees/setup_app/templates/hidden_rspec.rb
81
+ - lib/generators/json_voorhees/setup_app/templates/json_helpers.rb
82
+ - lib/generators/json_voorhees/setup_app/templates/rspec_factory_girl.rb
83
+ - lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb
84
+ - lib/generators/json_voorhees/setup_app/templates/user/specs/factory_girl.rb
85
+ - lib/generators/json_voorhees/setup_app/templates/user/specs/model_specs.rb
86
+ - lib/generators/json_voorhees/setup_app/templates/user/specs/request_specs.rb
87
+ - lib/generators/json_voorhees/setup_app/templates/user/specs/route_specs.rb
88
+ - lib/generators/json_voorhees/setup_app/templates/user/user_authorizations.rb
89
+ - lib/generators/json_voorhees/setup_app/templates/user/user_controller.rb
90
+ - lib/generators/json_voorhees/setup_app/templates/user/user_model.rb
91
+ - lib/generators/json_voorhees/setup_app/templates/user/user_routes.rb
92
+ - lib/generators/json_voorhees/setup_app/templates/user/user_serializer.rb
93
+ - lib/generators/json_voorhees/setup_app/templates/views/admin_no_user
94
+ - lib/generators/json_voorhees/setup_app/templates/views/admin_with_user
95
+ - lib/generators/json_voorhees/setup_app/templates/views/app
96
+ - lib/generators/json_voorhees/setup_app/templates/views/app_index
97
+ - lib/generators/json_voorhees/setup_app/templates/views/application
98
+ - lib/generators/json_voorhees/setup_engine/USAGE
99
+ - lib/generators/json_voorhees/setup_engine/setup_engine_generator.rb
100
+ - lib/generators/json_voorhees/setup_engine/templates/api_controller.rb.erb
101
+ - lib/generators/json_voorhees/setup_engine/templates/application_controller.rb.erb
102
+ - lib/json_voorhees.rb
103
+ - lib/json_voorhees/engine.rb
104
+ - lib/json_voorhees/version.rb
105
+ - lib/tasks/json_voorhees_tasks.rake
106
+ - test/dummy/README.rdoc
107
+ - test/dummy/Rakefile
108
+ - test/dummy/app/assets/javascripts/application.js
109
+ - test/dummy/app/assets/stylesheets/application.css
110
+ - test/dummy/app/controllers/application_controller.rb
111
+ - test/dummy/app/helpers/application_helper.rb
112
+ - test/dummy/app/views/layouts/application.html.erb
113
+ - test/dummy/bin/bundle
114
+ - test/dummy/bin/rails
115
+ - test/dummy/bin/rake
116
+ - test/dummy/config.ru
117
+ - test/dummy/config/application.rb
118
+ - test/dummy/config/boot.rb
119
+ - test/dummy/config/database.yml
120
+ - test/dummy/config/environment.rb
121
+ - test/dummy/config/environments/development.rb
122
+ - test/dummy/config/environments/production.rb
123
+ - test/dummy/config/environments/test.rb
124
+ - test/dummy/config/initializers/assets.rb
125
+ - test/dummy/config/initializers/backtrace_silencers.rb
126
+ - test/dummy/config/initializers/cookies_serializer.rb
127
+ - test/dummy/config/initializers/filter_parameter_logging.rb
128
+ - test/dummy/config/initializers/inflections.rb
129
+ - test/dummy/config/initializers/mime_types.rb
130
+ - test/dummy/config/initializers/session_store.rb
131
+ - test/dummy/config/initializers/wrap_parameters.rb
132
+ - test/dummy/config/locales/en.yml
133
+ - test/dummy/config/routes.rb
134
+ - test/dummy/config/secrets.yml
135
+ - test/dummy/log/development.log
136
+ - test/dummy/public/404.html
137
+ - test/dummy/public/422.html
138
+ - test/dummy/public/500.html
139
+ - test/dummy/public/favicon.ico
140
+ - test/integration/navigation_test.rb
141
+ - test/json_voorhees_test.rb
142
+ - test/lib/generators/json_voorhees/engine_serializer_generator_test.rb
143
+ - test/test_app/Gemfile
144
+ - test/test_app/Gemfile.lock
145
+ - test/test_app/README.rdoc
146
+ - test/test_app/Rakefile
147
+ - test/test_app/app/assets/javascripts/application.js
148
+ - test/test_app/app/assets/stylesheets/application.css
149
+ - test/test_app/app/controllers/application_controller.rb
150
+ - test/test_app/app/helpers/application_helper.rb
151
+ - test/test_app/app/views/layouts/application.html.erb
152
+ - test/test_app/bin/bundle
153
+ - test/test_app/bin/rails
154
+ - test/test_app/bin/rake
155
+ - test/test_app/bin/spring
156
+ - test/test_app/config.ru
157
+ - test/test_app/config/application.rb
158
+ - test/test_app/config/boot.rb
159
+ - test/test_app/config/database.yml
160
+ - test/test_app/config/environment.rb
161
+ - test/test_app/config/environments/development.rb
162
+ - test/test_app/config/environments/production.rb
163
+ - test/test_app/config/environments/test.rb
164
+ - test/test_app/config/initializers/assets.rb
165
+ - test/test_app/config/initializers/backtrace_silencers.rb
166
+ - test/test_app/config/initializers/cookies_serializer.rb
167
+ - test/test_app/config/initializers/filter_parameter_logging.rb
168
+ - test/test_app/config/initializers/inflections.rb
169
+ - test/test_app/config/initializers/mime_types.rb
170
+ - test/test_app/config/initializers/session_store.rb
171
+ - test/test_app/config/initializers/wrap_parameters.rb
172
+ - test/test_app/config/locales/en.yml
173
+ - test/test_app/config/routes.rb
174
+ - test/test_app/config/secrets.yml
175
+ - test/test_app/db/development.sqlite3
176
+ - test/test_app/db/schema.rb
177
+ - test/test_app/db/seeds.rb
178
+ - test/test_app/log/development.log
179
+ - test/test_app/log/production.log
180
+ - test/test_app/log/test.log
181
+ - test/test_app/public/404.html
182
+ - test/test_app/public/422.html
183
+ - test/test_app/public/500.html
184
+ - test/test_app/public/favicon.ico
185
+ - test/test_app/public/robots.txt
186
+ - test/test_app/test/test_helper.rb
187
+ - test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e
188
+ - test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
189
+ - test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59
190
+ - test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
191
+ - test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
192
+ - test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5
193
+ - test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b
194
+ - test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a
195
+ - test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f
196
+ - test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6
197
+ - test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365
198
+ - test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d
199
+ - test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
200
+ - test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
201
+ - test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
202
+ - test/test_engine/Gemfile
203
+ - test/test_engine/Gemfile.lock
204
+ - test/test_engine/MIT-LICENSE
205
+ - test/test_engine/README.md
206
+ - test/test_engine/Rakefile
207
+ - test/test_engine/app/assets/javascripts/test_engine/application.js
208
+ - test/test_engine/app/assets/stylesheets/test_engine/application.css
209
+ - test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb
210
+ - test/test_engine/app/controllers/test_engine/application_controller.rb
211
+ - test/test_engine/app/helpers/test_engine/application_helper.rb
212
+ - test/test_engine/app/views/layouts/test_engine/default/application.html.erb
213
+ - test/test_engine/bin/rails
214
+ - test/test_engine/config/routes.rb
215
+ - test/test_engine/lib/tasks/test_engine_tasks.rake
216
+ - test/test_engine/lib/test_engine.rb
217
+ - test/test_engine/lib/test_engine/engine.rb
218
+ - test/test_engine/lib/test_engine/version.rb
219
+ - test/test_engine/test/dummy/README.rdoc
220
+ - test/test_engine/test/dummy/Rakefile
221
+ - test/test_engine/test/dummy/app/assets/javascripts/application.js
222
+ - test/test_engine/test/dummy/app/assets/stylesheets/application.css
223
+ - test/test_engine/test/dummy/app/controllers/application_controller.rb
224
+ - test/test_engine/test/dummy/app/helpers/application_helper.rb
225
+ - test/test_engine/test/dummy/app/views/layouts/application.html.erb
226
+ - test/test_engine/test/dummy/bin/bundle
227
+ - test/test_engine/test/dummy/bin/rails
228
+ - test/test_engine/test/dummy/bin/rake
229
+ - test/test_engine/test/dummy/config.ru
230
+ - test/test_engine/test/dummy/config/application.rb
231
+ - test/test_engine/test/dummy/config/boot.rb
232
+ - test/test_engine/test/dummy/config/database.yml
233
+ - test/test_engine/test/dummy/config/environment.rb
234
+ - test/test_engine/test/dummy/config/environments/development.rb
235
+ - test/test_engine/test/dummy/config/environments/production.rb
236
+ - test/test_engine/test/dummy/config/environments/test.rb
237
+ - test/test_engine/test/dummy/config/initializers/assets.rb
238
+ - test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb
239
+ - test/test_engine/test/dummy/config/initializers/cookies_serializer.rb
240
+ - test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb
241
+ - test/test_engine/test/dummy/config/initializers/inflections.rb
242
+ - test/test_engine/test/dummy/config/initializers/mime_types.rb
243
+ - test/test_engine/test/dummy/config/initializers/session_store.rb
244
+ - test/test_engine/test/dummy/config/initializers/wrap_parameters.rb
245
+ - test/test_engine/test/dummy/config/locales/en.yml
246
+ - test/test_engine/test/dummy/config/routes.rb
247
+ - test/test_engine/test/dummy/config/secrets.yml
248
+ - test/test_engine/test/dummy/log/development.log
249
+ - test/test_engine/test/dummy/public/404.html
250
+ - test/test_engine/test/dummy/public/422.html
251
+ - test/test_engine/test/dummy/public/500.html
252
+ - test/test_engine/test/dummy/public/favicon.ico
253
+ - test/test_engine/test/integration/navigation_test.rb
254
+ - test/test_engine/test/test_engine_test.rb
255
+ - test/test_engine/test/test_helper.rb
256
+ - test/test_engine/test_engine.gemspec
257
+ - test/test_helper.rb
258
+ homepage: https://github.com/cleor41/json_voorhees
259
+ licenses:
260
+ - MIT
261
+ metadata: {}
262
+ post_install_message:
263
+ rdoc_options: []
264
+ require_paths:
265
+ - lib
266
+ required_ruby_version: !ruby/object:Gem::Requirement
267
+ requirements:
268
+ - - '>='
269
+ - !ruby/object:Gem::Version
270
+ version: '0'
271
+ required_rubygems_version: !ruby/object:Gem::Requirement
272
+ requirements:
273
+ - - '>='
274
+ - !ruby/object:Gem::Version
275
+ version: '0'
276
+ requirements: []
277
+ rubyforge_project:
278
+ rubygems_version: 2.4.1
279
+ signing_key:
280
+ specification_version: 4
281
+ summary: Generators to build up a json api.
282
+ test_files:
283
+ - test/test_app/Gemfile.lock
284
+ - test/test_app/bin/spring
285
+ - test/test_app/bin/rake
286
+ - test/test_app/bin/rails
287
+ - test/test_app/bin/bundle
288
+ - test/test_app/test/test_helper.rb
289
+ - test/test_app/public/robots.txt
290
+ - test/test_app/public/404.html
291
+ - test/test_app/public/favicon.ico
292
+ - test/test_app/public/422.html
293
+ - test/test_app/public/500.html
294
+ - test/test_app/config.ru
295
+ - test/test_app/config/locales/en.yml
296
+ - test/test_app/config/application.rb
297
+ - test/test_app/config/initializers/mime_types.rb
298
+ - test/test_app/config/initializers/inflections.rb
299
+ - test/test_app/config/initializers/session_store.rb
300
+ - test/test_app/config/initializers/filter_parameter_logging.rb
301
+ - test/test_app/config/initializers/assets.rb
302
+ - test/test_app/config/initializers/backtrace_silencers.rb
303
+ - test/test_app/config/initializers/cookies_serializer.rb
304
+ - test/test_app/config/initializers/wrap_parameters.rb
305
+ - test/test_app/config/routes.rb
306
+ - test/test_app/config/environment.rb
307
+ - test/test_app/config/database.yml
308
+ - test/test_app/config/boot.rb
309
+ - test/test_app/config/environments/test.rb
310
+ - test/test_app/config/environments/development.rb
311
+ - test/test_app/config/environments/production.rb
312
+ - test/test_app/config/secrets.yml
313
+ - test/test_app/db/schema.rb
314
+ - test/test_app/db/development.sqlite3
315
+ - test/test_app/db/seeds.rb
316
+ - test/test_app/Rakefile
317
+ - test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365
318
+ - test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
319
+ - test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
320
+ - test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
321
+ - test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
322
+ - test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5
323
+ - test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b
324
+ - test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
325
+ - test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59
326
+ - test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f
327
+ - test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a
328
+ - test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e
329
+ - test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6
330
+ - test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d
331
+ - test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
332
+ - test/test_app/README.rdoc
333
+ - test/test_app/Gemfile
334
+ - test/test_app/app/controllers/application_controller.rb
335
+ - test/test_app/app/views/layouts/application.html.erb
336
+ - test/test_app/app/helpers/application_helper.rb
337
+ - test/test_app/app/assets/javascripts/application.js
338
+ - test/test_app/app/assets/stylesheets/application.css
339
+ - test/test_app/log/production.log
340
+ - test/test_app/log/development.log
341
+ - test/test_app/log/test.log
342
+ - test/test_engine/Gemfile.lock
343
+ - test/test_engine/bin/rails
344
+ - test/test_engine/lib/test_engine/engine.rb
345
+ - test/test_engine/lib/test_engine/version.rb
346
+ - test/test_engine/lib/tasks/test_engine_tasks.rake
347
+ - test/test_engine/lib/test_engine.rb
348
+ - test/test_engine/MIT-LICENSE
349
+ - test/test_engine/test/test_engine_test.rb
350
+ - test/test_engine/test/integration/navigation_test.rb
351
+ - test/test_engine/test/dummy/bin/rake
352
+ - test/test_engine/test/dummy/bin/rails
353
+ - test/test_engine/test/dummy/bin/bundle
354
+ - test/test_engine/test/dummy/public/404.html
355
+ - test/test_engine/test/dummy/public/favicon.ico
356
+ - test/test_engine/test/dummy/public/422.html
357
+ - test/test_engine/test/dummy/public/500.html
358
+ - test/test_engine/test/dummy/config.ru
359
+ - test/test_engine/test/dummy/config/locales/en.yml
360
+ - test/test_engine/test/dummy/config/application.rb
361
+ - test/test_engine/test/dummy/config/initializers/mime_types.rb
362
+ - test/test_engine/test/dummy/config/initializers/inflections.rb
363
+ - test/test_engine/test/dummy/config/initializers/session_store.rb
364
+ - test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb
365
+ - test/test_engine/test/dummy/config/initializers/assets.rb
366
+ - test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb
367
+ - test/test_engine/test/dummy/config/initializers/cookies_serializer.rb
368
+ - test/test_engine/test/dummy/config/initializers/wrap_parameters.rb
369
+ - test/test_engine/test/dummy/config/routes.rb
370
+ - test/test_engine/test/dummy/config/environment.rb
371
+ - test/test_engine/test/dummy/config/database.yml
372
+ - test/test_engine/test/dummy/config/boot.rb
373
+ - test/test_engine/test/dummy/config/environments/test.rb
374
+ - test/test_engine/test/dummy/config/environments/development.rb
375
+ - test/test_engine/test/dummy/config/environments/production.rb
376
+ - test/test_engine/test/dummy/config/secrets.yml
377
+ - test/test_engine/test/dummy/Rakefile
378
+ - test/test_engine/test/dummy/README.rdoc
379
+ - test/test_engine/test/dummy/app/controllers/application_controller.rb
380
+ - test/test_engine/test/dummy/app/views/layouts/application.html.erb
381
+ - test/test_engine/test/dummy/app/helpers/application_helper.rb
382
+ - test/test_engine/test/dummy/app/assets/javascripts/application.js
383
+ - test/test_engine/test/dummy/app/assets/stylesheets/application.css
384
+ - test/test_engine/test/dummy/log/development.log
385
+ - test/test_engine/test/test_helper.rb
386
+ - test/test_engine/config/routes.rb
387
+ - test/test_engine/Rakefile
388
+ - test/test_engine/Gemfile
389
+ - test/test_engine/test_engine.gemspec
390
+ - test/test_engine/README.md
391
+ - test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb
392
+ - test/test_engine/app/controllers/test_engine/application_controller.rb
393
+ - test/test_engine/app/views/layouts/test_engine/default/application.html.erb
394
+ - test/test_engine/app/helpers/test_engine/application_helper.rb
395
+ - test/test_engine/app/assets/javascripts/test_engine/application.js
396
+ - test/test_engine/app/assets/stylesheets/test_engine/application.css
397
+ - test/integration/navigation_test.rb
398
+ - test/lib/generators/json_voorhees/engine_serializer_generator_test.rb
399
+ - test/json_voorhees_test.rb
400
+ - test/dummy/bin/rake
401
+ - test/dummy/bin/rails
402
+ - test/dummy/bin/bundle
403
+ - test/dummy/public/404.html
404
+ - test/dummy/public/favicon.ico
405
+ - test/dummy/public/422.html
406
+ - test/dummy/public/500.html
407
+ - test/dummy/config.ru
408
+ - test/dummy/config/locales/en.yml
409
+ - test/dummy/config/application.rb
410
+ - test/dummy/config/initializers/mime_types.rb
411
+ - test/dummy/config/initializers/inflections.rb
412
+ - test/dummy/config/initializers/session_store.rb
413
+ - test/dummy/config/initializers/filter_parameter_logging.rb
414
+ - test/dummy/config/initializers/assets.rb
415
+ - test/dummy/config/initializers/backtrace_silencers.rb
416
+ - test/dummy/config/initializers/cookies_serializer.rb
417
+ - test/dummy/config/initializers/wrap_parameters.rb
418
+ - test/dummy/config/routes.rb
419
+ - test/dummy/config/environment.rb
420
+ - test/dummy/config/database.yml
421
+ - test/dummy/config/boot.rb
422
+ - test/dummy/config/environments/test.rb
423
+ - test/dummy/config/environments/development.rb
424
+ - test/dummy/config/environments/production.rb
425
+ - test/dummy/config/secrets.yml
426
+ - test/dummy/Rakefile
427
+ - test/dummy/README.rdoc
428
+ - test/dummy/app/controllers/application_controller.rb
429
+ - test/dummy/app/views/layouts/application.html.erb
430
+ - test/dummy/app/helpers/application_helper.rb
431
+ - test/dummy/app/assets/javascripts/application.js
432
+ - test/dummy/app/assets/stylesheets/application.css
433
+ - test/dummy/log/development.log
434
+ - test/test_helper.rb