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.
- checksums.yaml +7 -0
- data/app/assets/javascripts/seed_tray.js.coffee.erb +29 -0
- data/lib/seed_tray/data_attribute_helper.rb +7 -0
- data/lib/seed_tray/engine.rb +13 -0
- data/lib/seed_tray/version.rb +3 -0
- data/lib/seed_tray.rb +5 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/javascripts/fruit/bananas.coffee +3 -0
- data/test/dummy/app/assets/javascripts/static_pages.coffee +3 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/fruit/bananas.scss +3 -0
- data/test/dummy/app/assets/stylesheets/static_pages.scss +3 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/fruit/bananas_controller.rb +5 -0
- data/test/dummy/app/controllers/static_pages_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/fruit/bananas_helper.rb +2 -0
- data/test/dummy/app/helpers/static_pages_helper.rb +2 -0
- data/test/dummy/app/views/fruit/bananas/index.html.erb +1 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/static_pages/index.html.erb +2 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +59 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +312 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/-ltXWY25uHvR-fu6nycmSwKjLCQBYMzh3Q_d4BjjDNk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/11XoEve2foO5i7sDneWrSkhHdBjGWPt9BaUnPSc3CAA.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/1vgxmAzi6n8WGst1G7yI3aIvBiAHYsSKecOpL9Z8Y2Q.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2kTOu2s75MdbkT7znP7hmwj7oCf9zBsloovc6U6bkNo.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/2zI792t6CjsWb3tk_IYXoE_R6Yo_9kIi3qKj8BTIMFo.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/302ZQHthxKQT9jxtx9cxIpcKLYtKz0t2vooCeqBJkFw.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3D2mIKQXwUMMlv-k_rZtigKKuAKYdjdJWvhrsub9Ltg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/3FT5vNUF1WZ_GVFXL4yih909Lvbbw-jHw-_hhVIaq1M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/6JYZFyzkp15GLqs3dLnNqVCgPigpjqg4WvAXzLbMIxs.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/7X9XxLazU6Jpb7ladMFdRiSI1EdYn7qsSbilPrACIPA.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/8npAYcW4E5L7C-WFPLt8RVufxovGZUBFSjtAniSN9HU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/9yz_w8dBmWEXYBcfowIgF3FT4WYKsD4XztSI1l7hZl4.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ah-3DWGGGabFUCPM_QZ5Ja7Oqn_ITxldtaGg1RfFeak.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/E6RIH4WNjD50_2_uFJRvllQvBfwQItaVCe5ndO5kLGw.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/EiVfG-P3rayqN-2zYXElBVuPTlPQuu2_rrWFCWHV7Yo.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-BE41T3kMoz8ygS5leKL1Cctk8K-uYDH8OhRPcXAaU.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-Xyv8Y75DJWTF9_Nnx8eSHi1Im2g07yt4GiFz_J7q0.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gg0KRcUhFtFEhC235l9kHO4iPkFfAAoIt487stbYlAE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/HwO4NHUYiyVFLiXSwHd66yGUTjpsLXcBPuBKoeNzoIY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/I7iW6zivxBrTN5epH4v4bui7tFJrLiIVDHo-krdZSTw.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Khceh6obo_bmqDQa1tXw7KRmz3AaprOIC_nwm8xZtfY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LRGaLUq_uhxYJw2EqeDCZ84sZyDp0mJg5Do_pwJ33Z8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LVTY-TFzzkzvt7IpJc2QSMtvN6M105WrtoZBgneajfY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LekD6bZq8vDh9o7nAeK59GXNaKeWafNWUwtnfBjcSGI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/M_9ImNRR70L5s9ADtrwOD2NRZma_3NQNyovaQzGs6RI.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/MhYdf5ObWasa7IQM4mtIJ_6kbD9ijHxZb95qFt4rexQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/N60GUP6p3AMiqQR_6HZYSKLwe9wJxYGQil-4Vjl744o.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/N8tFgo4zKXBfKYqFAfnGmtTGzXx9-FSmtTfDOSVhUOk.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/PBUHTSYgcJZUzunboBlFRVuz89PvkgHKl_LQsVsr8wQ.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Q9tS1kaJ8QVSFgepmprdaBMQniWrBVw3saA61j3G0ZE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ttb9TLWqTVU7daf1tgzep6niHuuDVnM01zcjczGiaWM.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/VNL05lzHpJC6ye0FiDwbPFBpAS6YV4dWtfOD-y_J_GA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/XNVbJkkhEkALCT8C3ult4C3DWTktZUGwVaypY3sTWyE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/XW2L7AQXELxflduD7sGcSOWMX86cPQhACO3wvThLsQU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/_RXjQc1rsjwkWhQ43CLy0h6oz8TBPZn8IpPBpJ_2BGc.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ee9ZqYM3D8GORlAyhQhVVtyNcEArBAXuuAcPhnfTNT8.cache +5 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/evN3jikQJXLGbmJ1mntX301mnhVrU55CAwt2rXb78NA.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/fFQHyri-2V7F_RJIAP0MoA7s5NDk5xLzdnFe7nlSYSM.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/ffEqWpK2PBt2Wtsi3_RnPAYgnqZJSvVR9hV8MxrAt_k.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hmdkI4N_2JlkILvfv2TSmlH1W93LHqQndAgGfHWdKQs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/j2BKEt8iGrSaqBu0r73SVmE8p_pjw5r6PKDOb37Qlec.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/kmI0Q3jN2owHgFwivFwzLS0rBRbS5_lx3GfKdARPShE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/la_rVXZKcWPHXl5byjAO3S8JgTsobrFLEz8rFH75Cqg.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lcRMCUJP5_KtKIFsp8JR66FaoL1Q5quKzPHjYHrFf5A.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/mtyDWHbgesCBkR98cxCYNKGQ3OvHF2aDd3KReh6OKjI.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/orpJlH0DKoPPISB3N6UFTdp13ocxrfRo1EIhfv8gxvk.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/p4b8lYpOXtkebdyJPIJdV7Ufo4cAlOIoAaDiiHLoqTg.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/qwGoFdPkKtzLWc3WIgNyJ9GZzURXIqufjuiGaDZBQsY.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/sbTFkeEcqJGQRwokCz16UY2OB3wC1nYH1HVTaJahmLs.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/suMdTl9F0jMxaotMkZSGuaf4yKVFOKKYYT2gXFRxcBU.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/yxwZJvy1nXY8wejJN4GRFo1J41J_g_ksjOV8uN-6B8M.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zN0XIm5rEmo6a3vfgRDCtFJXQxPfYKqzv3_zwimOVGM.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zTwZ2Qx4BbMLXrXLSfp5szaT0Mo7h_UtEFC1sqe7M_4.cache +1 -0
- data/test/helpers/data_attribute_helper_test.rb +16 -0
- data/test/seed_tray_test.rb +7 -0
- data/test/test_helper.rb +20 -0
- 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"] %>
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2
|
+
-------------------------------------------------------------------
|
|
3
|
+
StaticPagesControllerTest: test_helper_should_return_data_attribute
|
|
4
|
+
-------------------------------------------------------------------
|
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
7
|
+
------------------------
|
|
8
|
+
SeedTrayTest: test_truth
|
|
9
|
+
------------------------
|
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
12
|
+
------------------------
|
|
13
|
+
SeedTrayTest: test_truth
|
|
14
|
+
------------------------
|
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
16
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
17
|
+
-------------------------------------------------------------------
|
|
18
|
+
StaticPagesControllerTest: test_helper_should_return_data_attribute
|
|
19
|
+
-------------------------------------------------------------------
|
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
21
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
22
|
+
------------------------
|
|
23
|
+
SeedTrayTest: test_truth
|
|
24
|
+
------------------------
|
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
26
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
34
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
42
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
43
|
+
----------------------------------
|
|
44
|
+
StaticPagesHelperTest: test_sanity
|
|
45
|
+
----------------------------------
|
|
46
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
47
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
48
|
+
------------------------
|
|
49
|
+
SeedTrayTest: test_truth
|
|
50
|
+
------------------------
|
|
51
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
52
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
60
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
68
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
69
|
+
------------------------
|
|
70
|
+
SeedTrayTest: test_truth
|
|
71
|
+
------------------------
|
|
72
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
73
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
74
|
+
------------------------
|
|
75
|
+
SeedTrayTest: test_truth
|
|
76
|
+
------------------------
|
|
77
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
78
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
79
|
+
-------------------------------------------------------------------
|
|
80
|
+
StaticPagesControllerTest: test_helper_should_return_data_attribute
|
|
81
|
+
-------------------------------------------------------------------
|
|
82
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
83
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
84
|
+
-------------------------------------------------------------------
|
|
85
|
+
StaticPagesControllerTest: test_helper_should_return_data_attribute
|
|
86
|
+
-------------------------------------------------------------------
|
|
87
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
88
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
89
|
+
------------------------
|
|
90
|
+
SeedTrayTest: test_truth
|
|
91
|
+
------------------------
|
|
92
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
93
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
101
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
102
|
+
------------------------
|
|
103
|
+
SeedTrayTest: test_truth
|
|
104
|
+
------------------------
|
|
105
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
107
|
+
------------------------
|
|
108
|
+
SeedTrayTest: test_truth
|
|
109
|
+
------------------------
|
|
110
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
119
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
120
|
+
------------------------
|
|
121
|
+
SeedTrayTest: test_truth
|
|
122
|
+
------------------------
|
|
123
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
124
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
132
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
133
|
+
------------------------
|
|
134
|
+
SeedTrayTest: test_truth
|
|
135
|
+
------------------------
|
|
136
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
146
|
+
------------------------
|
|
147
|
+
SeedTrayTest: test_truth
|
|
148
|
+
------------------------
|
|
149
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
166
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
167
|
+
------------------------
|
|
168
|
+
SeedTrayTest: test_truth
|
|
169
|
+
------------------------
|
|
170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
171
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
172
|
+
------------------------
|
|
173
|
+
SeedTrayTest: test_truth
|
|
174
|
+
------------------------
|
|
175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
177
|
+
-------------------------------------------------------------------------------------
|
|
178
|
+
Fruit::BananasControllerTest: test_helper_should_return_data_attribute_for_controller
|
|
179
|
+
-------------------------------------------------------------------------------------
|
|
180
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
189
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
190
|
+
------------------------
|
|
191
|
+
SeedTrayTest: test_truth
|
|
192
|
+
------------------------
|
|
193
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
194
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
209
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
225
|
+
------------------------
|
|
226
|
+
SeedTrayTest: test_truth
|
|
227
|
+
------------------------
|
|
228
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
237
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
238
|
+
------------------------
|
|
239
|
+
SeedTrayTest: test_truth
|
|
240
|
+
------------------------
|
|
241
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
250
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
258
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
267
|
+
------------------------
|
|
268
|
+
SeedTrayTest: test_truth
|
|
269
|
+
------------------------
|
|
270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
271
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
279
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
280
|
+
------------------------
|
|
281
|
+
SeedTrayTest: test_truth
|
|
282
|
+
------------------------
|
|
283
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
301
|
+
------------------------
|
|
302
|
+
SeedTrayTest: test_truth
|
|
303
|
+
------------------------
|
|
304
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.0ms)[0m 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
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/-ltXWY25uHvR-fu6nycmSwKjLCQBYMzh3Q_d4BjjDNk.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%��1�>t��A"Lb��vd�!(e�Y���k
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/11XoEve2foO5i7sDneWrSkhHdBjGWPt9BaUnPSc3CAA.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/stylesheets/static_pages.scss?type=text/css&pipeline=self&id=fdc71a0bae00d618b819e6bb212cad86f146355f8bb0b5da86a17d7a117c0459:ET
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/1vgxmAzi6n8WGst1G7yI3aIvBiAHYsSKecOpL9Z8Y2Q.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/2kTOu2s75MdbkT7znP7hmwj7oCf9zBsloovc6U6bkNo.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%Ѱč@�����6H�uZoX�Z�gbh0W��V
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/2zI792t6CjsWb3tk_IYXoE_R6Yo_9kIi3qKj8BTIMFo.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/302ZQHthxKQT9jxtx9cxIpcKLYtKz0t2vooCeqBJkFw.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/3D2mIKQXwUMMlv-k_rZtigKKuAKYdjdJWvhrsub9Ltg.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/3FT5vNUF1WZ_GVFXL4yih909Lvbbw-jHw-_hhVIaq1M.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/6JYZFyzkp15GLqs3dLnNqVCgPigpjqg4WvAXzLbMIxs.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/9yz_w8dBmWEXYBcfowIgF3FT4WYKsD4XztSI1l7hZl4.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=1f6ff0b2018f7e6e022b4ec2e4e2d73fdf614da19ee80b58fd9563e6dc11471c:ET
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ah-3DWGGGabFUCPM_QZ5Ja7Oqn_ITxldtaGg1RfFeak.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/EiVfG-P3rayqN-2zYXElBVuPTlPQuu2_rrWFCWHV7Yo.cache
ADDED
|
Binary file
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-BE41T3kMoz8ygS5leKL1Cctk8K-uYDH8OhRPcXAaU.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"%�D�����#+��R=��������@7����|(
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/F-Xyv8Y75DJWTF9_Nnx8eSHi1Im2g07yt4GiFz_J7q0.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/javascripts/static_pages.coffee?type=application/javascript&pipeline=self&id=178e88273e698286f23544cd754d4dee729257ac9a31f97760469a8baac9412b:ET
|
data/test/dummy/tmp/cache/assets/sprockets/v3.0/Gg0KRcUhFtFEhC235l9kHO4iPkFfAAoIt487stbYlAE.cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
I"�app/assets/javascripts/fruit/bananas.coffee?type=application/javascript&pipeline=self&id=359bcdf464feec3b2b8fcc185efca8a3fd1b791b12a248d173c9b41985d85d80:ET
|