seed_tray 0.1.1

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 (114) hide show
  1. checksums.yaml +7 -0
  2. data/app/assets/javascripts/seed_tray.js.coffee.erb +29 -0
  3. data/lib/seed_tray/data_attribute_helper.rb +7 -0
  4. data/lib/seed_tray/engine.rb +13 -0
  5. data/lib/seed_tray/version.rb +3 -0
  6. data/lib/seed_tray.rb +5 -0
  7. data/test/dummy/README.rdoc +28 -0
  8. data/test/dummy/Rakefile +6 -0
  9. data/test/dummy/app/assets/javascripts/application.js +13 -0
  10. data/test/dummy/app/assets/javascripts/fruit/bananas.coffee +3 -0
  11. data/test/dummy/app/assets/javascripts/static_pages.coffee +3 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  13. data/test/dummy/app/assets/stylesheets/fruit/bananas.scss +3 -0
  14. data/test/dummy/app/assets/stylesheets/static_pages.scss +3 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/controllers/fruit/bananas_controller.rb +5 -0
  17. data/test/dummy/app/controllers/static_pages_controller.rb +4 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/helpers/fruit/bananas_helper.rb +2 -0
  20. data/test/dummy/app/helpers/static_pages_helper.rb +2 -0
  21. data/test/dummy/app/views/fruit/bananas/index.html.erb +1 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/test/dummy/app/views/static_pages/index.html.erb +2 -0
  24. data/test/dummy/bin/bundle +3 -0
  25. data/test/dummy/bin/rails +4 -0
  26. data/test/dummy/bin/rake +4 -0
  27. data/test/dummy/bin/setup +29 -0
  28. data/test/dummy/config/application.rb +26 -0
  29. data/test/dummy/config/boot.rb +5 -0
  30. data/test/dummy/config/database.yml +25 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +41 -0
  33. data/test/dummy/config/environments/production.rb +79 -0
  34. data/test/dummy/config/environments/test.rb +42 -0
  35. data/test/dummy/config/initializers/assets.rb +11 -0
  36. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/test/dummy/config/initializers/inflections.rb +16 -0
  40. data/test/dummy/config/initializers/mime_types.rb +4 -0
  41. data/test/dummy/config/initializers/session_store.rb +3 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +23 -0
  44. data/test/dummy/config/routes.rb +59 -0
  45. data/test/dummy/config/secrets.yml +22 -0
  46. data/test/dummy/config.ru +4 -0
  47. data/test/dummy/db/test.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +0 -0
  49. data/test/dummy/log/test.log +312 -0
  50. data/test/dummy/public/404.html +67 -0
  51. data/test/dummy/public/422.html +67 -0
  52. data/test/dummy/public/500.html +66 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-ltXWY25uHvR-fu6nycmSwKjLCQBYMzh3Q_d4BjjDNk.cache +1 -0
  55. data/test/dummy/tmp/cache/assets/sprockets/v3.0/11XoEve2foO5i7sDneWrSkhHdBjGWPt9BaUnPSc3CAA.cache +1 -0
  56. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1vgxmAzi6n8WGst1G7yI3aIvBiAHYsSKecOpL9Z8Y2Q.cache +0 -0
  57. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2kTOu2s75MdbkT7znP7hmwj7oCf9zBsloovc6U6bkNo.cache +1 -0
  58. data/test/dummy/tmp/cache/assets/sprockets/v3.0/2zI792t6CjsWb3tk_IYXoE_R6Yo_9kIi3qKj8BTIMFo.cache +0 -0
  59. data/test/dummy/tmp/cache/assets/sprockets/v3.0/302ZQHthxKQT9jxtx9cxIpcKLYtKz0t2vooCeqBJkFw.cache +0 -0
  60. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3D2mIKQXwUMMlv-k_rZtigKKuAKYdjdJWvhrsub9Ltg.cache +0 -0
  61. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3FT5vNUF1WZ_GVFXL4yih909Lvbbw-jHw-_hhVIaq1M.cache +0 -0
  62. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  63. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6JYZFyzkp15GLqs3dLnNqVCgPigpjqg4WvAXzLbMIxs.cache +0 -0
  64. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7X9XxLazU6Jpb7ladMFdRiSI1EdYn7qsSbilPrACIPA.cache +2 -0
  65. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8npAYcW4E5L7C-WFPLt8RVufxovGZUBFSjtAniSN9HU.cache +2 -0
  66. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9yz_w8dBmWEXYBcfowIgF3FT4WYKsD4XztSI1l7hZl4.cache +1 -0
  67. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ah-3DWGGGabFUCPM_QZ5Ja7Oqn_ITxldtaGg1RfFeak.cache +0 -0
  68. data/test/dummy/tmp/cache/assets/sprockets/v3.0/E6RIH4WNjD50_2_uFJRvllQvBfwQItaVCe5ndO5kLGw.cache +2 -0
  69. data/test/dummy/tmp/cache/assets/sprockets/v3.0/EiVfG-P3rayqN-2zYXElBVuPTlPQuu2_rrWFCWHV7Yo.cache +0 -0
  70. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-BE41T3kMoz8ygS5leKL1Cctk8K-uYDH8OhRPcXAaU.cache +1 -0
  71. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-Xyv8Y75DJWTF9_Nnx8eSHi1Im2g07yt4GiFz_J7q0.cache +1 -0
  72. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gg0KRcUhFtFEhC235l9kHO4iPkFfAAoIt487stbYlAE.cache +1 -0
  73. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HwO4NHUYiyVFLiXSwHd66yGUTjpsLXcBPuBKoeNzoIY.cache +0 -0
  74. data/test/dummy/tmp/cache/assets/sprockets/v3.0/I7iW6zivxBrTN5epH4v4bui7tFJrLiIVDHo-krdZSTw.cache +1 -0
  75. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Khceh6obo_bmqDQa1tXw7KRmz3AaprOIC_nwm8xZtfY.cache +1 -0
  76. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LRGaLUq_uhxYJw2EqeDCZ84sZyDp0mJg5Do_pwJ33Z8.cache +1 -0
  77. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LVTY-TFzzkzvt7IpJc2QSMtvN6M105WrtoZBgneajfY.cache +1 -0
  78. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LekD6bZq8vDh9o7nAeK59GXNaKeWafNWUwtnfBjcSGI.cache +1 -0
  79. data/test/dummy/tmp/cache/assets/sprockets/v3.0/M_9ImNRR70L5s9ADtrwOD2NRZma_3NQNyovaQzGs6RI.cache +0 -0
  80. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MhYdf5ObWasa7IQM4mtIJ_6kbD9ijHxZb95qFt4rexQ.cache +0 -0
  81. data/test/dummy/tmp/cache/assets/sprockets/v3.0/N60GUP6p3AMiqQR_6HZYSKLwe9wJxYGQil-4Vjl744o.cache +2 -0
  82. data/test/dummy/tmp/cache/assets/sprockets/v3.0/N8tFgo4zKXBfKYqFAfnGmtTGzXx9-FSmtTfDOSVhUOk.cache +0 -0
  83. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  84. data/test/dummy/tmp/cache/assets/sprockets/v3.0/PBUHTSYgcJZUzunboBlFRVuz89PvkgHKl_LQsVsr8wQ.cache +1 -0
  85. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q9tS1kaJ8QVSFgepmprdaBMQniWrBVw3saA61j3G0ZE.cache +1 -0
  86. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ttb9TLWqTVU7daf1tgzep6niHuuDVnM01zcjczGiaWM.cache +2 -0
  87. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VNL05lzHpJC6ye0FiDwbPFBpAS6YV4dWtfOD-y_J_GA.cache +0 -0
  88. data/test/dummy/tmp/cache/assets/sprockets/v3.0/XNVbJkkhEkALCT8C3ult4C3DWTktZUGwVaypY3sTWyE.cache +1 -0
  89. data/test/dummy/tmp/cache/assets/sprockets/v3.0/XW2L7AQXELxflduD7sGcSOWMX86cPQhACO3wvThLsQU.cache +2 -0
  90. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_RXjQc1rsjwkWhQ43CLy0h6oz8TBPZn8IpPBpJ_2BGc.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ee9ZqYM3D8GORlAyhQhVVtyNcEArBAXuuAcPhnfTNT8.cache +5 -0
  92. data/test/dummy/tmp/cache/assets/sprockets/v3.0/evN3jikQJXLGbmJ1mntX301mnhVrU55CAwt2rXb78NA.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fFQHyri-2V7F_RJIAP0MoA7s5NDk5xLzdnFe7nlSYSM.cache +0 -0
  94. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ffEqWpK2PBt2Wtsi3_RnPAYgnqZJSvVR9hV8MxrAt_k.cache +1 -0
  95. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  96. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hmdkI4N_2JlkILvfv2TSmlH1W93LHqQndAgGfHWdKQs.cache +1 -0
  97. data/test/dummy/tmp/cache/assets/sprockets/v3.0/j2BKEt8iGrSaqBu0r73SVmE8p_pjw5r6PKDOb37Qlec.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kmI0Q3jN2owHgFwivFwzLS0rBRbS5_lx3GfKdARPShE.cache +1 -0
  99. data/test/dummy/tmp/cache/assets/sprockets/v3.0/la_rVXZKcWPHXl5byjAO3S8JgTsobrFLEz8rFH75Cqg.cache +1 -0
  100. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lcRMCUJP5_KtKIFsp8JR66FaoL1Q5quKzPHjYHrFf5A.cache +2 -0
  101. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mtyDWHbgesCBkR98cxCYNKGQ3OvHF2aDd3KReh6OKjI.cache +2 -0
  102. data/test/dummy/tmp/cache/assets/sprockets/v3.0/orpJlH0DKoPPISB3N6UFTdp13ocxrfRo1EIhfv8gxvk.cache +1 -0
  103. data/test/dummy/tmp/cache/assets/sprockets/v3.0/p4b8lYpOXtkebdyJPIJdV7Ufo4cAlOIoAaDiiHLoqTg.cache +0 -0
  104. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  105. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qwGoFdPkKtzLWc3WIgNyJ9GZzURXIqufjuiGaDZBQsY.cache +1 -0
  106. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sbTFkeEcqJGQRwokCz16UY2OB3wC1nYH1HVTaJahmLs.cache +1 -0
  107. data/test/dummy/tmp/cache/assets/sprockets/v3.0/suMdTl9F0jMxaotMkZSGuaf4yKVFOKKYYT2gXFRxcBU.cache +2 -0
  108. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yxwZJvy1nXY8wejJN4GRFo1J41J_g_ksjOV8uN-6B8M.cache +2 -0
  109. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zN0XIm5rEmo6a3vfgRDCtFJXQxPfYKqzv3_zwimOVGM.cache +1 -0
  110. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zTwZ2Qx4BbMLXrXLSfp5szaT0Mo7h_UtEFC1sqe7M_4.cache +1 -0
  111. data/test/helpers/data_attribute_helper_test.rb +16 -0
  112. data/test/seed_tray_test.rb +7 -0
  113. data/test/test_helper.rb +20 -0
  114. metadata +375 -0
@@ -0,0 +1,59 @@
1
+ Rails.application.routes.draw do
2
+ get 'static_pages/index'
3
+ get 'fruit/bananas/index'
4
+
5
+ # The priority is based upon order of creation: first created -> highest priority.
6
+ # See how all your routes lay out with "rake routes".
7
+
8
+ # You can have the root of your site routed with "root"
9
+ # root 'welcome#index'
10
+
11
+ # Example of regular route:
12
+ # get 'products/:id' => 'catalog#view'
13
+
14
+ # Example of named route that can be invoked with purchase_url(id: product.id)
15
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
16
+
17
+ # Example resource route (maps HTTP verbs to controller actions automatically):
18
+ # resources :products
19
+
20
+ # Example resource route with options:
21
+ # resources :products do
22
+ # member do
23
+ # get 'short'
24
+ # post 'toggle'
25
+ # end
26
+ #
27
+ # collection do
28
+ # get 'sold'
29
+ # end
30
+ # end
31
+
32
+ # Example resource route with sub-resources:
33
+ # resources :products do
34
+ # resources :comments, :sales
35
+ # resource :seller
36
+ # end
37
+
38
+ # Example resource route with more complex sub-resources:
39
+ # resources :products do
40
+ # resources :comments
41
+ # resources :sales do
42
+ # get 'recent', on: :collection
43
+ # end
44
+ # end
45
+
46
+ # Example resource route with concerns:
47
+ # concern :toggleable do
48
+ # post 'toggle'
49
+ # end
50
+ # resources :posts, concerns: :toggleable
51
+ # resources :photos, concerns: :toggleable
52
+
53
+ # Example resource route within a namespace:
54
+ # namespace :admin do
55
+ # # Directs /admin/products/* to Admin::ProductsController
56
+ # # (app/controllers/admin/products_controller.rb)
57
+ # resources :products
58
+ # end
59
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c24e50ea31256f8c4d9f67541b5a4159b5a2ace6d89f69aab03553cc5a15ee6f17aec7f1e5b8ce242ca3aa729990b168844fd83321d2918ccffa5e22537a08da
15
+
16
+ test:
17
+ secret_key_base: 0ac199f0c37ebef8d5c65a3ef009b6ee8db6ad33fd6065405554e611d8f9a0cd3346a92346f568c4ad72f94027568777232eb421c5835eeb387a0c822e4f8e5e
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
File without changes
File without changes
@@ -0,0 +1,312 @@
1
+  (0.1ms) begin transaction
2
+ -------------------------------------------------------------------
3
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
4
+ -------------------------------------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ------------------------
8
+ SeedTrayTest: test_truth
9
+ ------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ------------------------
13
+ SeedTrayTest: test_truth
14
+ ------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ -------------------------------------------------------------------
18
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
19
+ -------------------------------------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ------------------------
23
+ SeedTrayTest: test_truth
24
+ ------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+ -------------------------------------
28
+ StaticPagesControllerTest: test_index
29
+ -------------------------------------
30
+ Processing by StaticPagesController#index as HTML
31
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
32
+ Completed 200 OK in 419ms (Views: 418.5ms | ActiveRecord: 0.0ms)
33
+  (0.1ms) rollback transaction
34
+  (0.0ms) begin transaction
35
+ -------------------------------------------------------------------
36
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
37
+ -------------------------------------------------------------------
38
+ Processing by StaticPagesController#index as HTML
39
+ Rendered static_pages/index.html.erb within layouts/application (0.1ms)
40
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
41
+  (0.0ms) rollback transaction
42
+  (0.0ms) begin transaction
43
+ ----------------------------------
44
+ StaticPagesHelperTest: test_sanity
45
+ ----------------------------------
46
+  (0.0ms) rollback transaction
47
+  (0.1ms) begin transaction
48
+ ------------------------
49
+ SeedTrayTest: test_truth
50
+ ------------------------
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+ -------------------------------------------------------------------
54
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
55
+ -------------------------------------------------------------------
56
+ Processing by StaticPagesController#index as HTML
57
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
58
+ Completed 200 OK in 215ms (Views: 215.0ms | ActiveRecord: 0.0ms)
59
+  (0.0ms) rollback transaction
60
+  (0.1ms) begin transaction
61
+ -------------------------------------------------------------------
62
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
63
+ -------------------------------------------------------------------
64
+ Processing by StaticPagesController#index as HTML
65
+ Rendered static_pages/index.html.erb within layouts/application (0.8ms)
66
+ Completed 200 OK in 223ms (Views: 222.6ms | ActiveRecord: 0.0ms)
67
+  (0.1ms) rollback transaction
68
+  (0.0ms) begin transaction
69
+ ------------------------
70
+ SeedTrayTest: test_truth
71
+ ------------------------
72
+  (0.0ms) rollback transaction
73
+  (0.1ms) begin transaction
74
+ ------------------------
75
+ SeedTrayTest: test_truth
76
+ ------------------------
77
+  (0.0ms) rollback transaction
78
+  (0.0ms) begin transaction
79
+ -------------------------------------------------------------------
80
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
81
+ -------------------------------------------------------------------
82
+  (0.0ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+ -------------------------------------------------------------------
85
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
86
+ -------------------------------------------------------------------
87
+  (0.0ms) rollback transaction
88
+  (0.0ms) begin transaction
89
+ ------------------------
90
+ SeedTrayTest: test_truth
91
+ ------------------------
92
+  (0.0ms) rollback transaction
93
+  (0.1ms) begin transaction
94
+ -------------------------------------------------------------------
95
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
96
+ -------------------------------------------------------------------
97
+ Processing by StaticPagesController#index as HTML
98
+ Rendered static_pages/index.html.erb within layouts/application (0.7ms)
99
+ Completed 200 OK in 224ms (Views: 223.4ms | ActiveRecord: 0.0ms)
100
+  (0.1ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ ------------------------
103
+ SeedTrayTest: test_truth
104
+ ------------------------
105
+  (0.0ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ ------------------------
108
+ SeedTrayTest: test_truth
109
+ ------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ -------------------------------------------------------------------
113
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
114
+ -------------------------------------------------------------------
115
+ Processing by StaticPagesController#index as HTML
116
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
117
+ Completed 200 OK in 218ms (Views: 217.8ms | ActiveRecord: 0.0ms)
118
+  (0.0ms) rollback transaction
119
+  (0.1ms) begin transaction
120
+ ------------------------
121
+ SeedTrayTest: test_truth
122
+ ------------------------
123
+  (0.0ms) rollback transaction
124
+  (0.0ms) begin transaction
125
+ -------------------------------------------------------------------
126
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
127
+ -------------------------------------------------------------------
128
+ Processing by StaticPagesController#index as HTML
129
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
130
+ Completed 200 OK in 216ms (Views: 216.2ms | ActiveRecord: 0.0ms)
131
+  (0.0ms) rollback transaction
132
+  (0.1ms) begin transaction
133
+ ------------------------
134
+ SeedTrayTest: test_truth
135
+ ------------------------
136
+  (0.0ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ -------------------------------------------------------------------
139
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
140
+ -------------------------------------------------------------------
141
+ Processing by StaticPagesController#index as HTML
142
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
143
+ Completed 200 OK in 220ms (Views: 220.2ms | ActiveRecord: 0.0ms)
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+ ------------------------
147
+ SeedTrayTest: test_truth
148
+ ------------------------
149
+  (0.0ms) rollback transaction
150
+  (0.0ms) begin transaction
151
+ -------------------------------------------------------------------
152
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
153
+ -------------------------------------------------------------------
154
+ Processing by StaticPagesController#index as HTML
155
+ Rendered static_pages/index.html.erb within layouts/application (0.7ms)
156
+ Completed 200 OK in 224ms (Views: 224.3ms | ActiveRecord: 0.0ms)
157
+  (0.1ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+ -------------------------------------------------------------------
160
+ StaticPagesControllerTest: test_helper_should_return_data_attribute
161
+ -------------------------------------------------------------------
162
+ Processing by StaticPagesController#index as HTML
163
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
164
+ Completed 200 OK in 223ms (Views: 222.9ms | ActiveRecord: 0.0ms)
165
+  (0.0ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+ ------------------------
168
+ SeedTrayTest: test_truth
169
+ ------------------------
170
+  (0.0ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ ------------------------
173
+ SeedTrayTest: test_truth
174
+ ------------------------
175
+  (0.0ms) rollback transaction
176
+  (0.0ms) begin transaction
177
+ -------------------------------------------------------------------------------------
178
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
179
+ -------------------------------------------------------------------------------------
180
+  (0.0ms) rollback transaction
181
+  (0.0ms) begin transaction
182
+ ----------------------------------------------------------------------------------
183
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
184
+ ----------------------------------------------------------------------------------
185
+ Processing by StaticPagesController#index as HTML
186
+ Rendered static_pages/index.html.erb within layouts/application (0.7ms)
187
+ Completed 200 OK in 235ms (Views: 234.6ms | ActiveRecord: 0.0ms)
188
+  (0.1ms) rollback transaction
189
+  (0.1ms) begin transaction
190
+ ------------------------
191
+ SeedTrayTest: test_truth
192
+ ------------------------
193
+  (0.0ms) rollback transaction
194
+  (0.0ms) begin transaction
195
+ -------------------------------------------------------------------------------------
196
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
197
+ -------------------------------------------------------------------------------------
198
+ Processing by Fruit::BananasController#index as HTML
199
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
200
+  (0.0ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+ ----------------------------------------------------------------------------------
203
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
204
+ ----------------------------------------------------------------------------------
205
+ Processing by StaticPagesController#index as HTML
206
+ Rendered static_pages/index.html.erb within layouts/application (0.8ms)
207
+ Completed 200 OK in 216ms (Views: 215.7ms | ActiveRecord: 0.0ms)
208
+  (0.0ms) rollback transaction
209
+  (0.1ms) begin transaction
210
+ ----------------------------------------------------------------------------------
211
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
212
+ ----------------------------------------------------------------------------------
213
+ Processing by StaticPagesController#index as HTML
214
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
215
+ Completed 200 OK in 224ms (Views: 223.6ms | ActiveRecord: 0.0ms)
216
+  (0.0ms) rollback transaction
217
+  (0.0ms) begin transaction
218
+ -------------------------------------------------------------------------------------
219
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
220
+ -------------------------------------------------------------------------------------
221
+ Processing by Fruit::BananasController#index as HTML
222
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
223
+  (0.0ms) rollback transaction
224
+  (0.0ms) begin transaction
225
+ ------------------------
226
+ SeedTrayTest: test_truth
227
+ ------------------------
228
+  (0.0ms) rollback transaction
229
+  (0.1ms) begin transaction
230
+ ----------------------------------------------------------------------------------
231
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
232
+ ----------------------------------------------------------------------------------
233
+ Processing by StaticPagesController#index as HTML
234
+ Rendered static_pages/index.html.erb within layouts/application (0.6ms)
235
+ Completed 200 OK in 220ms (Views: 219.4ms | ActiveRecord: 0.0ms)
236
+  (0.0ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+ ------------------------
239
+ SeedTrayTest: test_truth
240
+ ------------------------
241
+  (0.0ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+ -------------------------------------------------------------------------------------
244
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
245
+ -------------------------------------------------------------------------------------
246
+ Processing by Fruit::BananasController#index as HTML
247
+ Rendered fruit/bananas/index.html.erb within layouts/application (2.6ms)
248
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
249
+  (0.0ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+ -------------------------------------------------------------------------------------
252
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
253
+ -------------------------------------------------------------------------------------
254
+ Processing by Fruit::BananasController#index as HTML
255
+ Rendered fruit/bananas/index.html.erb within layouts/application (0.8ms)
256
+ Completed 200 OK in 228ms (Views: 227.9ms | ActiveRecord: 0.0ms)
257
+  (0.0ms) rollback transaction
258
+  (0.1ms) begin transaction
259
+ ----------------------------------------------------------------------------------
260
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
261
+ ----------------------------------------------------------------------------------
262
+ Processing by StaticPagesController#index as HTML
263
+ Rendered static_pages/index.html.erb within layouts/application (0.2ms)
264
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
265
+  (0.1ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ ------------------------
268
+ SeedTrayTest: test_truth
269
+ ------------------------
270
+  (0.0ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ -------------------------------------------------------------------------------------
273
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
274
+ -------------------------------------------------------------------------------------
275
+ Processing by Fruit::BananasController#index as HTML
276
+ Rendered fruit/bananas/index.html.erb within layouts/application (0.6ms)
277
+ Completed 200 OK in 233ms (Views: 233.1ms | ActiveRecord: 0.0ms)
278
+  (0.0ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+ ------------------------
281
+ SeedTrayTest: test_truth
282
+ ------------------------
283
+  (0.0ms) rollback transaction
284
+  (0.0ms) begin transaction
285
+ ----------------------------------------------------------------------------------
286
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
287
+ ----------------------------------------------------------------------------------
288
+ Processing by StaticPagesController#index as HTML
289
+ Rendered static_pages/index.html.erb within layouts/application (0.2ms)
290
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
291
+  (0.0ms) rollback transaction
292
+  (0.1ms) begin transaction
293
+ ----------------------------------------------------------------------------------
294
+ StaticPagesControllerTest: test_helper_should_return_data_attribute_for_controller
295
+ ----------------------------------------------------------------------------------
296
+ Processing by StaticPagesController#index as HTML
297
+ Rendered static_pages/index.html.erb within layouts/application (0.7ms)
298
+ Completed 200 OK in 229ms (Views: 228.7ms | ActiveRecord: 0.0ms)
299
+  (0.0ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ ------------------------
302
+ SeedTrayTest: test_truth
303
+ ------------------------
304
+  (0.0ms) rollback transaction
305
+  (0.0ms) begin transaction
306
+ -------------------------------------------------------------------------------------
307
+ Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
308
+ -------------------------------------------------------------------------------------
309
+ Processing by Fruit::BananasController#index as HTML
310
+ Rendered fruit/bananas/index.html.erb within layouts/application (0.2ms)
311
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
312
+  (0.0ms) rollback transaction
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1 @@
1
+ "%��1�>t��A"Lb��vd�!(e�Y���k
@@ -0,0 +1 @@
1
+ I"�app/assets/stylesheets/static_pages.scss?type=text/css&pipeline=self&id=fdc71a0bae00d618b819e6bb212cad86f146355f8bb0b5da86a17d7a117c0459:ET
@@ -0,0 +1 @@
1
+ "%Ѱč@�����6H�uZoX�Z�gbh0W��V
@@ -0,0 +1,2 @@
1
+ [o:Set:
2
+ @hash} I"environment-version:ETTI"environment-paths;TTI"Lprocessors:type=text/css&file_type=text/css&engines=.scss&pipeline=self;TTI";file-digest://app/assets/stylesheets/static_pages.scss;TTF
@@ -0,0 +1,2 @@
1
+ "%�+�
2
+ ���/M .6�'�� ,`�mʸ}��J��=
@@ -0,0 +1 @@
1
+ I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=1f6ff0b2018f7e6e022b4ec2e4e2d73fdf614da19ee80b58fd9563e6dc11471c:ET
@@ -0,0 +1,2 @@
1
+ "%��떜1��.j��jK�lZ�'
2
+ �ƕ�v׬���VJ
@@ -0,0 +1 @@
1
+ "%�D�����#+��R=��������@7����|(
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/static_pages.coffee?type=application/javascript&pipeline=self&id=178e88273e698286f23544cd754d4dee729257ac9a31f97760469a8baac9412b:ET
@@ -0,0 +1 @@
1
+ I"�app/assets/javascripts/fruit/bananas.coffee?type=application/javascript&pipeline=self&id=359bcdf464feec3b2b8fcc185efca8a3fd1b791b12a248d173c9b41985d85d80:ET