bouquet 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (386) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -4
  3. data/LICENSE.txt +1 -1
  4. data/README.md +8 -25
  5. data/bouquet.gemspec +3 -2
  6. data/core/.gitignore +0 -1
  7. data/core/Gemfile +3 -4
  8. data/core/Gemfile.lock +205 -0
  9. data/core/MIT-LICENSE +1 -1
  10. data/core/README.md +3 -0
  11. data/core/Rakefile +2 -2
  12. data/core/app/controllers/bouquet/core/application_controller.rb +6 -0
  13. data/core/app/jobs/bouquet/core/application_job.rb +6 -0
  14. data/core/app/models/application_record.rb +7 -0
  15. data/core/app/models/bouquet/arrival.rb +7 -0
  16. data/core/app/models/bouquet/assembly.rb +8 -0
  17. data/core/app/models/bouquet/customer.rb +6 -0
  18. data/core/app/models/bouquet/delivery.rb +7 -0
  19. data/core/app/models/bouquet/location.rb +10 -0
  20. data/core/app/models/bouquet/material.rb +7 -0
  21. data/core/app/models/bouquet/product.rb +6 -1
  22. data/core/app/models/bouquet/purchase_order.rb +23 -0
  23. data/core/app/models/bouquet/retrieval.rb +7 -0
  24. data/core/app/models/bouquet/sales_order.rb +16 -0
  25. data/core/app/models/bouquet/shipment.rb +44 -0
  26. data/core/app/models/bouquet/stock.rb +7 -0
  27. data/core/app/models/bouquet/storage.rb +30 -0
  28. data/core/app/models/bouquet/supplier.rb +6 -0
  29. data/core/{bouquet_core.gemspec → bouquet-core.gemspec} +5 -5
  30. data/core/db/migrate/20160102155121_create_bouquet_products.rb +10 -0
  31. data/core/db/migrate/20160108154058_create_bouquet_materials.rb +12 -0
  32. data/core/db/migrate/20160108154107_create_bouquet_assemblies.rb +12 -0
  33. data/core/db/migrate/20160108154116_create_bouquet_customers.rb +10 -0
  34. data/core/db/migrate/20160108154144_create_bouquet_suppliers.rb +10 -0
  35. data/core/db/migrate/20160108154217_create_bouquet_locations.rb +10 -0
  36. data/core/db/migrate/20160108155617_create_bouquet_shipments.rb +12 -0
  37. data/core/db/migrate/20160108155648_create_bouquet_deliveries.rb +13 -0
  38. data/core/db/migrate/20160108155711_create_bouquet_purchase_orders.rb +14 -0
  39. data/core/db/migrate/20160108155732_create_bouquet_arrivals.rb +12 -0
  40. data/core/db/migrate/20160108155753_create_bouquet_stocks.rb +13 -0
  41. data/core/db/migrate/20160108160523_create_bouquet_sales_orders.rb +14 -0
  42. data/core/db/migrate/20160111072002_create_bouquet_storages.rb +12 -0
  43. data/core/db/migrate/20160111072201_create_bouquet_retrievals.rb +13 -0
  44. data/core/lib/bouquet/core/engine.rb +1 -2
  45. data/core/lib/bouquet/core/version.rb +1 -1
  46. data/core/lib/bouquet/core.rb +1 -0
  47. data/core/lib/tasks/{bouquet_core_tasks.rake → bouquet/core_tasks.rake} +0 -0
  48. data/core/spec/dummy/README.md +4 -0
  49. data/core/spec/dummy/Rakefile +6 -0
  50. data/core/spec/dummy/app/assets/config/manifest.js +3 -0
  51. data/core/spec/dummy/app/assets/javascripts/application.js +13 -0
  52. data/{gate/app/assets/stylesheets/bouquet_gate → core/spec/dummy/app/assets/stylesheets}/application.css +3 -3
  53. data/core/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  54. data/core/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  55. data/core/spec/dummy/app/controllers/application_controller.rb +2 -0
  56. data/core/{app/assets/images/bouquet_core → spec/dummy/app/controllers/concerns}/.keep +0 -0
  57. data/core/spec/dummy/app/jobs/application_job.rb +2 -0
  58. data/core/spec/dummy/app/mailers/application_mailer.rb +4 -0
  59. data/core/spec/dummy/app/models/application_record.rb +3 -0
  60. data/{gate/app/assets/images/bouquet_gate → core/spec/dummy/app/models/concerns}/.keep +0 -0
  61. data/core/spec/dummy/bin/bundle +3 -0
  62. data/core/spec/dummy/bin/rails +4 -0
  63. data/core/spec/dummy/bin/rake +4 -0
  64. data/core/spec/dummy/bin/setup +34 -0
  65. data/core/spec/dummy/bin/update +29 -0
  66. data/core/spec/dummy/config/application.rb +26 -0
  67. data/core/spec/dummy/config/boot.rb +5 -0
  68. data/core/spec/dummy/config/database.yml +25 -0
  69. data/core/spec/dummy/config/environment.rb +5 -0
  70. data/core/spec/dummy/config/environments/development.rb +43 -0
  71. data/core/spec/dummy/config/environments/production.rb +70 -0
  72. data/core/spec/dummy/config/environments/test.rb +44 -0
  73. data/core/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  74. data/core/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  75. data/core/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  76. data/core/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  77. data/core/spec/dummy/config/initializers/cors.rb +16 -0
  78. data/core/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/core/spec/dummy/config/initializers/inflections.rb +16 -0
  80. data/core/spec/dummy/config/initializers/mime_types.rb +4 -0
  81. data/core/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  82. data/core/spec/dummy/config/locales/en.yml +23 -0
  83. data/core/spec/dummy/config/redis/cable.yml +9 -0
  84. data/core/spec/dummy/config/routes.rb +3 -0
  85. data/core/spec/dummy/config/secrets.yml +22 -0
  86. data/core/spec/dummy/config.ru +9 -0
  87. data/core/spec/dummy/db/schema.rb +156 -0
  88. data/core/spec/dummy/db/seeds.rb +36 -0
  89. data/core/spec/dummy/log/.keep +0 -0
  90. data/core/spec/dummy/public/404.html +67 -0
  91. data/core/spec/dummy/public/422.html +67 -0
  92. data/core/spec/dummy/public/500.html +66 -0
  93. data/core/spec/dummy/public/favicon.ico +0 -0
  94. data/core/spec/factories/bouquet_arrivals.rb +9 -0
  95. data/core/spec/factories/bouquet_assemblies.rb +8 -0
  96. data/core/spec/factories/bouquet_customers.rb +7 -0
  97. data/core/spec/factories/bouquet_deliveries.rb +10 -0
  98. data/core/spec/factories/bouquet_locations.rb +6 -0
  99. data/core/spec/factories/bouquet_materials.rb +9 -0
  100. data/core/spec/factories/bouquet_purchase_orders.rb +10 -0
  101. data/core/spec/factories/bouquet_retrievals.rb +10 -0
  102. data/core/spec/factories/bouquet_sales_orders.rb +10 -0
  103. data/core/spec/factories/bouquet_shipments.rb +9 -0
  104. data/core/spec/factories/bouquet_stocks.rb +10 -0
  105. data/core/spec/factories/bouquet_storage_retrievals.rb +10 -0
  106. data/core/spec/factories/bouquet_storages.rb +9 -0
  107. data/core/spec/factories/bouquet_suppliers.rb +6 -0
  108. data/core/spec/jobs/bouquet/shipment_job_spec.rb +7 -0
  109. data/core/spec/models/bouquet/arrival_spec.rb +7 -0
  110. data/core/spec/models/bouquet/assembly_spec.rb +7 -0
  111. data/core/spec/models/bouquet/customer_spec.rb +7 -0
  112. data/core/spec/models/bouquet/delivery_spec.rb +7 -0
  113. data/core/spec/models/bouquet/location_spec.rb +7 -0
  114. data/core/spec/models/bouquet/material_spec.rb +7 -0
  115. data/core/spec/models/bouquet/product_spec.rb +1 -1
  116. data/core/spec/models/bouquet/purchase_order_spec.rb +7 -0
  117. data/core/spec/models/bouquet/retrieval_spec.rb +7 -0
  118. data/core/spec/models/bouquet/sales_order_spec.rb +7 -0
  119. data/core/spec/models/bouquet/shipment_spec.rb +7 -0
  120. data/core/spec/models/bouquet/stock_spec.rb +7 -0
  121. data/core/spec/models/bouquet/storage_retrieval_spec.rb +7 -0
  122. data/core/spec/models/bouquet/storage_spec.rb +7 -0
  123. data/core/spec/models/bouquet/supplier_spec.rb +7 -0
  124. data/core/spec/rails_helper.rb +4 -11
  125. data/core/spec/spec_helper.rb +11 -18
  126. data/gate/.gitignore +0 -1
  127. data/gate/Gemfile +3 -7
  128. data/gate/Gemfile.lock +204 -0
  129. data/gate/MIT-LICENSE +1 -1
  130. data/gate/README.md +29 -0
  131. data/gate/Rakefile +2 -2
  132. data/gate/app/controllers/bouquet/gate/application_controller.rb +1 -1
  133. data/gate/app/controllers/bouquet/gate/materials_controller.rb +55 -0
  134. data/gate/app/controllers/bouquet/gate/products_controller.rb +62 -6
  135. data/gate/app/controllers/bouquet/gate/purchase_orders_controller.rb +56 -0
  136. data/gate/app/controllers/bouquet/gate/sales_orders_controller.rb +57 -0
  137. data/gate/app/controllers/bouquet/gate/storages_controller.rb +22 -0
  138. data/gate/app/jobs/bouquet/gate/application_job.rb +6 -0
  139. data/gate/app/jobs/bouquet/gate/shipment_job.rb +14 -0
  140. data/gate/app/models/application_record.rb +7 -0
  141. data/gate/{bouquet_gate.gemspec → bouquet-gate.gemspec} +5 -6
  142. data/gate/config/routes.rb +6 -4
  143. data/gate/lib/bouquet/gate/engine.rb +2 -6
  144. data/gate/lib/bouquet/gate/version.rb +1 -1
  145. data/gate/lib/bouquet/gate.rb +1 -1
  146. data/gate/lib/tasks/{bouquet_gate_tasks.rake → bouquet/gate_tasks.rake} +0 -0
  147. data/gate/spec/controllers/bouquet/gate/products_controller_spec.rb +13 -4
  148. data/gate/spec/controllers/bouquet/gate/purchase_orders_controller_spec.rb +14 -0
  149. data/gate/spec/controllers/bouquet/gate/sales_orders_controller_spec.rb +14 -0
  150. data/gate/spec/dummy/Rakefile +6 -0
  151. data/gate/spec/dummy/app/assets/config/manifest.js +3 -0
  152. data/gate/spec/dummy/app/assets/javascripts/application.js +13 -0
  153. data/{core/app/assets/stylesheets/bouquet_core → gate/spec/dummy/app/assets/stylesheets}/application.css +3 -3
  154. data/gate/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  155. data/gate/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  156. data/gate/spec/dummy/app/controllers/application_controller.rb +2 -0
  157. data/gate/spec/dummy/app/controllers/concerns/.keep +0 -0
  158. data/gate/spec/dummy/app/jobs/application_job.rb +2 -0
  159. data/gate/spec/dummy/app/mailers/application_mailer.rb +4 -0
  160. data/gate/spec/dummy/app/models/application_record.rb +3 -0
  161. data/gate/spec/dummy/app/models/concerns/.keep +0 -0
  162. data/gate/spec/dummy/bin/bundle +3 -0
  163. data/gate/spec/dummy/bin/rails +4 -0
  164. data/gate/spec/dummy/bin/rake +4 -0
  165. data/gate/spec/dummy/bin/setup +34 -0
  166. data/gate/spec/dummy/bin/update +29 -0
  167. data/gate/spec/dummy/config/application.rb +27 -0
  168. data/gate/spec/dummy/config/boot.rb +5 -0
  169. data/gate/spec/dummy/config/database.yml +25 -0
  170. data/gate/spec/dummy/config/environment.rb +5 -0
  171. data/gate/spec/dummy/config/environments/development.rb +43 -0
  172. data/gate/spec/dummy/config/environments/production.rb +70 -0
  173. data/gate/spec/dummy/config/environments/test.rb +44 -0
  174. data/gate/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  175. data/gate/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  176. data/gate/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  177. data/gate/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  178. data/gate/spec/dummy/config/initializers/cors.rb +16 -0
  179. data/gate/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  180. data/gate/spec/dummy/config/initializers/inflections.rb +16 -0
  181. data/gate/spec/dummy/config/initializers/mime_types.rb +4 -0
  182. data/gate/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  183. data/gate/spec/dummy/config/locales/en.yml +23 -0
  184. data/gate/spec/dummy/config/redis/cable.yml +9 -0
  185. data/gate/spec/dummy/config/routes.rb +3 -0
  186. data/gate/spec/dummy/config/secrets.yml +22 -0
  187. data/gate/spec/dummy/config.ru +9 -0
  188. data/gate/spec/dummy/db/migrate/20160118114717_create_bouquet_products.bouquet.rb +11 -0
  189. data/gate/spec/dummy/db/migrate/20160118114718_create_bouquet_materials.bouquet.rb +13 -0
  190. data/gate/spec/dummy/db/migrate/20160118114719_create_bouquet_assemblies.bouquet.rb +13 -0
  191. data/gate/spec/dummy/db/migrate/20160118114720_create_bouquet_customers.bouquet.rb +11 -0
  192. data/gate/spec/dummy/db/migrate/20160118114721_create_bouquet_suppliers.bouquet.rb +11 -0
  193. data/gate/spec/dummy/db/migrate/20160118114722_create_bouquet_locations.bouquet.rb +11 -0
  194. data/gate/spec/dummy/db/migrate/20160118114723_create_bouquet_shipments.bouquet.rb +13 -0
  195. data/gate/spec/dummy/db/migrate/20160118114724_create_bouquet_deliveries.bouquet.rb +14 -0
  196. data/gate/spec/dummy/db/migrate/20160118114725_create_bouquet_purchase_orders.bouquet.rb +15 -0
  197. data/gate/spec/dummy/db/migrate/20160118114726_create_bouquet_arrivals.bouquet.rb +13 -0
  198. data/gate/spec/dummy/db/migrate/20160118114727_create_bouquet_stocks.bouquet.rb +14 -0
  199. data/gate/spec/dummy/db/migrate/20160118114728_create_bouquet_sales_orders.bouquet.rb +15 -0
  200. data/gate/spec/dummy/db/migrate/20160118114729_create_bouquet_storages.bouquet.rb +13 -0
  201. data/gate/spec/dummy/db/migrate/20160118114730_create_bouquet_retrievals.bouquet.rb +14 -0
  202. data/gate/spec/dummy/db/schema.rb +156 -0
  203. data/gate/spec/dummy/db/seeds.rb +23 -0
  204. data/gate/spec/dummy/log/.keep +0 -0
  205. data/gate/spec/dummy/public/404.html +67 -0
  206. data/gate/spec/dummy/public/422.html +67 -0
  207. data/gate/spec/dummy/public/500.html +66 -0
  208. data/gate/spec/dummy/public/favicon.ico +0 -0
  209. data/gate/spec/factories/bouquet_products.rb +6 -0
  210. data/gate/spec/rails_helper.rb +6 -11
  211. data/gate/spec/spec_helper.rb +11 -18
  212. data/lib/bouquet/version.rb +1 -1
  213. data/lib/bouquet.rb +0 -2
  214. data/store/.gitignore +7 -0
  215. data/store/.rspec +2 -0
  216. data/store/Gemfile +20 -0
  217. data/store/Gemfile.lock +207 -0
  218. data/store/MIT-LICENSE +20 -0
  219. data/store/README.md +3 -0
  220. data/store/Rakefile +26 -0
  221. data/store/app/assets/config/bouquet_store_manifest.js +1 -0
  222. data/store/app/assets/images/bouquet/store/.keep +0 -0
  223. data/store/app/assets/javascripts/bouquet/store/application.js +1 -0
  224. data/store/app/assets/javascripts/bouquet/store/bundle.js +33 -0
  225. data/store/app/assets/stylesheets/bouquet/store/application.css +3 -0
  226. data/store/app/assets/stylesheets/bouquet/store/bundle.css +1 -0
  227. data/store/app/controllers/bouquet/store/application_controller.rb +6 -0
  228. data/store/app/controllers/bouquet/store/main_controller.rb +8 -0
  229. data/store/app/helpers/bouquet/store/application_helper.rb +15 -0
  230. data/store/app/jobs/bouquet/store/application_job.rb +6 -0
  231. data/store/app/models/application_record.rb +7 -0
  232. data/store/app/views/bouquet/store/main/index.html.erb +1 -0
  233. data/store/app/views/layouts/bouquet/store/application.html.erb +15 -0
  234. data/store/bin/rails +12 -0
  235. data/store/bouquet-store.gemspec +22 -0
  236. data/store/config/routes.rb +4 -0
  237. data/store/lib/bouquet/store/engine.rb +15 -0
  238. data/store/lib/bouquet/store/version.rb +5 -0
  239. data/store/lib/bouquet/store.rb +7 -0
  240. data/store/lib/tasks/bouquet/store_tasks.rake +4 -0
  241. data/store/package.json +56 -0
  242. data/store/private/static/.babelrc +20 -0
  243. data/store/private/static/app/actions/AccountActions.js +8 -0
  244. data/store/private/static/app/actions/CounterActions.js +40 -0
  245. data/store/private/static/app/actions/InventoryActions.js +20 -0
  246. data/store/private/static/app/actions/MaterialActions.js +54 -0
  247. data/store/private/static/app/actions/ProductActions.js +54 -0
  248. data/store/private/static/app/components/_globals.scss +7 -0
  249. data/store/private/static/app/components/layouts/_config.scss +8 -0
  250. data/store/private/static/app/components/layouts/contents/_config.scss +4 -0
  251. data/store/private/static/app/components/layouts/contents/about/index.js +15 -0
  252. data/store/private/static/app/components/layouts/contents/about/style.scss +1 -0
  253. data/store/private/static/app/components/layouts/contents/account/index.js +16 -0
  254. data/store/private/static/app/components/layouts/contents/account/layout.js +52 -0
  255. data/store/private/static/app/components/layouts/contents/account/style.scss +7 -0
  256. data/store/private/static/app/components/layouts/contents/content.scss +13 -0
  257. data/store/private/static/app/components/layouts/contents/counter/index.js +16 -0
  258. data/store/private/static/app/components/layouts/contents/counter/layout.js +62 -0
  259. data/store/private/static/app/components/layouts/contents/counter/style.scss +6 -0
  260. data/store/private/static/app/components/layouts/contents/index.js +7 -0
  261. data/store/private/static/app/components/layouts/contents/inventory/index.js +16 -0
  262. data/store/private/static/app/components/layouts/contents/inventory/layout.js +41 -0
  263. data/store/private/static/app/components/layouts/contents/inventory/style.scss +1 -0
  264. data/store/private/static/app/components/layouts/contents/main/index.js +36 -0
  265. data/store/private/static/app/components/layouts/contents/main/style.scss +1 -0
  266. data/store/private/static/app/components/layouts/contents/material/index.js +18 -0
  267. data/store/private/static/app/components/layouts/contents/material/layout.js +60 -0
  268. data/store/private/static/app/components/layouts/contents/material/style.scss +25 -0
  269. data/store/private/static/app/components/layouts/contents/product/index.js +18 -0
  270. data/store/private/static/app/components/layouts/contents/product/layout.js +69 -0
  271. data/store/private/static/app/components/layouts/contents/product/style.scss +30 -0
  272. data/store/private/static/app/components/layouts/header/index.js +27 -0
  273. data/store/private/static/app/components/layouts/header/style.scss +21 -0
  274. data/store/private/static/app/components/layouts/home/index.js +20 -0
  275. data/store/private/static/app/components/layouts/home/style.scss +23 -0
  276. data/store/private/static/app/components/layouts/sidebar/index.js +11 -0
  277. data/store/private/static/app/components/layouts/sidebar/layout.js +63 -0
  278. data/store/private/static/app/components/layouts/sidebar/style.scss +47 -0
  279. data/store/private/static/app/constants/ActionTypes.js +20 -0
  280. data/store/private/static/app/containers/dev_tools/index.js +13 -0
  281. data/store/private/static/app/containers/home/index.js +2 -0
  282. data/store/private/static/app/containers/index.js +2 -0
  283. data/store/private/static/app/containers/root/index.js +26 -0
  284. data/store/private/static/app/index.js +21 -0
  285. data/store/private/static/app/reducers/account.js +19 -0
  286. data/store/private/static/app/reducers/counter.js +14 -0
  287. data/store/private/static/app/reducers/index.js +18 -0
  288. data/store/private/static/app/reducers/inventory.js +17 -0
  289. data/store/private/static/app/reducers/material.js +30 -0
  290. data/store/private/static/app/reducers/product.js +30 -0
  291. data/store/private/static/app/routes/index.js +18 -0
  292. data/store/private/static/app/store/configureStore.development.js +27 -0
  293. data/store/private/static/app/store/configureStore.js +5 -0
  294. data/store/private/static/app/store/configureStore.production.js +11 -0
  295. data/store/private/static/app/toolbox-theme.scss +7 -0
  296. data/store/private/static/index.html +14 -0
  297. data/store/private/static/main.js +30 -0
  298. data/store/private/static/package.json +56 -0
  299. data/store/private/static/server.js +27 -0
  300. data/store/private/static/webpack.config.js +50 -0
  301. data/store/private/static/webpack.production.js +43 -0
  302. data/store/spec/controllers/bouquet/store/main_controller_spec.rb +15 -0
  303. data/store/spec/dummy/Procfile +2 -0
  304. data/store/spec/dummy/Rakefile +6 -0
  305. data/store/spec/dummy/app/assets/config/manifest.js +4 -0
  306. data/store/spec/dummy/app/assets/images/.keep +0 -0
  307. data/store/spec/dummy/app/assets/javascripts/application.js +13 -0
  308. data/store/spec/dummy/app/assets/stylesheets/application.css +15 -0
  309. data/store/spec/dummy/app/channels/application_cable/channel.rb +5 -0
  310. data/store/spec/dummy/app/channels/application_cable/connection.rb +5 -0
  311. data/store/spec/dummy/app/controllers/application_controller.rb +3 -0
  312. data/store/spec/dummy/app/controllers/concerns/.keep +0 -0
  313. data/store/spec/dummy/app/helpers/application_helper.rb +2 -0
  314. data/store/spec/dummy/app/jobs/application_job.rb +2 -0
  315. data/store/spec/dummy/app/mailers/application_mailer.rb +4 -0
  316. data/store/spec/dummy/app/models/application_record.rb +3 -0
  317. data/store/spec/dummy/app/models/concerns/.keep +0 -0
  318. data/store/spec/dummy/app/views/layouts/application.html.erb +14 -0
  319. data/store/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  320. data/store/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  321. data/store/spec/dummy/bin/bundle +3 -0
  322. data/store/spec/dummy/bin/rails +4 -0
  323. data/store/spec/dummy/bin/rake +4 -0
  324. data/store/spec/dummy/bin/setup +34 -0
  325. data/store/spec/dummy/bin/update +29 -0
  326. data/store/spec/dummy/config/application.rb +24 -0
  327. data/store/spec/dummy/config/boot.rb +5 -0
  328. data/store/spec/dummy/config/database.yml +25 -0
  329. data/store/spec/dummy/config/environment.rb +5 -0
  330. data/store/spec/dummy/config/environments/development.rb +56 -0
  331. data/store/spec/dummy/config/environments/production.rb +82 -0
  332. data/store/spec/dummy/config/environments/test.rb +44 -0
  333. data/store/spec/dummy/config/initializers/active_record_belongs_to_required_by_default.rb +5 -0
  334. data/store/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  335. data/store/spec/dummy/config/initializers/assets.rb +11 -0
  336. data/store/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  337. data/store/spec/dummy/config/initializers/callback_terminator.rb +5 -0
  338. data/store/spec/dummy/config/initializers/cookies_serializer.rb +4 -0
  339. data/store/spec/dummy/config/initializers/cors.rb +16 -0
  340. data/store/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  341. data/store/spec/dummy/config/initializers/inflections.rb +16 -0
  342. data/store/spec/dummy/config/initializers/mime_types.rb +4 -0
  343. data/store/spec/dummy/config/initializers/request_forgery_protection.rb +4 -0
  344. data/store/spec/dummy/config/initializers/session_store.rb +3 -0
  345. data/store/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  346. data/store/spec/dummy/config/locales/en.yml +23 -0
  347. data/store/spec/dummy/config/redis/cable.yml +9 -0
  348. data/store/spec/dummy/config/routes.rb +4 -0
  349. data/store/spec/dummy/config/secrets.yml +22 -0
  350. data/store/spec/dummy/config.ru +9 -0
  351. data/store/spec/dummy/db/migrate/20160118140340_create_bouquet_products.bouquet.rb +11 -0
  352. data/store/spec/dummy/db/migrate/20160118140341_create_bouquet_materials.bouquet.rb +13 -0
  353. data/store/spec/dummy/db/migrate/20160118140342_create_bouquet_assemblies.bouquet.rb +13 -0
  354. data/store/spec/dummy/db/migrate/20160118140343_create_bouquet_customers.bouquet.rb +11 -0
  355. data/store/spec/dummy/db/migrate/20160118140344_create_bouquet_suppliers.bouquet.rb +11 -0
  356. data/store/spec/dummy/db/migrate/20160118140345_create_bouquet_locations.bouquet.rb +11 -0
  357. data/store/spec/dummy/db/migrate/20160118140346_create_bouquet_shipments.bouquet.rb +13 -0
  358. data/store/spec/dummy/db/migrate/20160118140347_create_bouquet_deliveries.bouquet.rb +14 -0
  359. data/store/spec/dummy/db/migrate/20160118140348_create_bouquet_purchase_orders.bouquet.rb +15 -0
  360. data/store/spec/dummy/db/migrate/20160118140349_create_bouquet_arrivals.bouquet.rb +13 -0
  361. data/store/spec/dummy/db/migrate/20160118140350_create_bouquet_stocks.bouquet.rb +14 -0
  362. data/store/spec/dummy/db/migrate/20160118140351_create_bouquet_sales_orders.bouquet.rb +15 -0
  363. data/store/spec/dummy/db/migrate/20160118140352_create_bouquet_storages.bouquet.rb +13 -0
  364. data/store/spec/dummy/db/migrate/20160118140353_create_bouquet_retrievals.bouquet.rb +14 -0
  365. data/store/spec/dummy/db/schema.rb +156 -0
  366. data/store/spec/dummy/db/seeds.rb +36 -0
  367. data/store/spec/dummy/lib/assets/.keep +0 -0
  368. data/store/spec/dummy/log/.keep +0 -0
  369. data/store/spec/dummy/public/404.html +67 -0
  370. data/store/spec/dummy/public/422.html +67 -0
  371. data/store/spec/dummy/public/500.html +66 -0
  372. data/store/spec/dummy/public/favicon.ico +0 -0
  373. data/store/spec/rails_helper.rb +50 -0
  374. data/store/spec/spec_helper.rb +85 -0
  375. data/store/spec/views/bouquet/store/main/index.html.erb_spec.rb +5 -0
  376. metadata +363 -24
  377. data/core/README.rdoc +0 -3
  378. data/core/app/controllers/bouquet_core/application_controller.rb +0 -4
  379. data/core/app/helpers/bouquet_core/application_helper.rb +0 -4
  380. data/core/app/views/layouts/bouquet_core/application.html.erb +0 -14
  381. data/core/db/migrate/20151122145140_create_bouquet_products.rb +0 -9
  382. data/gate/README.rdoc +0 -3
  383. data/gate/app/helpers/bouquet_gate/application_helper.rb +0 -4
  384. data/gate/app/views/bouquet/gate/products/index.json.jbuilder +0 -3
  385. data/gate/app/views/bouquet/gate/products/show.json.jbuilder +0 -1
  386. data/gate/app/views/layouts/bouquet_gate/application.html.erb +0 -14
@@ -0,0 +1,10 @@
1
+ class CreateBouquetSuppliers < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_suppliers do |t|
4
+ t.string :name
5
+ t.string :email
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateBouquetLocations < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_locations do |t|
4
+ t.string :name
5
+ t.integer :capacity
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,12 @@
1
+ class CreateBouquetShipments < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_shipments do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.references :sales_order, index: true, foreign_key: true
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ class CreateBouquetDeliveries < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_deliveries do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.references :shipment, index: true, foreign_key: true
8
+ t.references :location, index: true, foreign_key: true
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBouquetPurchaseOrders < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_purchase_orders do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.date :arrival_date
8
+ t.references :material, index: true, foreign_key: true
9
+ t.references :supplier, index: true, foreign_key: true
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,12 @@
1
+ class CreateBouquetArrivals < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_arrivals do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.references :purchase_order, index: true, foreign_key: true
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ class CreateBouquetStocks < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_stocks do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.references :arrival, index: true, foreign_key: true
8
+ t.references :location, index: true, foreign_key: true
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBouquetSalesOrders < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_sales_orders do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.date :shipment_date
8
+ t.references :product, index: true, foreign_key: true
9
+ t.references :customer, index: true, foreign_key: true
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,12 @@
1
+ class CreateBouquetStorages < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_storages do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :initial_quantity
7
+ t.references :stock, index: true, foreign_key: true
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ class CreateBouquetRetrievals < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :bouquet_retrievals do |t|
4
+ t.string :state
5
+ t.date :date
6
+ t.integer :quantity
7
+ t.references :storage, index: true, foreign_key: true
8
+ t.references :delivery, index: true, foreign_key: true
9
+
10
+ t.timestamps
11
+ end
12
+ end
13
+ end
@@ -2,9 +2,8 @@ module Bouquet
2
2
  module Core
3
3
  class Engine < ::Rails::Engine
4
4
  isolate_namespace Bouquet
5
- engine_name 'bouquet_core'
6
-
7
5
  config.generators do |g|
6
+ g.api_only = true
8
7
  g.test_framework :rspec, fixture: true
9
8
  g.fixture_replacement :factory_girl, dir: "spec/factories"
10
9
  end
@@ -1,5 +1,5 @@
1
1
  module Bouquet
2
2
  module Core
3
- VERSION = "0.0.1"
3
+ VERSION = '0.1.0'
4
4
  end
5
5
  end
@@ -2,5 +2,6 @@ require "bouquet/core/engine"
2
2
 
3
3
  module Bouquet
4
4
  module Core
5
+ # Your code goes here...
5
6
  end
6
7
  end
@@ -0,0 +1,4 @@
1
+
2
+ ```
3
+ $ rake db:drop; rake db:migrate; rake db:seed
4
+ ```
@@ -0,0 +1,6 @@
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
@@ -0,0 +1,3 @@
1
+
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -6,9 +6,9 @@
6
6
  * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
7
  *
8
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.
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
12
  *
13
13
  *= require_tree .
14
14
  *= require_self
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file. Action Cable runs in an EventMachine loop that does not support auto reloading.
2
+ module ApplicationCable
3
+ class Channel < ActionCable::Channel::Base
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file. Action Cable runs in an EventMachine loop that does not support auto reloading.
2
+ module ApplicationCable
3
+ class Connection < ActionCable::Connection::Base
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationController < ActionController::API
2
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationJob < ActiveJob::Base
2
+ end
@@ -0,0 +1,4 @@
1
+ class ApplicationMailer < ActionMailer::Base
2
+ default from: 'from@example.com'
3
+ layout 'mailer'
4
+ end
@@ -0,0 +1,3 @@
1
+ class ApplicationRecord < ActiveRecord::Base
2
+ self.abstract_class = true
3
+ end
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env ruby
2
+ require 'pathname'
3
+ require 'fileutils'
4
+ include FileUtils
5
+
6
+ # path to your application root.
7
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
+
9
+ def system!(*args)
10
+ system(*args) || abort("\n== Command #{args} failed ==")
11
+ end
12
+
13
+ chdir APP_ROOT do
14
+ # This script is a starting point to setup your application.
15
+ # Add necessary setup steps to this file.
16
+
17
+ puts '== Installing dependencies =='
18
+ system! 'gem install bundler --conservative'
19
+ system('bundle check') or system!('bundle install')
20
+
21
+ # puts "\n== Copying sample files =="
22
+ # unless File.exist?('config/database.yml')
23
+ # cp 'config/database.yml.sample', 'config/database.yml'
24
+ # end
25
+
26
+ puts "\n== Preparing database =="
27
+ system! 'bin/rails db:setup'
28
+
29
+ puts "\n== Removing old logs and tempfiles =="
30
+ system! 'bin/rails log:clear tmp:clear'
31
+
32
+ puts "\n== Restarting application server =="
33
+ system! 'bin/rails restart'
34
+ end
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ require 'pathname'
3
+ require 'fileutils'
4
+ include FileUtils
5
+
6
+ # path to your application root.
7
+ APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
+
9
+ def system!(*args)
10
+ system(*args) || abort("\n== Command #{args} failed ==")
11
+ end
12
+
13
+ chdir APP_ROOT do
14
+ # This script is a way to update your development environment automatically.
15
+ # Add necessary update steps to this file.
16
+
17
+ puts '== Installing dependencies =='
18
+ system! 'gem install bundler --conservative'
19
+ system 'bundle check' or system! 'bundle install'
20
+
21
+ puts "\n== Updating database =="
22
+ system! 'bin/rails db:migrate'
23
+
24
+ puts "\n== Removing old logs and tempfiles =="
25
+ system! 'bin/rails log:clear tmp:clear'
26
+
27
+ puts "\n== Restarting application server =="
28
+ system! 'bin/rails restart'
29
+ end
@@ -0,0 +1,26 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "action_view/railtie"
8
+ require "sprockets/railtie"
9
+ # require "rails/test_unit/railtie"
10
+
11
+ Bundler.require(*Rails.groups)
12
+ require "bouquet/core"
13
+
14
+ module Dummy
15
+ class Application < Rails::Application
16
+ # Settings in config/environments/* take precedence over those specified here.
17
+ # Application configuration should go into files in config/initializers
18
+ # -- all .rb files in that directory are automatically loaded.
19
+
20
+ # Only loads a smaller set of middleware suitable for API only apps.
21
+ # Middleware like session, flash, cookies can be added back manually.
22
+ # Skip views, helpers and assets when generating a new resource.
23
+ config.api_only = true
24
+ end
25
+ end
26
+
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,43 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports.
13
+ config.consider_all_requests_local = true
14
+
15
+ # Enable/disable caching. By default caching is disabled.
16
+ if Rails.root.join('tmp/caching-dev.txt').exist?
17
+ config.action_controller.perform_caching = true
18
+ config.cache_store = :memory_store
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => 'public, max-age=172800'
21
+ }
22
+ else
23
+ config.action_controller.perform_caching = false
24
+ config.cache_store = :null_store
25
+ end
26
+
27
+ # Don't care if the mailer can't send.
28
+ config.action_mailer.raise_delivery_errors = false
29
+
30
+ # Print deprecation notices to the Rails logger.
31
+ config.active_support.deprecation = :log
32
+
33
+ # Raise an error on page load if there are pending migrations.
34
+ config.active_record.migration_error = :page_load
35
+
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+
40
+ # Use an evented file watcher to asynchronously detect changes in source code,
41
+ # routes, locales, etc. This feature depends on the listen gem.
42
+ # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
43
+ end
@@ -0,0 +1,70 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Disable serving static files from the `/public` folder by default since
18
+ # Apache or NGINX already handles this.
19
+ config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
20
+
21
+
22
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
23
+ # config.action_controller.asset_host = 'http://assets.example.com'
24
+
25
+ # Specifies the header that your server uses for sending files.
26
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
27
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
28
+
29
+ # Action Cable endpoint configuration
30
+ # config.action_cable.url = 'wss://example.com/cable'
31
+ # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
32
+
33
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
34
+ # config.force_ssl = true
35
+
36
+ # Use the lowest log level to ensure availability of diagnostic information
37
+ # when problems arise.
38
+ config.log_level = :debug
39
+
40
+ # Prepend all log lines with the following tags.
41
+ # config.log_tags = [ :subdomain, :request_id ]
42
+
43
+ # Use a different logger for distributed setups.
44
+ # require 'syslog/logger'
45
+ # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
46
+
47
+ # Use a different cache store in production.
48
+ # config.cache_store = :mem_cache_store
49
+
50
+ # Use a real queuing backend for Active Job (and separate queues per environment)
51
+ # config.active_job.queue_adapter = :resque
52
+ # config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
53
+
54
+ # Ignore bad email addresses and do not raise email delivery errors.
55
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
56
+ # config.action_mailer.raise_delivery_errors = false
57
+
58
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
59
+ # the I18n.default_locale when a translation cannot be found).
60
+ config.i18n.fallbacks = true
61
+
62
+ # Send deprecation notices to registered listeners.
63
+ config.active_support.deprecation = :notify
64
+
65
+ # Use default logging formatter so that PID and timestamp are not suppressed.
66
+ config.log_formatter = ::Logger::Formatter.new
67
+
68
+ # Do not dump schema after migrations.
69
+ config.active_record.dump_schema_after_migration = false
70
+ end
@@ -0,0 +1,44 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure public file server for tests with Cache-Control for performance.
16
+ config.public_file_server.enabled = true
17
+ config.public_file_server.headers = {
18
+ 'Cache-Control' => 'public, max-age=3600'
19
+ }
20
+
21
+ # Show full error reports and disable caching.
22
+ config.consider_all_requests_local = true
23
+ config.action_controller.perform_caching = false
24
+
25
+ # Raise exceptions instead of rendering exception templates.
26
+ config.action_dispatch.show_exceptions = false
27
+
28
+ # Disable request forgery protection in test environment.
29
+ config.action_controller.allow_forgery_protection = false
30
+
31
+ # Tell Action Mailer not to deliver emails to the real world.
32
+ # The :test delivery method accumulates sent emails in the
33
+ # ActionMailer::Base.deliveries array.
34
+ config.action_mailer.delivery_method = :test
35
+
36
+ # Randomize the order test cases are executed.
37
+ config.active_support.test_order = :random
38
+
39
+ # Print deprecation notices to the stderr.
40
+ config.active_support.deprecation = :stderr
41
+
42
+ # Raises error for missing translations
43
+ # config.action_view.raise_on_missing_translations = true
44
+ end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Require `belongs_to` associations by default. This is a new Rails 5.0 default,
4
+ # so introduced as a config to ensure apps made with earlier versions of Rails aren't affected when upgrading.
5
+ Rails.application.config.active_record.belongs_to_required_by_default = true
@@ -0,0 +1,6 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ApplicationController.renderer.defaults.merge!(
4
+ # http_host: 'example.org',
5
+ # https: false
6
+ # )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Do not halt callback chains when a callback returns false. This is a new Rails 5.0 default,
4
+ # so introduced as a config to ensure apps made with earlier versions of Rails aren't affected when upgrading.
5
+ ActiveSupport.halt_callback_chains_on_return_false = false
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Avoid CORS issues when API is called from the frontend app.
4
+ # Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests.
5
+
6
+ # Read more: https://github.com/cyu/rack-cors
7
+
8
+ # Rails.application.config.middleware.insert_before 0, Rack::Cors do
9
+ # allow do
10
+ # origins 'example.com'
11
+ #
12
+ # resource '*',
13
+ # headers: :any,
14
+ # methods: [:get, :post, :put, :patch, :delete, :options, :head]
15
+ # end
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf