booties 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +172 -0
  3. data/Rakefile +5 -4
  4. data/app/controllers/booties/application_controller.rb +4 -1
  5. data/app/helpers/booties/application_helper.rb +3 -26
  6. data/app/helpers/booties/badge_helper.rb +6 -3
  7. data/app/helpers/booties/breadcrumb_helper.rb +29 -0
  8. data/app/helpers/booties/button_helper.rb +10 -8
  9. data/app/helpers/booties/dropdown_helper.rb +71 -0
  10. data/app/helpers/booties/flag_helper.rb +7 -4
  11. data/app/helpers/booties/modal_helper.rb +4 -1
  12. data/app/helpers/booties/panel_helper.rb +3 -1
  13. data/app/helpers/booties/popover_helper.rb +28 -19
  14. data/app/helpers/booties/tooltip_helper.rb +12 -8
  15. data/config/routes.rb +2 -0
  16. data/lib/booties.rb +3 -1
  17. data/lib/booties/engine.rb +7 -1
  18. data/lib/booties/modal.rb +13 -12
  19. data/lib/booties/panel.rb +21 -18
  20. data/lib/booties/utils.rb +8 -10
  21. data/lib/booties/version.rb +3 -1
  22. data/lib/tasks/booties_tasks.rake +2 -0
  23. data/test/dummy/Rakefile +1 -1
  24. data/test/dummy/app/assets/javascripts/application.js +0 -13
  25. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  26. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  27. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  28. data/test/dummy/app/controllers/application_controller.rb +0 -4
  29. data/test/dummy/app/controllers/samples_controller.rb +28 -0
  30. data/test/dummy/app/jobs/application_job.rb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +9 -11
  32. data/test/dummy/app/views/samples/badges.html.erb +2 -0
  33. data/test/dummy/app/views/{home → samples}/breadcrumbs.html.erb +2 -1
  34. data/test/dummy/app/views/samples/buttons.html.erb +2 -0
  35. data/test/dummy/app/views/samples/dropdowns.html.erb +6 -0
  36. data/test/dummy/app/views/samples/flags.html.erb +2 -0
  37. data/test/dummy/app/views/samples/modals.html.erb +12 -0
  38. data/test/dummy/app/views/samples/panels.html.erb +14 -0
  39. data/test/dummy/app/views/samples/popovers.html.erb +9 -0
  40. data/test/dummy/app/views/samples/tooltips.html.erb +3 -0
  41. data/test/dummy/bin/bundle +1 -1
  42. data/test/dummy/bin/rails +1 -1
  43. data/test/dummy/bin/setup +17 -13
  44. data/test/dummy/bin/update +28 -0
  45. data/test/dummy/config.ru +2 -1
  46. data/test/dummy/config/application.rb +13 -12
  47. data/test/dummy/config/boot.rb +2 -2
  48. data/test/dummy/config/environment.rb +1 -1
  49. data/test/dummy/config/environments/development.rb +24 -16
  50. data/test/dummy/config/environments/production.rb +23 -28
  51. data/test/dummy/config/environments/test.rb +5 -11
  52. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  53. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  54. data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
  55. data/test/dummy/config/initializers/wrap_parameters.rb +6 -1
  56. data/test/dummy/config/locales/en.yml +10 -0
  57. data/test/dummy/config/puma.rb +34 -0
  58. data/test/dummy/config/routes.rb +16 -8
  59. data/test/dummy/config/spring.rb +6 -0
  60. data/test/dummy/log/test.log +11202 -19551
  61. data/test/dummy/public/404.html +6 -6
  62. data/test/dummy/public/422.html +6 -6
  63. data/test/dummy/public/500.html +6 -6
  64. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  65. data/test/dummy/public/apple-touch-icon.png +0 -0
  66. data/test/dummy/tmp/cache/assets/sprockets/v3.0/33/33EUCQBNqL6TOaGyMFn9wz2v39pHMJ4LOUUFUteIHHM.cache +1 -0
  67. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3N/3NnKgR2TsTI1qCXKZpts0uJzp2dRJcoYp3nnFU6YE4o.cache +2 -0
  68. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7Q/7Q2gtOOyCVPFrfYz4KjmXJsM_m8Yra4MjgsQmfVGxZY.cache +1 -0
  69. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8c/8cROjTzeZZQaOFNLPKGuMtXO7EHxNfiEa72qt65UoF4.cache +1 -0
  70. data/test/dummy/tmp/cache/assets/sprockets/v3.0/F6/F6RhC2MbCvVanNZZe44hqlJNKAdIrH4NUzRxj5N2_EQ.cache +1 -0
  71. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fc/FcMeZRcfG4LrhIhl3xrAg3EhSZInU4efHmUrjIs4keE.cache +0 -0
  72. data/test/dummy/tmp/cache/assets/sprockets/v3.0/H3/H3dfPRbxbWIB6dQXrQ6xA9nDJqy4dOq1ujslocGVY9U.cache +1 -0
  73. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LK/LKisVDbQmzgRQKdFoNH5tRbTr72CrlM_2q7MZczv2Pg.cache +1 -0
  74. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Mj/MjwYGG9GkHD1fwwH2bg66EBYl3zCA_mqeDF9otey4-U.cache +3 -0
  75. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pc/Pce9HMZhc6XmsNfLUN84Enw7mySJ7ZYzys9mXmCVXqA.cache +0 -0
  76. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Po/PoftKmjB8lzW06EMKeru1CsqVtULc0MsiTysT2JNqvU.cache +0 -0
  77. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Su/SuILTE3Es0N_r-36Ddu2E6h49WcwH_-RsZyG4SPwKFQ.cache +0 -0
  78. data/test/dummy/tmp/cache/assets/sprockets/v3.0/cJ/cJG59MHf0x4qJKYES0pa0nLpOFpFF7YwrrvIVKIixyA.cache +0 -0
  79. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fw/fwPYklzExHPpgeuv53ew_8OIpJVRyaHj2Jtj2JP9j5A.cache +0 -0
  80. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jc/jc_TR7ZZTSFDDRKdgc-KnZskUESr2rLOqcYZej83LvU.cache +0 -0
  81. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rV/rVy4-idUuK0Va9FLw3G8pYeZFwJAwmvs_bQcbq6_Cd0.cache +1 -0
  82. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rY/rYyeRvy3oIuNfWeDhoriNlAlVjN4Wg4A3_9_OTDFin4.cache +1 -0
  83. data/test/dummy/tmp/cache/assets/sprockets/v3.0/tY/tYFbDrMNElXwgmisit50aNXJvRU2zlIFk5g-EJ1CQTc.cache +0 -0
  84. data/test/helpers/booties/badge_helper_test.rb +7 -5
  85. data/test/helpers/booties/breadcrumb_helper_test.rb +13 -0
  86. data/test/helpers/booties/button_helper_test.rb +14 -12
  87. data/test/helpers/booties/dropdown_helper_test.rb +43 -0
  88. data/test/helpers/booties/flag_helper_test.rb +7 -5
  89. data/test/helpers/booties/modal_helper_test.rb +9 -7
  90. data/test/helpers/booties/panel_helper_test.rb +4 -2
  91. data/test/helpers/booties/popover_helper_test.rb +33 -42
  92. data/test/helpers/booties/tooltip_helper_test.rb +19 -40
  93. data/test/integration/samples_test.rb +103 -0
  94. data/test/lib/booties/modal_test.rb +193 -0
  95. data/test/{booties → lib/booties}/panel_test.rb +40 -22
  96. data/test/lib/booties/utils_test.rb +41 -0
  97. data/test/stub_view.rb +14 -7
  98. data/test/test_helper.rb +10 -11
  99. metadata +124 -98
  100. data/app/assets/javascripts/booties/application.js +0 -13
  101. data/app/assets/stylesheets/booties/application.css +0 -15
  102. data/test/booties/modal_test.rb +0 -170
  103. data/test/booties/utils_test.rb +0 -26
  104. data/test/dummy/README.rdoc +0 -28
  105. data/test/dummy/app/assets/javascripts/home.js +0 -2
  106. data/test/dummy/app/assets/stylesheets/home.css +0 -4
  107. data/test/dummy/app/controllers/home_controller.rb +0 -25
  108. data/test/dummy/app/helpers/home_helper.rb +0 -2
  109. data/test/dummy/app/views/home/badge.html.erb +0 -3
  110. data/test/dummy/app/views/home/button.html.erb +0 -2
  111. data/test/dummy/app/views/home/flag.html.erb +0 -5
  112. data/test/dummy/app/views/home/modal.html.erb +0 -16
  113. data/test/dummy/app/views/home/panel.html.erb +0 -25
  114. data/test/dummy/app/views/home/popover.html.erb +0 -7
  115. data/test/dummy/app/views/home/tooltip.html.erb +0 -7
  116. data/test/dummy/config/initializers/assets.rb +0 -11
  117. data/test/dummy/config/initializers/session_store.rb +0 -3
  118. data/test/dummy/config/locales/booties.yml +0 -4
  119. data/test/dummy/config/secrets.yml +0 -22
  120. data/test/dummy/log/development.log +0 -420
  121. data/test/dummy/test/controllers/home_controller_test.rb +0 -108
  122. data/test/helpers/booties/application_helper_test.rb +0 -11
  123. data/test/integration/navigation_test.rb +0 -9
@@ -1,13 +0,0 @@
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.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require_tree .
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any styles
10
- * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
- * file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,170 +0,0 @@
1
- require 'test_helper'
2
- require 'stub_view'
3
-
4
- module Booties
5
- class ModalTest < Minitest::Test
6
- def setup
7
- @view_context = StubView.new
8
- @backend = I18n.backend
9
- I18n.backend = I18n::Backend::KeyValue.new({})
10
- I18n.enforce_available_locales = false
11
- end
12
-
13
- def teardown
14
- I18n.backend = @backend
15
- end
16
-
17
- def test_render_renders_a_fading_modal_with_an_id_and_a_dialog
18
- modal = Modal.new @view_context, id: 'foo'
19
- expected = '<div class="modal fade" id="foo"><div class="modal-dialog">' \
20
- '<div class="modal-content"></div></div></div>'
21
- assert_equal expected, modal.render {}
22
- end
23
-
24
- def test_render_renders_a_non_fading_modal_when_fade_is_falsey
25
- modal = Modal.new @view_context, id: 'foo', fade: false
26
- expected = '<div class="modal" id="foo"><div class="modal-dialog">' \
27
- '<div class="modal-content"></div></div></div>'
28
- assert_equal expected, modal.render {}
29
- end
30
-
31
- def test_render_passes_misc_options_to_outer_container
32
- modal = Modal.new @view_context, id: 'foo'
33
- expected = /<div class="modal fade foo" id="foo" data-bar="baz">/
34
- assert_match expected, modal.render(class: 'foo', data: { bar: 'baz' }) {}
35
- end
36
-
37
- def test_large_modal
38
- modal = Modal.new @view_context, id: 'foo', size: :large
39
- expected = /<div class="modal-dialog modal-lg">/
40
- assert_match expected, modal.render {}
41
- end
42
-
43
- def test_small_modal
44
- modal = Modal.new @view_context, id: 'foo', size: :small
45
- expected = /<div class="modal-dialog modal-sm">/
46
- assert_match expected, modal.render {}
47
- end
48
-
49
- def test_dialog_renders_a_modal_dialog_with_a_modal_content
50
- modal = Modal.new @view_context, id: 'foo'
51
- expected = '<div class="modal-dialog"><div class="modal-content">' \
52
- '</div></div>'
53
- assert_equal expected, modal.dialog {}
54
- end
55
-
56
- def test_content_renders_a_modal_content
57
- modal = Modal.new @view_context, id: 'foo'
58
- expected = '<div class="modal-content"></div>'
59
- assert_equal expected, modal.content {}
60
- end
61
-
62
- def test_content_yields_modal_to_block
63
- modal = Modal.new @view_context, id: 'foo'
64
- yielded_modal = nil
65
- modal.content do |m|
66
- yielded_modal = m
67
- end
68
- assert_same modal, yielded_modal
69
- end
70
-
71
- def test_header_renders_a_modal_header_with_a_title_and_a_dismissal
72
- modal = Modal.new @view_context, id: 'foo'
73
- expected = '<div class="modal-header">' \
74
- '<button class="close" data-dismiss="modal" type="button">&times;' \
75
- '</button><h4 class="modal-title">content</h4></div>'
76
- assert_equal expected, modal.header { 'content' }
77
- end
78
-
79
- def test_header_renders_a_modal_header_withouth_a_dismissal
80
- modal = Modal.new @view_context, id: 'foo'
81
- expected = '<div class="modal-header">' \
82
- '<h4 class="modal-title">content</h4></div>'
83
- assert_equal expected, modal.header(close: false) { 'content' }
84
- end
85
-
86
- def test_header_uses_html_dismissal
87
- icon = '<span class="glyphicon glyphicon-remove" aria-label="Dismiss"></span>'
88
- translations = {}
89
- I18n.backend = I18n::Backend::KeyValue.new translations
90
- I18n.backend.store_translations I18n.locale,
91
- { booties: { modal: { dismiss_html: icon } } }
92
-
93
- modal = Modal.new @view_context, id: 'foo'
94
- expected = %r{<button class="close" data-dismiss="modal" type="button">#{icon}</button>}
95
- assert_match expected, modal.header { 'content' }
96
- end
97
-
98
- def test_header_falls_back_on_non_html_dismissal
99
- translations = {}
100
- I18n.backend = I18n::Backend::KeyValue.new translations
101
- I18n.backend.store_translations I18n.locale,
102
- { booties: { modal: { dismiss: 'close' } } }
103
-
104
- modal = Modal.new @view_context, id: 'foo'
105
- expected = %r{<button class="close" data-dismiss="modal" type="button">close</button>}
106
- assert_match expected, modal.header { 'content' }
107
- end
108
-
109
- def test_header_falls_back_on_default_dismissal
110
- translations = {}
111
- I18n.backend = I18n::Backend::KeyValue.new translations
112
-
113
- modal = Modal.new @view_context, id: 'foo'
114
- expected = %r{<button class="close" data-dismiss="modal" type="button">&times;</button>}
115
- assert_match expected, modal.header { 'content' }
116
- end
117
-
118
- def test_body_renders_a_modal_body
119
- modal = Modal.new @view_context, id: 'foo'
120
- expected = '<div class="modal-body">content</div>'
121
- assert_equal expected, modal.body { 'content' }
122
- end
123
-
124
- def test_footer_renders_a_modal_footer
125
- modal = Modal.new @view_context, id: 'foo'
126
- expected = '<div class="modal-footer">content</div>'
127
- assert_equal expected, modal.footer { 'content' }
128
- end
129
-
130
- def test_title_renders_a_modal_title
131
- modal = Modal.new @view_context, id: 'foo'
132
- expected = '<h4 class="modal-title">content</h4>'
133
- assert_equal expected, modal.title('content')
134
- end
135
-
136
- def test_title_accepts_content_as_a_block
137
- modal = Modal.new @view_context, id: 'foo'
138
- expected = '<h4 class="modal-title">content</h4>'
139
- assert_equal expected, modal.title { 'content' }
140
- end
141
-
142
- def test_dismiss_renders_a_dismiss_button
143
- modal = Modal.new @view_context, id: 'foo'
144
- expected = '<button class="close" data-dismiss="modal" type="button">' \
145
- 'content</button>'
146
- assert_equal expected, modal.dismiss('content')
147
- end
148
-
149
- def test_dismiss_accepts_content_as_a_block
150
- modal = Modal.new @view_context, id: 'foo'
151
- expected = '<button class="close" data-dismiss="modal" type="button">' \
152
- 'content</button>'
153
- assert_equal expected, modal.dismiss { 'content' }
154
- end
155
-
156
- def test_dismiss_accepts_custom_class
157
- modal = Modal.new @view_context, id: 'foo'
158
- expected = '<button class="btn btn-default" data-dismiss="modal"' \
159
- ' type="button">content</button>'
160
- assert_equal expected, modal.dismiss('content', class: 'btn btn-default')
161
- end
162
-
163
- def test_dismiss_accepts_custom_class_and_block
164
- modal = Modal.new @view_context, id: 'foo'
165
- expected = '<button class="btn btn-default" data-dismiss="modal"' \
166
- ' type="button">content</button>'
167
- assert_equal expected, modal.dismiss(class: 'btn btn-default') { 'content' }
168
- end
169
- end
170
- end
@@ -1,26 +0,0 @@
1
- require 'test_helper'
2
-
3
- module Booties
4
- class TestUtils < Minitest::Test
5
- def test_merge_classes_removes_duplicates
6
- assert_equal %w[a b c], Utils.merge_classes(['a', 'b'], ['b', 'c'])
7
- end
8
-
9
- def test_merge_classes_converts_string_arguments_to_arrays
10
- assert_equal %w[a b c], Utils.merge_classes('a b', 'b c')
11
- end
12
-
13
- def test_merge_classes_gracefully_handles_nil_elements_in_arrays
14
- assert_equal %w[a b c], Utils.merge_classes(['a', nil], ['b', 'c'])
15
- end
16
-
17
- def test_merge_classes_available_as_instance_method_when_utils_is_included
18
- cls = Class.new do
19
- include Utils
20
- public :merge_classes
21
- end
22
-
23
- assert_respond_to cls.new, :merge_classes
24
- end
25
- end
26
- end
@@ -1,28 +0,0 @@
1
- == README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
25
-
26
-
27
- Please feel free to use a different markup language if you do not plan to run
28
- <tt>rake doc:app</tt>.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,25 +0,0 @@
1
- class HomeController < ApplicationController
2
- def badge
3
- end
4
-
5
- def breadcrumbs
6
- end
7
-
8
- def button
9
- end
10
-
11
- def flag
12
- end
13
-
14
- def modal
15
- end
16
-
17
- def panel
18
- end
19
-
20
- def tooltip
21
- end
22
-
23
- def popover
24
- end
25
- end
@@ -1,2 +0,0 @@
1
- module HomeHelper
2
- end
@@ -1,3 +0,0 @@
1
- <%= badge 'foo' %>
2
- <%= badge 'bar', class: 'foo' %>
3
- <%= badge 'bar', id: 'foo' %>
@@ -1,2 +0,0 @@
1
- <%= btn_link_to 'Foo', '/' %>
2
- <%= btn_link_to 'Sign out', '/', context: :danger, class: 'btn-xs', method: :delete %>
@@ -1,5 +0,0 @@
1
- <%= flag 'foo' %>
2
- <%= flag 'bar', context: :primary %>
3
- <%= flag context: :danger, id: 'baz' do %>
4
- baz
5
- <% end %>
@@ -1,16 +0,0 @@
1
- <%= modal 'confirm', size: :large do |m| %>
2
- <%= m.header do %>
3
- Modal header
4
- <% end %>
5
- <%= m.body do %>
6
- <p>Modal body</p>
7
- <% end %>
8
- <%= m.footer do %>
9
- <%= m.dismiss class: 'btn btn-default' do %>
10
- Dismiss
11
- <% end %>
12
- <%= link_to '#', class: 'btn btn-primary' do %>
13
- Confirm
14
- <% end %>
15
- <% end %>
16
- <% end %>
@@ -1,25 +0,0 @@
1
- <%= panel do |p| %>
2
- <%= p.heading do %>
3
- <%= p.title 'Default panel' %>
4
- <% end %>
5
- <%= p.body do %>
6
- <p>Panel body</p>
7
- <% end %>
8
- <%= p.footer do %>
9
- Panel footer
10
- <% end %>
11
- <% end %>
12
-
13
- <%= panel context: :info, wrapper_tag: 'fieldset' do |p| %>
14
- <%= p.heading do %>
15
- <%= p.title do %>
16
- Panel with custom container and context
17
- <% end %>
18
- <% end %>
19
- <table>
20
- <tr>
21
- <td>A table instead of a body</td>
22
- </tr>
23
- </table>
24
- <%= p.footer 'Panel footer' %>
25
- <% end %>
@@ -1,7 +0,0 @@
1
- <%= popover content: 'Lorem ipsum dolor sit amet', tag: :button do %>
2
- Button text
3
- <% end %>
4
-
5
- <%= popover content: 'Lorem ipsum dolor sit amet', title: 'This is the title', container: 'body', placement: :right, trigger: :focus do %>
6
- Link text
7
- <% end %>
@@ -1,7 +0,0 @@
1
- <%= tooltip title: 'A tooltip' do %>
2
- This has a tooltip.
3
- <% end %>
4
-
5
- <%= tooltip title: 'Another tooltip', placement: :left do %>
6
- This has another tooltip.
7
- <% end %>
@@ -1,11 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Version of your assets, change this if you want to expire all your assets.
4
- Rails.application.config.assets.version = '1.0'
5
-
6
- # Add additional assets to the asset load path
7
- # Rails.application.config.assets.paths << Emoji.images_path
8
-
9
- # Precompile additional assets.
10
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
- # Rails.application.config.assets.precompile += %w( search.js )
@@ -1,3 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,4 +0,0 @@
1
- en:
2
- booties:
3
- modal:
4
- dismiss_html: '<span class="glyphicon glyphicon-remove" aria-label="Dismiss"></span>'
@@ -1,22 +0,0 @@
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: 0faeda07a6d13dca92a156dbbe9926c592dc0a219bdb8f23ef20b2b5d7ee176ba0b3a13d93aa1ef9811e6201441b02480b01574dab4ef78483c41fd5749904fd
15
-
16
- test:
17
- secret_key_base: 9215640735810c5bf6536b51244e5513e016d16b6fa630f2263150d8b5414e570bb55f45567e5ba4f670ceb17307735bdfe11312ba2195849ac337231e2b749c
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"] %>
@@ -1,420 +0,0 @@
1
-
2
-
3
- Started GET "/home" for ::1 at 2015-07-13 12:57:59 -0700
4
-
5
- ActionController::RoutingError (No route matches [GET] "/home"):
6
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
9
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
10
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
11
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
12
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
13
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
14
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
16
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
17
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
18
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
19
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
20
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
21
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
22
- railties (4.2.3) lib/rails/application.rb:165:in `call'
23
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
24
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
25
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
26
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
27
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
28
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
29
-
30
-
31
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
32
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
33
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
34
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms)
35
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms)
36
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.9ms)
37
-
38
-
39
- Started GET "/home/show" for ::1 at 2015-07-13 12:58:11 -0700
40
- Processing by HomeController#show as HTML
41
- Rendered home/show.html.erb within layouts/application (1.0ms)
42
- Completed 200 OK in 5ms (Views: 4.6ms)
43
-
44
-
45
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 12:58:11 -0700
46
-
47
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
48
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
49
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
50
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
51
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
52
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
53
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
54
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
55
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
56
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
57
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
58
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
59
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
60
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
61
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
62
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
63
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
64
- railties (4.2.3) lib/rails/application.rb:165:in `call'
65
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
66
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
67
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
68
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
69
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
70
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
71
-
72
-
73
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
74
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
75
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
76
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
77
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
78
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.0ms)
79
-
80
-
81
- Started GET "/javascripts/application.js" for ::1 at 2015-07-13 12:58:11 -0700
82
-
83
- ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
84
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
85
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
86
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
87
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
88
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
89
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
90
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
91
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
92
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
93
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
94
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
95
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
96
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
97
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
98
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
99
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
100
- railties (4.2.3) lib/rails/application.rb:165:in `call'
101
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
102
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
103
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
104
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
105
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
106
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
107
-
108
-
109
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
110
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
111
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
112
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
113
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
114
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (53.7ms)
115
-
116
-
117
- Started GET "/home/show" for ::1 at 2015-07-13 12:59:14 -0700
118
- Processing by HomeController#show as HTML
119
- Rendered home/show.html.erb within layouts/application (0.5ms)
120
- Completed 200 OK in 4ms (Views: 3.9ms)
121
-
122
-
123
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 12:59:14 -0700
124
-
125
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
126
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
127
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
128
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
129
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
130
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
131
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
132
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
133
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
134
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
135
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
136
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
137
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
138
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
139
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
140
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
141
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
142
- railties (4.2.3) lib/rails/application.rb:165:in `call'
143
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
144
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
145
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
146
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
147
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
148
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
149
-
150
-
151
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
152
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
153
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
154
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
155
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
156
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms)
157
-
158
-
159
- Started GET "/javascripts/application.js" for ::1 at 2015-07-13 12:59:15 -0700
160
-
161
- ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
162
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
163
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
164
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
165
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
166
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
167
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
168
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
169
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
170
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
171
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
172
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
173
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
174
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
175
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
176
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
177
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
178
- railties (4.2.3) lib/rails/application.rb:165:in `call'
179
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
180
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
181
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
182
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
183
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
184
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
185
-
186
-
187
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
188
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
189
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
190
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
191
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
192
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.2ms)
193
-
194
-
195
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 12:59:42 -0700
196
-
197
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
198
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
199
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
200
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
201
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
202
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
203
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
204
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
205
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
206
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
207
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
208
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
209
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
210
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
211
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
212
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
213
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
214
- railties (4.2.3) lib/rails/application.rb:165:in `call'
215
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
216
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
217
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
218
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
219
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
220
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
221
-
222
-
223
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
224
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms)
225
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
226
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
227
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
228
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.0ms)
229
-
230
-
231
- Started GET "/home/show" for ::1 at 2015-07-13 13:03:15 -0700
232
- Processing by HomeController#show as HTML
233
- Rendered home/show.html.erb within layouts/application (2.1ms)
234
- Completed 200 OK in 17ms (Views: 16.5ms)
235
-
236
-
237
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 13:03:15 -0700
238
-
239
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
240
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
241
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
242
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
243
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
244
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
245
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
246
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
247
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
248
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
249
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
250
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
251
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
252
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
253
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
254
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
255
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
256
- railties (4.2.3) lib/rails/application.rb:165:in `call'
257
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
258
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
259
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
260
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
261
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
262
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
263
-
264
-
265
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
266
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
267
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
268
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms)
269
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
270
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.6ms)
271
-
272
-
273
- Started GET "/javascripts/application.js" for ::1 at 2015-07-13 13:03:15 -0700
274
-
275
- ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
276
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
277
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
278
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
279
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
280
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
281
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
282
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
283
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
284
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
285
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
286
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
287
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
288
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
289
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
290
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
291
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
292
- railties (4.2.3) lib/rails/application.rb:165:in `call'
293
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
294
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
295
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
296
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
297
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
298
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
299
-
300
-
301
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
302
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
303
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
304
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
305
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
306
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.4ms)
307
-
308
-
309
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 13:03:52 -0700
310
-
311
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
312
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
313
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
314
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
315
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
316
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
317
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
318
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
319
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
320
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
321
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
322
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
323
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
324
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
325
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
326
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
327
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
328
- railties (4.2.3) lib/rails/application.rb:165:in `call'
329
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
330
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
331
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
332
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
333
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
334
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
335
-
336
-
337
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
338
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
339
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
340
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
341
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
342
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.6ms)
343
-
344
-
345
- Started GET "/home/show" for ::1 at 2015-07-13 13:04:09 -0700
346
- Processing by HomeController#show as HTML
347
- Rendered home/show.html.erb within layouts/application (1.0ms)
348
- Completed 200 OK in 4ms (Views: 4.0ms)
349
-
350
-
351
- Started GET "/stylesheets/application.css" for ::1 at 2015-07-13 13:04:09 -0700
352
-
353
- ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
354
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
355
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
356
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
357
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
358
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
359
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
360
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
361
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
362
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
363
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
364
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
365
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
366
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
367
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
368
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
369
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
370
- railties (4.2.3) lib/rails/application.rb:165:in `call'
371
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
372
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
373
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
374
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
375
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
376
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
377
-
378
-
379
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
380
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
381
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
382
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
383
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
384
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.7ms)
385
-
386
-
387
- Started GET "/javascripts/application.js" for ::1 at 2015-07-13 13:04:09 -0700
388
-
389
- ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
390
- actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
391
- actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
392
- railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
393
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
394
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
395
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
396
- activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
397
- railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
398
- actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
399
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
400
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
401
- activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
402
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
403
- actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
404
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
405
- railties (4.2.3) lib/rails/engine.rb:518:in `call'
406
- railties (4.2.3) lib/rails/application.rb:165:in `call'
407
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
408
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
409
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
410
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
411
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
412
- /Users/john/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
413
-
414
-
415
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
416
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
417
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
418
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
419
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
420
- Rendered /Users/john/Projects/booties/.bundle/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.8ms)