date-input-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2012 Verba Software
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # DateInputRails
2
+
3
+ This gem does two things:
4
+
5
+ * Backports `ActionView::Helpers::FormHelper#date_field` and `ActionView::Helpers::FormTagHelper#date_field_tag`
6
+ from [Rails 4](https://github.com/rails/rails/pull/5016).
7
+ * Provides a polyfill for browsers that don't support `<input type="date">` that uses jQuery UI's datepicker. From
8
+ the point of view of your application, this polyfill will function exactly like `<input type="date">`, i.e. date
9
+ parameters will always be submitted in YYYY-MM-DD form, regardless of the format displayed to the user.
10
+
11
+ ## Usage
12
+
13
+ **Gemfile**:
14
+
15
+ ```
16
+ gem "date-input-rails"
17
+ ```
18
+
19
+ **View**:
20
+
21
+ ```
22
+ <%= form_for(...) do |f| %>
23
+ <%= f.date_field :date %>
24
+ <% end %>
25
+ ```
26
+
27
+ or
28
+
29
+ ```
30
+ <%= date_field_tag :date, Date.today %>
31
+ ```
32
+
33
+ **application.js**:
34
+
35
+ ```
36
+ //= require modernizr
37
+ //= require date-input-polyfill
38
+ ```
39
+
40
+ You must provide the `modernizr` JavaScript asset, either by building one on http://modernizr.com/download/
41
+ (it must include the "Input Types" feature detect) and adding it to your `vendor/assets/javascripts` directory, or using
42
+ the [modernizr gem](https://github.com/josh/ruby-modernizr).
43
+
44
+ The jQuery UI datepicker JavaScript asset will automatically be provided by
45
+ [jquery-ui-rails](https://github.com/joliss/jquery-ui-rails). You'll need to make sure you include jQuery UI stylesheet
46
+ assets somehow.
47
+
48
+ ## License
49
+
50
+ Copyright 2012 Verba Software, see MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env rake
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new :spec
7
+
8
+ task :default => :spec
@@ -0,0 +1,19 @@
1
+ //= require modernizr
2
+ //= require jquery.ui.datepicker
3
+
4
+ if (!Modernizr.inputtypes.date) {
5
+ $(document).ready(function () {
6
+ $("input[type='date']").each(function () {
7
+ var alt = $("<input type=hidden>")
8
+ .val($(this).val())
9
+ .attr({name: $(this).attr('name')})
10
+ .insertBefore(this);
11
+
12
+ $(this)
13
+ .removeAttr('name')
14
+ .removeAttr('value')
15
+ .datepicker({altField: alt, altFormat: "yy-mm-dd"})
16
+ .datepicker('setDate', $.datepicker.parseDate("yy-mm-dd", $(alt).val()));
17
+ });
18
+ });
19
+ }
@@ -0,0 +1,28 @@
1
+ require 'rails/engine'
2
+
3
+ module DateInputRails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+
8
+ # Backports `ActionView::Helpers::FormHelper#date_field` and
9
+ # `ActionView::Helpers::FormTagHelper#date_field_tag` from Rails 4.
10
+ # https://github.com/rails/rails/pull/5016
11
+
12
+ require 'action_view'
13
+
14
+ module ActionView
15
+ module Helpers
16
+ module FormHelper
17
+ def date_field(object_name, method, options = {})
18
+ InstanceTag.new(object_name, method, self, options.delete(:object)).to_input_field_tag("date", options)
19
+ end unless instance_methods.include?(:date_field)
20
+ end
21
+
22
+ module FormTagHelper
23
+ def date_field_tag(name, value = nil, options = {})
24
+ text_field_tag(name, value, options.stringify_keys.update("type" => "date"))
25
+ end unless instance_methods.include?(:date_field_tag)
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,20 @@
1
+ require "spec_helper"
2
+
3
+ describe DateInputRails do
4
+ shared_examples "an <input type='date'>" do
5
+ it "submits data in ISO format" do
6
+ visit "/test"
7
+ fill_in "date", :with => "10/28/2012"
8
+ click_button "Submit"
9
+ page.find("#date-param").should have_content("2012-10-28")
10
+ end
11
+ end
12
+
13
+ context "on browsers supporting <input type='date'>", :driver => :chrome do
14
+ it_behaves_like "an <input type='date'>"
15
+ end
16
+
17
+ context "on browsers not supporting <input type='date'>", :driver => :firefox do
18
+ it_behaves_like "an <input type='date'>"
19
+ end
20
+ end
@@ -0,0 +1,2 @@
1
+ //= require modernizr
2
+ //= require date-input-polyfill
@@ -0,0 +1,3 @@
1
+ /*
2
+ *= require jquery.ui.datepicker
3
+ */
@@ -0,0 +1,4 @@
1
+ class TestController < ActionController::Base
2
+ def test
3
+ end
4
+ end
@@ -0,0 +1,7 @@
1
+ <%= stylesheet_link_tag "application" %>
2
+ <%= javascript_include_tag "application" %>
3
+ <form action="/test">
4
+ <span id="date-param"><%= params[:date] %></span>
5
+ <%= date_field_tag :date, Date.today %>
6
+ <%= submit_tag "Submit" %>
7
+ </form>
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ match "test" => "test#test"
3
+ end
@@ -0,0 +1,803 @@
1
+
2
+
3
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:31:09 -0700
4
+ Processing by TestController#test as HTML
5
+ Completed 500 Internal Server Error in 13ms
6
+
7
+ ActionView::MissingTemplate (Missing template test/test with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
8
+ * "/Users/john/Development/date-input-rails/spec/internal/app/views"
9
+ ):
10
+ actionpack (3.2.8) lib/action_view/path_set.rb:58:in `find'
11
+ actionpack (3.2.8) lib/action_view/lookup_context.rb:109:in `find'
12
+ actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
13
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
14
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:10:in `render'
15
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
16
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
17
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
18
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
19
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
20
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
21
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
22
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
23
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
24
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
25
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
26
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
27
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
28
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
29
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
30
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
31
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
32
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
33
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
34
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
35
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
36
+ activesupport (3.2.8) lib/active_support/callbacks.rb:403:in `_run__1362585444342176599__process_action__4265300134869521333__callbacks'
37
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
38
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
39
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
40
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
41
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
42
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
43
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
44
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
45
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
46
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
47
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
48
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
49
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
50
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
51
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
52
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
53
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
54
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
55
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
56
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
57
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
58
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
59
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
60
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
61
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
62
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
63
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
64
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
65
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
66
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
67
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
68
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
69
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
70
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4133027037235354043__call__2200382991404449879__callbacks'
71
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
72
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
73
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
74
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
75
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
76
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
77
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
78
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
79
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
80
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
81
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
82
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
83
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
84
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
85
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
86
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
87
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
88
+ rack (1.4.1) lib/rack/builder.rb:134:in `call'
89
+ rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call'
90
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `each'
91
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `call'
92
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
93
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
94
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
95
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get'
96
+ capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process'
97
+ capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit'
98
+ capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit'
99
+ capybara (1.1.2) lib/capybara/session.rb:157:in `visit'
100
+ capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit'
101
+ /Users/john/Development/date-input-rails/spec/integration_spec.rb:5:in `block (2 levels) in <top (required)>'
102
+ rspec-core (2.11.1) lib/rspec/core/example.rb:113:in `instance_eval'
103
+ rspec-core (2.11.1) lib/rspec/core/example.rb:113:in `block in run'
104
+ rspec-core (2.11.1) lib/rspec/core/example.rb:253:in `with_around_each_hooks'
105
+ rspec-core (2.11.1) lib/rspec/core/example.rb:110:in `run'
106
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:378:in `block in run_examples'
107
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:374:in `map'
108
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:374:in `run_examples'
109
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:360:in `run'
110
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
111
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `map'
112
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `block in run'
113
+ rspec-core (2.11.1) lib/rspec/core/reporter.rb:34:in `report'
114
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:25:in `run'
115
+ rspec-core (2.11.1) lib/rspec/core/runner.rb:69:in `run'
116
+ rspec-core (2.11.1) lib/rspec/core/runner.rb:8:in `block in autorun'
117
+
118
+
119
+ Rendered /Users/john/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
120
+
121
+
122
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:37:34 -0700
123
+ Processing by TestController#test as HTML
124
+ Completed 500 Internal Server Error in 9ms
125
+
126
+ ActionView::MissingTemplate (Missing template test/test with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
127
+ * "/Users/john/Development/date-input-rails/spec/internal/app/views"
128
+ ):
129
+ actionpack (3.2.8) lib/action_view/path_set.rb:58:in `find'
130
+ actionpack (3.2.8) lib/action_view/lookup_context.rb:109:in `find'
131
+ actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
132
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
133
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:10:in `render'
134
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
135
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
136
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
137
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
138
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
139
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
140
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
141
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
142
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
143
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
144
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
145
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
146
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
147
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
148
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
149
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
150
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
151
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
152
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
153
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
154
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
155
+ activesupport (3.2.8) lib/active_support/callbacks.rb:403:in `_run__718474084877167853__process_action__145741699930196806__callbacks'
156
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
157
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
158
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
159
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
160
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
161
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
162
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
163
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
164
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
165
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
166
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
167
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
168
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
169
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
170
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
171
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
172
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
173
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
174
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
175
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
176
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
177
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
178
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
179
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
180
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
181
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
182
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
183
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
184
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
185
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
186
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
187
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
188
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
189
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3022840425500432331__call__2449675330266373658__callbacks'
190
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
191
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
192
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
193
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
194
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
195
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
196
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
197
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
198
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
199
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
200
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
201
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
202
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
203
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
204
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
205
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
206
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
207
+ rack (1.4.1) lib/rack/builder.rb:134:in `call'
208
+ rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call'
209
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `each'
210
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `call'
211
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
212
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
213
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
214
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get'
215
+ capybara (1.1.2) lib/capybara/rack_test/browser.rb:62:in `process'
216
+ capybara (1.1.2) lib/capybara/rack_test/browser.rb:21:in `visit'
217
+ capybara (1.1.2) lib/capybara/rack_test/driver.rb:32:in `visit'
218
+ capybara (1.1.2) lib/capybara/session.rb:157:in `visit'
219
+ capybara (1.1.2) lib/capybara/dsl.rb:161:in `visit'
220
+ /Users/john/Development/date-input-rails/spec/integration_spec.rb:5:in `block (2 levels) in <top (required)>'
221
+ rspec-core (2.11.1) lib/rspec/core/example.rb:113:in `instance_eval'
222
+ rspec-core (2.11.1) lib/rspec/core/example.rb:113:in `block in run'
223
+ rspec-core (2.11.1) lib/rspec/core/example.rb:253:in `with_around_each_hooks'
224
+ rspec-core (2.11.1) lib/rspec/core/example.rb:110:in `run'
225
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:378:in `block in run_examples'
226
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:374:in `map'
227
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:374:in `run_examples'
228
+ rspec-core (2.11.1) lib/rspec/core/example_group.rb:360:in `run'
229
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
230
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `map'
231
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:28:in `block in run'
232
+ rspec-core (2.11.1) lib/rspec/core/reporter.rb:34:in `report'
233
+ rspec-core (2.11.1) lib/rspec/core/command_line.rb:25:in `run'
234
+ rspec-core (2.11.1) lib/rspec/core/runner.rb:69:in `run'
235
+ rspec-core (2.11.1) lib/rspec/core/runner.rb:8:in `block in autorun'
236
+
237
+
238
+ Rendered /Users/john/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.7ms)
239
+
240
+
241
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:55:59 -0700
242
+ Processing by TestController#test as HTML
243
+ Completed 500 Internal Server Error in 133ms
244
+
245
+ ActionView::MissingTemplate (Missing template test/test with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
246
+ * "/Users/john/Development/date-input-rails/spec/internal/app/views"
247
+ ):
248
+ actionpack (3.2.8) lib/action_view/path_set.rb:58:in `find'
249
+ actionpack (3.2.8) lib/action_view/lookup_context.rb:109:in `find'
250
+ actionpack (3.2.8) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
251
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
252
+ actionpack (3.2.8) lib/action_view/renderer/template_renderer.rb:10:in `render'
253
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:36:in `render_template'
254
+ actionpack (3.2.8) lib/action_view/renderer/renderer.rb:17:in `render'
255
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:110:in `_render_template'
256
+ actionpack (3.2.8) lib/action_controller/metal/streaming.rb:225:in `_render_template'
257
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:103:in `render_to_body'
258
+ actionpack (3.2.8) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
259
+ actionpack (3.2.8) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
260
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:88:in `render'
261
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:16:in `render'
262
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
263
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
264
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
265
+ activesupport (3.2.8) lib/active_support/core_ext/benchmark.rb:5:in `ms'
266
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
267
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
268
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:39:in `render'
269
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
270
+ actionpack (3.2.8) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
271
+ actionpack (3.2.8) lib/abstract_controller/base.rb:167:in `process_action'
272
+ actionpack (3.2.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
273
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
274
+ activesupport (3.2.8) lib/active_support/callbacks.rb:403:in `_run__331874794327499612__process_action__515599204787760481__callbacks'
275
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
276
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
277
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
278
+ actionpack (3.2.8) lib/abstract_controller/callbacks.rb:17:in `process_action'
279
+ actionpack (3.2.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
280
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
281
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `block in instrument'
282
+ activesupport (3.2.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
283
+ activesupport (3.2.8) lib/active_support/notifications.rb:123:in `instrument'
284
+ actionpack (3.2.8) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
285
+ actionpack (3.2.8) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
286
+ actionpack (3.2.8) lib/abstract_controller/base.rb:121:in `process'
287
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
288
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
289
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
290
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
291
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
292
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
293
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
294
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
295
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
296
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
297
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
298
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
299
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
300
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
301
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
302
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
303
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
304
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
305
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
306
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
307
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
308
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3370233860185983122__call__4506163419472658106__callbacks'
309
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
310
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
311
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
312
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
313
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
314
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
315
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
316
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
317
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
318
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
319
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
320
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
321
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
322
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
323
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
324
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
325
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
326
+ rack (1.4.1) lib/rack/builder.rb:134:in `call'
327
+ rack (1.4.1) lib/rack/urlmap.rb:64:in `block in call'
328
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `each'
329
+ rack (1.4.1) lib/rack/urlmap.rb:49:in `call'
330
+ capybara (2.0.0.beta2) lib/capybara/server.rb:19:in `call'
331
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
332
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
333
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
334
+ /Users/john/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
335
+
336
+
337
+ Rendered /Users/john/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (8.1ms)
338
+
339
+
340
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:56:14 -0700
341
+ Processing by TestController#test as HTML
342
+ Rendered test/test.html.erb (3.9ms)
343
+ Completed 200 OK in 47ms (Views: 46.2ms)
344
+
345
+
346
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:56:14 -0700
347
+ Compiled modernizr.js (0ms) (pid 49435)
348
+ Error compiling asset application.js:
349
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
350
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
351
+ Served asset /application.js - 500 Internal Server Error
352
+
353
+
354
+
355
+
356
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:56:32 -0700
357
+ Processing by TestController#test as HTML
358
+ Rendered test/test.html.erb (2.5ms)
359
+ Completed 200 OK in 37ms (Views: 36.7ms)
360
+
361
+
362
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:56:32 -0700
363
+ Error compiling asset application.js:
364
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
365
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
366
+ Served asset /application.js - 500 Internal Server Error
367
+
368
+
369
+
370
+
371
+ Started GET "/test?date=October+28%2C+2012&commit=Submit" for 127.0.0.1 at 2012-10-29 12:56:33 -0700
372
+ Processing by TestController#test as HTML
373
+ Parameters: {"date"=>"October 28, 2012", "commit"=>"Submit"}
374
+ Rendered test/test.html.erb (0.7ms)
375
+ Completed 200 OK in 1ms (Views: 1.3ms)
376
+
377
+
378
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:56:33 -0700
379
+ Error compiling asset application.js:
380
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
381
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
382
+ Served asset /application.js - 500 Internal Server Error
383
+
384
+
385
+
386
+
387
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:58:13 -0700
388
+ Processing by TestController#test as HTML
389
+ Rendered test/test.html.erb (3.7ms)
390
+ Completed 200 OK in 15ms (Views: 14.4ms)
391
+
392
+
393
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:13 -0700
394
+ Error compiling asset application.js:
395
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
396
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
397
+ Served asset /application.js - 500 Internal Server Error
398
+
399
+
400
+
401
+
402
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-10-29 12:58:13 -0700
403
+ Processing by TestController#test as HTML
404
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
405
+ Rendered test/test.html.erb (0.6ms)
406
+ Completed 200 OK in 1ms (Views: 1.1ms)
407
+
408
+
409
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:13 -0700
410
+ Error compiling asset application.js:
411
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
412
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
413
+ Served asset /application.js - 500 Internal Server Error
414
+
415
+
416
+
417
+
418
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:58:18 -0700
419
+ Processing by TestController#test as HTML
420
+ Rendered test/test.html.erb (1.1ms)
421
+ Completed 200 OK in 2ms (Views: 2.1ms)
422
+
423
+
424
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:18 -0700
425
+ Error compiling asset application.js:
426
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
427
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
428
+ Served asset /application.js - 500 Internal Server Error
429
+
430
+
431
+
432
+
433
+ Started GET "/test?date=October+28%2C+2012&commit=Submit" for 127.0.0.1 at 2012-10-29 12:58:19 -0700
434
+ Processing by TestController#test as HTML
435
+ Parameters: {"date"=>"October 28, 2012", "commit"=>"Submit"}
436
+ Rendered test/test.html.erb (0.8ms)
437
+ Completed 200 OK in 2ms (Views: 1.4ms)
438
+
439
+
440
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:19 -0700
441
+ Error compiling asset application.js:
442
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
443
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
444
+ Served asset /application.js - 500 Internal Server Error
445
+
446
+
447
+
448
+
449
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:58:51 -0700
450
+ Processing by TestController#test as HTML
451
+ Rendered test/test.html.erb (4.4ms)
452
+ Completed 200 OK in 28ms (Views: 27.8ms)
453
+
454
+
455
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:51 -0700
456
+ Error compiling asset application.js:
457
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
458
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
459
+ Served asset /application.js - 500 Internal Server Error
460
+
461
+
462
+
463
+
464
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-10-29 12:58:52 -0700
465
+ Processing by TestController#test as HTML
466
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
467
+ Rendered test/test.html.erb (0.8ms)
468
+ Completed 200 OK in 2ms (Views: 1.5ms)
469
+
470
+
471
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:52 -0700
472
+ Error compiling asset application.js:
473
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
474
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
475
+ Served asset /application.js - 500 Internal Server Error
476
+
477
+
478
+
479
+
480
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:58:54 -0700
481
+ Processing by TestController#test as HTML
482
+ Rendered test/test.html.erb (0.9ms)
483
+ Completed 200 OK in 2ms (Views: 1.7ms)
484
+
485
+
486
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:54 -0700
487
+ Error compiling asset application.js:
488
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
489
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
490
+ Served asset /application.js - 500 Internal Server Error
491
+
492
+
493
+
494
+
495
+ Started GET "/test?date=October+28%2C+2012&commit=Submit" for 127.0.0.1 at 2012-10-29 12:58:55 -0700
496
+ Processing by TestController#test as HTML
497
+ Parameters: {"date"=>"October 28, 2012", "commit"=>"Submit"}
498
+ Rendered test/test.html.erb (0.7ms)
499
+ Completed 200 OK in 1ms (Views: 1.3ms)
500
+
501
+
502
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:58:55 -0700
503
+ Error compiling asset application.js:
504
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
505
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
506
+ Served asset /application.js - 500 Internal Server Error
507
+
508
+
509
+
510
+
511
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 12:59:47 -0700
512
+ Processing by TestController#test as HTML
513
+ Rendered test/test.html.erb (2.9ms)
514
+ Completed 200 OK in 11ms (Views: 11.1ms)
515
+
516
+
517
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 12:59:47 -0700
518
+ Error compiling asset application.js:
519
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
520
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
521
+ Served asset /application.js - 500 Internal Server Error
522
+
523
+
524
+
525
+
526
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:02:07 -0700
527
+ Processing by TestController#test as HTML
528
+ Rendered test/test.html.erb (3.0ms)
529
+ Completed 200 OK in 43ms (Views: 43.0ms)
530
+
531
+
532
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:02:07 -0700
533
+ Error compiling asset application.js:
534
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
535
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
536
+ Served asset /application.js - 500 Internal Server Error
537
+
538
+
539
+
540
+
541
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:07:32 -0700
542
+ Processing by TestController#test as HTML
543
+ Rendered test/test.html.erb (4.3ms)
544
+ Completed 200 OK in 17ms (Views: 17.1ms)
545
+
546
+
547
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:07:32 -0700
548
+ Error compiling asset application.js:
549
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
550
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
551
+ Served asset /application.js - 500 Internal Server Error
552
+
553
+
554
+
555
+
556
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:08:47 -0700
557
+ Processing by TestController#test as HTML
558
+ Rendered test/test.html.erb (3.5ms)
559
+ Completed 200 OK in 58ms (Views: 57.6ms)
560
+
561
+
562
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:08:47 -0700
563
+ Error compiling asset application.js:
564
+ Sprockets::FileNotFound: couldn't find file 'jquery.ui.datepicker'
565
+ (in /Users/john/Development/date-input-rails/lib/assets/javascripts/date-input-polyfill.js:2)
566
+ Served asset /application.js - 500 Internal Server Error
567
+
568
+
569
+
570
+
571
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:09:30 -0700
572
+ Processing by TestController#test as HTML
573
+ Rendered test/test.html.erb (5.1ms)
574
+ Completed 200 OK in 22ms (Views: 21.2ms)
575
+
576
+
577
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:09:30 -0700
578
+ Compiled jquery.js (3ms) (pid 49726)
579
+ Compiled jquery.ui.core.js (41ms) (pid 49726)
580
+ Compiled jquery.ui.datepicker.js (47ms) (pid 49726)
581
+ Compiled date-input-polyfill.js (54ms) (pid 49726)
582
+ Compiled application.js (66ms) (pid 49726)
583
+ Served asset /application.js - 200 OK (79ms)
584
+
585
+
586
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:11:18 -0700
587
+ Processing by TestController#test as HTML
588
+ Rendered test/test.html.erb (0.6ms)
589
+ Completed 200 OK in 1ms (Views: 1.0ms)
590
+
591
+
592
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:11:18 -0700
593
+ Served asset /application.js - 304 Not Modified (0ms)
594
+
595
+
596
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:11:31 -0700
597
+ Processing by TestController#test as HTML
598
+ Rendered test/test.html.erb (8.3ms)
599
+ Completed 200 OK in 40ms (Views: 39.6ms)
600
+
601
+
602
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:11:31 -0700
603
+ Error compiling asset application.css:
604
+ Sprockets::FileNotFound: couldn't find file 'jquery-ui'
605
+ (in /Users/john/Development/date-input-rails/spec/internal/app/assets/stylesheets/application.css:2)
606
+ Served asset /application.css - 500 Internal Server Error
607
+
608
+
609
+
610
+
611
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:11:31 -0700
612
+ Served asset /application.js - 200 OK (108ms)
613
+
614
+
615
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:12:14 -0700
616
+ Processing by TestController#test as HTML
617
+ Rendered test/test.html.erb (9.4ms)
618
+ Completed 200 OK in 24ms (Views: 23.9ms)
619
+
620
+
621
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:12:14 -0700
622
+ Compiled jquery.ui.core.css (1ms) (pid 49759)
623
+ Compiled jquery.ui.theme.css (41ms) (pid 49759)
624
+ Compiled jquery.ui.datepicker.css (76ms) (pid 49759)
625
+ Compiled application.css (112ms) (pid 49759)
626
+ Served asset /application.css - 200 OK (131ms)
627
+
628
+
629
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:12:14 -0700
630
+ Served asset /application.js - 200 OK (73ms)
631
+
632
+
633
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-10-29 13:12:14 -0700
634
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (6ms)
635
+
636
+
637
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-10-29 13:12:14 -0700
638
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (23ms)
639
+
640
+
641
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-10-29 13:12:15 -0700
642
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (19ms)
643
+
644
+
645
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:15 -0700
646
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (250ms)
647
+
648
+
649
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:15 -0700
650
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (179ms)
651
+
652
+
653
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:15 -0700
654
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (26ms)
655
+
656
+
657
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:12:45 -0700
658
+ Processing by TestController#test as HTML
659
+ Rendered test/test.html.erb (4.6ms)
660
+ Completed 200 OK in 16ms (Views: 15.3ms)
661
+
662
+
663
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:12:45 -0700
664
+ Served asset /application.css - 200 OK (10ms)
665
+
666
+
667
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:12:45 -0700
668
+ Served asset /application.js - 200 OK (43ms)
669
+
670
+
671
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
672
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (4ms)
673
+
674
+
675
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
676
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (2ms)
677
+
678
+
679
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
680
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (2ms)
681
+
682
+
683
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
684
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (2ms)
685
+
686
+
687
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
688
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (2ms)
689
+
690
+
691
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-10-29 13:12:46 -0700
692
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (1ms)
693
+
694
+
695
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
696
+ Processing by TestController#test as HTML
697
+ Rendered test/test.html.erb (5.0ms)
698
+ Completed 200 OK in 20ms (Views: 19.3ms)
699
+
700
+
701
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
702
+ Served asset /application.css - 200 OK (8ms)
703
+
704
+
705
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
706
+ Served asset /application.js - 200 OK (56ms)
707
+
708
+
709
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
710
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (2ms)
711
+
712
+
713
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
714
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (1ms)
715
+
716
+
717
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
718
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (2ms)
719
+
720
+
721
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:00 -0700
722
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (2ms)
723
+
724
+
725
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:01 -0700
726
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (1ms)
727
+
728
+
729
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:01 -0700
730
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (2ms)
731
+
732
+
733
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-10-29 13:13:01 -0700
734
+ Processing by TestController#test as HTML
735
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
736
+ Rendered test/test.html.erb (1.2ms)
737
+ Completed 200 OK in 2ms (Views: 1.8ms)
738
+
739
+
740
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:13:37 -0700
741
+ Processing by TestController#test as HTML
742
+ Rendered test/test.html.erb (3.0ms)
743
+ Completed 200 OK in 12ms (Views: 12.0ms)
744
+
745
+
746
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:13:37 -0700
747
+ Served asset /application.css - 200 OK (9ms)
748
+
749
+
750
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:13:37 -0700
751
+ Served asset /application.js - 200 OK (42ms)
752
+
753
+
754
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-10-29 13:13:37 -0700
755
+ Processing by TestController#test as HTML
756
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
757
+ Rendered test/test.html.erb (0.8ms)
758
+ Completed 200 OK in 1ms (Views: 1.2ms)
759
+
760
+
761
+ Started GET "/test" for 127.0.0.1 at 2012-10-29 13:13:41 -0700
762
+ Processing by TestController#test as HTML
763
+ Rendered test/test.html.erb (1.9ms)
764
+ Completed 200 OK in 3ms (Views: 3.0ms)
765
+
766
+
767
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-10-29 13:13:41 -0700
768
+ Served asset /application.css - 200 OK (0ms)
769
+
770
+
771
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-10-29 13:13:41 -0700
772
+ Served asset /application.js - 200 OK (0ms)
773
+
774
+
775
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
776
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (3ms)
777
+
778
+
779
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
780
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (43ms)
781
+
782
+
783
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
784
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (5ms)
785
+
786
+
787
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
788
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (2ms)
789
+
790
+
791
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
792
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (1ms)
793
+
794
+
795
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
796
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (2ms)
797
+
798
+
799
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-10-29 13:13:42 -0700
800
+ Processing by TestController#test as HTML
801
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
802
+ Rendered test/test.html.erb (1.2ms)
803
+ Completed 200 OK in 2ms (Views: 1.9ms)
File without changes
@@ -0,0 +1,23 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ require 'rails'
4
+
5
+ Bundler.require :default, :development
6
+
7
+ require 'capybara/rspec'
8
+
9
+ Combustion.initialize! :action_controller, :action_view, :sprockets
10
+
11
+ require 'rspec/rails'
12
+ require 'capybara/rails'
13
+ require 'capybara/firebug'
14
+
15
+ Capybara.register_driver :chrome do |app|
16
+ Capybara::Selenium::Driver.new(app, :browser => :chrome)
17
+ end
18
+
19
+ Capybara.register_driver :firefox do |app|
20
+ profile = Selenium::WebDriver::Firefox::Profile.new
21
+ profile.enable_firebug
22
+ Capybara::Selenium::Driver.new(app, :browser => :firefox, :profile => profile)
23
+ end
metadata ADDED
@@ -0,0 +1,229 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: date-input-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - John Firebaugh
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.8
30
+ - !ruby/object:Gem::Dependency
31
+ name: jquery-ui-rails
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: sqlite3
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: jquery-rails
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: modernizr
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rspec-rails
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: combustion
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 0.3.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 0.3.1
126
+ - !ruby/object:Gem::Dependency
127
+ name: capybara
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: 2.0.0.beta
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: 2.0.0.beta
142
+ - !ruby/object:Gem::Dependency
143
+ name: capybara-firebug
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ - !ruby/object:Gem::Dependency
159
+ name: chromedriver-helper
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ! '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ description: Rails support for <input type='date'> with a jQuery UI datepicker polyfill
175
+ email:
176
+ - john.firebaugh@verbasoftware.com
177
+ executables: []
178
+ extensions: []
179
+ extra_rdoc_files: []
180
+ files:
181
+ - lib/assets/javascripts/date-input-polyfill.js
182
+ - lib/date-input-rails.rb
183
+ - MIT-LICENSE
184
+ - Rakefile
185
+ - README.md
186
+ - spec/features/date_input_spec.rb
187
+ - spec/internal/app/assets/javascripts/application.js
188
+ - spec/internal/app/assets/stylesheets/application.css
189
+ - spec/internal/app/controllers/test_controller.rb
190
+ - spec/internal/app/views/test/test.html.erb
191
+ - spec/internal/config/routes.rb
192
+ - spec/internal/log/test.log
193
+ - spec/internal/public/favicon.ico
194
+ - spec/spec_helper.rb
195
+ homepage: https://github.com/Verba/date-input-rails
196
+ licenses: []
197
+ post_install_message:
198
+ rdoc_options: []
199
+ require_paths:
200
+ - lib
201
+ required_ruby_version: !ruby/object:Gem::Requirement
202
+ none: false
203
+ requirements:
204
+ - - ! '>='
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ required_rubygems_version: !ruby/object:Gem::Requirement
208
+ none: false
209
+ requirements:
210
+ - - ! '>='
211
+ - !ruby/object:Gem::Version
212
+ version: '0'
213
+ requirements: []
214
+ rubyforge_project:
215
+ rubygems_version: 1.8.23
216
+ signing_key:
217
+ specification_version: 3
218
+ summary: Rails support for <input type='date'> with a jQuery UI datepicker polyfill
219
+ test_files:
220
+ - spec/features/date_input_spec.rb
221
+ - spec/internal/app/assets/javascripts/application.js
222
+ - spec/internal/app/assets/stylesheets/application.css
223
+ - spec/internal/app/controllers/test_controller.rb
224
+ - spec/internal/app/views/test/test.html.erb
225
+ - spec/internal/config/routes.rb
226
+ - spec/internal/log/test.log
227
+ - spec/internal/public/favicon.ico
228
+ - spec/spec_helper.rb
229
+ has_rdoc: