date-input-rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,6 +19,13 @@ module ActionView
19
19
  end unless instance_methods.include?(:date_field)
20
20
  end
21
21
 
22
+ # http://blog.lrdesign.com/2011/04/extending-form_for-in-rails-3-with-your-own-methods/
23
+ class FormBuilder
24
+ def date_field(method, options = {})
25
+ @template.date_field(@object_name, method, objectify_options(options))
26
+ end unless instance_methods.include?(:date_field)
27
+ end
28
+
22
29
  module FormTagHelper
23
30
  def date_field_tag(name, value = nil, options = {})
24
31
  text_field_tag(name, value, options.stringify_keys.update("type" => "date"))
@@ -1,20 +1,32 @@
1
1
  require "spec_helper"
2
2
 
3
3
  describe DateInputRails do
4
- shared_examples "an <input type='date'>" do
4
+ shared_examples "an <input type='date'>" do |path|
5
5
  it "submits data in ISO format" do
6
- visit "/test"
6
+ visit path
7
7
  fill_in "date", :with => "10/28/2012"
8
8
  click_button "Submit"
9
9
  page.find("#date-param").should have_content("2012-10-28")
10
10
  end
11
11
  end
12
12
 
13
- context "on browsers supporting <input type='date'>", :driver => :chrome do
14
- it_behaves_like "an <input type='date'>"
13
+ context "using normal helper" do
14
+ context "on browsers supporting <input type='date'>", :driver => :chrome do
15
+ it_behaves_like "an <input type='date'>", "/test"
16
+ end
17
+
18
+ context "on browsers not supporting <input type='date'>", :driver => :firefox do
19
+ it_behaves_like "an <input type='date'>", "/test"
20
+ end
15
21
  end
16
22
 
17
- context "on browsers not supporting <input type='date'>", :driver => :firefox do
18
- it_behaves_like "an <input type='date'>"
23
+ context "using form builder" do
24
+ context "on browsers supporting <input type='date'>", :driver => :chrome do
25
+ it_behaves_like "an <input type='date'>", "/test_models/new"
26
+ end
27
+
28
+ context "on browsers not supporting <input type='date'>", :driver => :firefox do
29
+ it_behaves_like "an <input type='date'>", "/test_models/new"
30
+ end
19
31
  end
20
32
  end
@@ -0,0 +1,13 @@
1
+ class TestModelsController < ActionController::Base
2
+ def test
3
+ end
4
+
5
+ def new
6
+ @test = TestModel.new
7
+ render "test_models/builder_test"
8
+ end
9
+
10
+ def create
11
+ render "test_models/test"
12
+ end
13
+ end
@@ -0,0 +1,10 @@
1
+ class TestModel
2
+ extend ActiveModel::Naming
3
+ include ActiveModel::Conversion
4
+
5
+ attr_accessor :date
6
+
7
+ def persisted?
8
+ false
9
+ end
10
+ end
@@ -0,0 +1,6 @@
1
+ <%= stylesheet_link_tag "application" %>
2
+ <%= javascript_include_tag "application" %>
3
+ <%= form_for @test do |f| %>
4
+ <%= f.date_field :date, :name => "date", :id => "date" %>
5
+ <%= f.submit "Submit" %>
6
+ <% end %>
@@ -1,3 +1,4 @@
1
1
  Rails.application.routes.draw do
2
- match "test" => "test#test"
2
+ match "test" => "test_models#test"
3
+ resource :test_models
3
4
  end
@@ -801,3 +801,598 @@ Processing by TestController#test as HTML
801
801
  Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
802
802
  Rendered test/test.html.erb (1.2ms)
803
803
  Completed 200 OK in 2ms (Views: 1.9ms)
804
+
805
+
806
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:41:23 -0800
807
+ Processing by TestModelsController#test as HTML
808
+ Rendered test_models/test.html.erb (4.2ms)
809
+ Completed 200 OK in 37ms (Views: 36.7ms)
810
+
811
+
812
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:23 -0800
813
+ Compiled jquery.ui.core.css (1ms) (pid 84313)
814
+ Compiled jquery.ui.theme.css (7ms) (pid 84313)
815
+ Compiled jquery.ui.datepicker.css (23ms) (pid 84313)
816
+ Compiled application.css (30ms) (pid 84313)
817
+ Served asset /application.css - 200 OK (42ms)
818
+
819
+
820
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:23 -0800
821
+ Compiled modernizr.js (0ms) (pid 84313)
822
+ Compiled jquery.js (4ms) (pid 84313)
823
+ Compiled jquery.ui.core.js (14ms) (pid 84313)
824
+ Compiled jquery.ui.datepicker.js (21ms) (pid 84313)
825
+ Compiled date-input-polyfill.js (30ms) (pid 84313)
826
+ Compiled application.js (65ms) (pid 84313)
827
+ Served asset /application.js - 200 OK (96ms)
828
+
829
+
830
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:41:24 -0800
831
+ Processing by TestModelsController#test as HTML
832
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
833
+ Rendered test_models/test.html.erb (0.8ms)
834
+ Completed 200 OK in 1ms (Views: 1.3ms)
835
+
836
+
837
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:41:28 -0800
838
+ Processing by TestModelsController#test as HTML
839
+ Rendered test_models/test.html.erb (1.7ms)
840
+ Completed 200 OK in 3ms (Views: 2.6ms)
841
+
842
+
843
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:28 -0800
844
+ Served asset /application.css - 200 OK (0ms)
845
+
846
+
847
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:28 -0800
848
+ Served asset /application.js - 200 OK (0ms)
849
+
850
+
851
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:41:28 -0800
852
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (256ms)
853
+
854
+
855
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:41:28 -0800
856
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (15ms)
857
+
858
+
859
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
860
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (13ms)
861
+
862
+
863
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
864
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (9ms)
865
+
866
+
867
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
868
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (9ms)
869
+
870
+
871
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
872
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (7ms)
873
+
874
+
875
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
876
+ Processing by TestModelsController#test as HTML
877
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
878
+ Rendered test_models/test.html.erb (0.8ms)
879
+ Completed 200 OK in 1ms (Views: 1.2ms)
880
+
881
+
882
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:41:29 -0800
883
+ Processing by TestModelsController#new as HTML
884
+ Rendered test_models/builder_test.html.erb (2.9ms)
885
+ Completed 200 OK in 25ms (Views: 24.7ms)
886
+
887
+
888
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
889
+ Served asset /application.css - 304 Not Modified (0ms)
890
+
891
+
892
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
893
+ Served asset /application.js - 304 Not Modified (0ms)
894
+
895
+
896
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
897
+ Processing by TestModelsController#create as HTML
898
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"pCRTNPI8SGwQtG5vRXMpoz0T2EqgjgzwgIMMqJtw2Ic=", "date"=>"2012-10-28", "commit"=>"Submit"}
899
+ Rendered test_models/test.html.erb (0.8ms)
900
+ Completed 200 OK in 1ms (Views: 1.2ms)
901
+
902
+
903
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
904
+ Served asset /application.css - 304 Not Modified (0ms)
905
+
906
+
907
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
908
+ Served asset /application.js - 304 Not Modified (0ms)
909
+
910
+
911
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
912
+ Processing by TestModelsController#new as HTML
913
+ Rendered test_models/builder_test.html.erb (1.4ms)
914
+ Completed 200 OK in 2ms (Views: 1.8ms)
915
+
916
+
917
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
918
+ Served asset /application.css - 304 Not Modified (0ms)
919
+
920
+
921
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:30 -0800
922
+ Served asset /application.js - 304 Not Modified (0ms)
923
+
924
+
925
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
926
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 304 Not Modified (0ms)
927
+
928
+
929
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
930
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
931
+
932
+
933
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
934
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 304 Not Modified (0ms)
935
+
936
+
937
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
938
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 304 Not Modified (0ms)
939
+
940
+
941
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
942
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 304 Not Modified (0ms)
943
+
944
+
945
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
946
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
947
+
948
+
949
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
950
+ Processing by TestModelsController#create as HTML
951
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7oft1SibNlXg7F+fP/1nagDtfEFSusmJTscGm+0B5sw=", "date"=>"2012-10-28", "commit"=>"Submit"}
952
+ Rendered test_models/test.html.erb (0.8ms)
953
+ Completed 200 OK in 1ms (Views: 1.2ms)
954
+
955
+
956
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
957
+ Served asset /application.css - 304 Not Modified (0ms)
958
+
959
+
960
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:41:31 -0800
961
+ Served asset /application.js - 304 Not Modified (0ms)
962
+
963
+
964
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:48:46 -0800
965
+ Processing by TestModelsController#test as HTML
966
+ Rendered test_models/test.html.erb (25.6ms)
967
+ Completed 200 OK in 38ms (Views: 37.6ms)
968
+
969
+
970
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:48:46 -0800
971
+ Compiled jquery.ui.core.css (1ms) (pid 85128)
972
+ Compiled jquery.ui.theme.css (6ms) (pid 85128)
973
+ Compiled jquery.ui.datepicker.css (22ms) (pid 85128)
974
+ Compiled application.css (32ms) (pid 85128)
975
+ Served asset /application.css - 200 OK (43ms)
976
+
977
+
978
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:48:46 -0800
979
+ Compiled modernizr.js (0ms) (pid 85128)
980
+ Compiled jquery.js (3ms) (pid 85128)
981
+ Compiled jquery.ui.core.js (32ms) (pid 85128)
982
+ Compiled jquery.ui.datepicker.js (38ms) (pid 85128)
983
+ Compiled date-input-polyfill.js (46ms) (pid 85128)
984
+ Compiled application.js (59ms) (pid 85128)
985
+ Served asset /application.js - 200 OK (91ms)
986
+
987
+
988
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:48:46 -0800
989
+ Processing by TestModelsController#test as HTML
990
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
991
+ Rendered test_models/test.html.erb (0.7ms)
992
+ Completed 200 OK in 1ms (Views: 1.1ms)
993
+
994
+
995
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:48:50 -0800
996
+ Processing by TestModelsController#test as HTML
997
+ Rendered test_models/test.html.erb (1.7ms)
998
+ Completed 200 OK in 3ms (Views: 2.8ms)
999
+
1000
+
1001
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:48:50 -0800
1002
+ Served asset /application.css - 200 OK (0ms)
1003
+
1004
+
1005
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:48:50 -0800
1006
+ Served asset /application.js - 200 OK (0ms)
1007
+
1008
+
1009
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1010
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (13ms)
1011
+
1012
+
1013
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1014
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (5ms)
1015
+
1016
+
1017
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1018
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (5ms)
1019
+
1020
+
1021
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1022
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (6ms)
1023
+
1024
+
1025
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1026
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (6ms)
1027
+
1028
+
1029
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1030
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (7ms)
1031
+
1032
+
1033
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:48:51 -0800
1034
+ Processing by TestModelsController#test as HTML
1035
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1036
+ Rendered test_models/test.html.erb (1.2ms)
1037
+ Completed 200 OK in 2ms (Views: 1.9ms)
1038
+
1039
+
1040
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1041
+ Processing by TestModelsController#new as HTML
1042
+ Rendered test_models/builder_test.html.erb (3.6ms)
1043
+ Completed 200 OK in 5ms (Views: 4.7ms)
1044
+
1045
+
1046
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1047
+ Served asset /application.css - 304 Not Modified (0ms)
1048
+
1049
+
1050
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1051
+ Served asset /application.js - 304 Not Modified (0ms)
1052
+
1053
+
1054
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1055
+ Processing by TestModelsController#create as HTML
1056
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/E0U+BId9IO/ondA09IIyuqrCnKzi5w/kkwThxDJlAg=", "date"=>"2012-10-28", "commit"=>"Submit"}
1057
+ Rendered test_models/test.html.erb (0.8ms)
1058
+ Completed 200 OK in 1ms (Views: 1.2ms)
1059
+
1060
+
1061
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1062
+ Served asset /application.css - 304 Not Modified (0ms)
1063
+
1064
+
1065
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1066
+ Served asset /application.js - 304 Not Modified (0ms)
1067
+
1068
+
1069
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:48:52 -0800
1070
+ Processing by TestModelsController#new as HTML
1071
+ Rendered test_models/builder_test.html.erb (1.4ms)
1072
+ Completed 200 OK in 2ms (Views: 1.8ms)
1073
+
1074
+
1075
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:48:53 -0800
1076
+ Processing by TestModelsController#create as HTML
1077
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RSniT2qinsVRFo9BhfDQx7/wn7fpl9NcYDAQhQUI638=", "date"=>"2012-10-28", "commit"=>"Submit"}
1078
+ Rendered test_models/test.html.erb (0.8ms)
1079
+ Completed 200 OK in 1ms (Views: 1.2ms)
1080
+
1081
+
1082
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:51:09 -0800
1083
+ Processing by TestModelsController#test as HTML
1084
+ Rendered test_models/test.html.erb (3.7ms)
1085
+ Completed 200 OK in 37ms (Views: 36.7ms)
1086
+
1087
+
1088
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:09 -0800
1089
+ Served asset /application.js - 200 OK (35ms)
1090
+
1091
+
1092
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:09 -0800
1093
+ Served asset /application.css - 200 OK (9ms)
1094
+
1095
+
1096
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:51:10 -0800
1097
+ Processing by TestModelsController#test as HTML
1098
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1099
+ Rendered test_models/test.html.erb (1.0ms)
1100
+ Completed 200 OK in 2ms (Views: 1.6ms)
1101
+
1102
+
1103
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1104
+ Processing by TestModelsController#test as HTML
1105
+ Rendered test_models/test.html.erb (1.6ms)
1106
+ Completed 200 OK in 3ms (Views: 2.6ms)
1107
+
1108
+
1109
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1110
+ Served asset /application.css - 200 OK (0ms)
1111
+
1112
+
1113
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1114
+ Served asset /application.js - 200 OK (0ms)
1115
+
1116
+
1117
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1118
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (3ms)
1119
+
1120
+
1121
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1122
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (4ms)
1123
+
1124
+
1125
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1126
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (2ms)
1127
+
1128
+
1129
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1130
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (33ms)
1131
+
1132
+
1133
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:14 -0800
1134
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (1ms)
1135
+
1136
+
1137
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:15 -0800
1138
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (2ms)
1139
+
1140
+
1141
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:51:15 -0800
1142
+ Processing by TestModelsController#test as HTML
1143
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1144
+ Rendered test_models/test.html.erb (1.3ms)
1145
+ Completed 200 OK in 2ms (Views: 1.9ms)
1146
+
1147
+
1148
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:51:15 -0800
1149
+ Processing by TestModelsController#new as HTML
1150
+ Rendered test_models/builder_test.html.erb (4.4ms)
1151
+ Completed 200 OK in 8ms (Views: 7.4ms)
1152
+
1153
+
1154
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:15 -0800
1155
+ Served asset /application.css - 304 Not Modified (0ms)
1156
+
1157
+
1158
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:15 -0800
1159
+ Served asset /application.js - 304 Not Modified (0ms)
1160
+
1161
+
1162
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:51:16 -0800
1163
+ Processing by TestModelsController#create as HTML
1164
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"+osv69Phk2F9ZgO/tgnJSbPRozY7IQw2IyijYdaco10=", "date"=>"2012-10-28", "commit"=>"Submit"}
1165
+ Rendered test_models/test.html.erb (0.8ms)
1166
+ Completed 200 OK in 1ms (Views: 1.2ms)
1167
+
1168
+
1169
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:16 -0800
1170
+ Served asset /application.css - 304 Not Modified (0ms)
1171
+
1172
+
1173
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:16 -0800
1174
+ Served asset /application.js - 304 Not Modified (0ms)
1175
+
1176
+
1177
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:51:16 -0800
1178
+ Processing by TestModelsController#new as HTML
1179
+ Rendered test_models/builder_test.html.erb (1.5ms)
1180
+ Completed 200 OK in 2ms (Views: 2.0ms)
1181
+
1182
+
1183
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:51:16 -0800
1184
+ Processing by TestModelsController#create as HTML
1185
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xARG/hFP0bWvqBqiFSv4GAmWXOWLDEDkRqadxLzdI0I=", "date"=>"2012-10-28", "commit"=>"Submit"}
1186
+ Rendered test_models/test.html.erb (1.3ms)
1187
+ Completed 200 OK in 2ms (Views: 1.9ms)
1188
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:51:51 -0800
1189
+ Processing by TestModelsController#test as HTML
1190
+ Rendered test_models/test.html.erb (25.4ms)
1191
+ Completed 200 OK in 38ms (Views: 37.9ms)
1192
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:51 -0800
1193
+ Compiled jquery.ui.core.css (1ms) (pid 85570)
1194
+ Compiled jquery.ui.theme.css (6ms) (pid 85570)
1195
+ Compiled jquery.ui.datepicker.css (20ms) (pid 85570)
1196
+ Compiled application.css (27ms) (pid 85570)
1197
+ Served asset /application.css - 200 OK (37ms)
1198
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:51 -0800
1199
+ Compiled modernizr.js (0ms) (pid 85570)
1200
+ Compiled jquery.js (3ms) (pid 85570)
1201
+ Compiled jquery.ui.core.js (38ms) (pid 85570)
1202
+ Compiled jquery.ui.datepicker.js (44ms) (pid 85570)
1203
+ Compiled date-input-polyfill.js (53ms) (pid 85570)
1204
+ Compiled application.js (66ms) (pid 85570)
1205
+ Served asset /application.js - 200 OK (87ms)
1206
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:51:51 -0800
1207
+ Processing by TestModelsController#test as HTML
1208
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1209
+ Rendered test_models/test.html.erb (0.9ms)
1210
+ Completed 200 OK in 1ms (Views: 1.4ms)
1211
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:51:55 -0800
1212
+ Processing by TestModelsController#test as HTML
1213
+ Rendered test_models/test.html.erb (1.6ms)
1214
+ Completed 200 OK in 2ms (Views: 2.4ms)
1215
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1216
+ Served asset /application.css - 200 OK (0ms)
1217
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1218
+ Served asset /application.js - 200 OK (0ms)
1219
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1220
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (5ms)
1221
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1222
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (4ms)
1223
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1224
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (3ms)
1225
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1226
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (3ms)
1227
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1228
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (4ms)
1229
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1230
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (3ms)
1231
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:51:56 -0800
1232
+ Processing by TestModelsController#test as HTML
1233
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1234
+ Rendered test_models/test.html.erb (1.4ms)
1235
+ Completed 200 OK in 2ms (Views: 2.1ms)
1236
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1237
+ Processing by TestModelsController#new as HTML
1238
+ Rendered test_models/builder_test.html.erb (2.8ms)
1239
+ Completed 200 OK in 4ms (Views: 3.8ms)
1240
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1241
+ Served asset /application.css - 304 Not Modified (0ms)
1242
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1243
+ Served asset /application.js - 304 Not Modified (0ms)
1244
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1245
+ Processing by TestModelsController#create as HTML
1246
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2gDw4A8JVVDXGAwgKBDbvSm78Uknorjz8KhU7V1/OTs=", "date"=>"2012-10-28", "commit"=>"Submit"}
1247
+ Rendered test_models/test.html.erb (0.8ms)
1248
+ Completed 200 OK in 1ms (Views: 1.2ms)
1249
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1250
+ Served asset /application.js - 304 Not Modified (0ms)
1251
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1252
+ Served asset /application.css - 304 Not Modified (0ms)
1253
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:51:57 -0800
1254
+ Processing by TestModelsController#new as HTML
1255
+ Rendered test_models/builder_test.html.erb (1.6ms)
1256
+ Completed 200 OK in 2ms (Views: 2.0ms)
1257
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:51:58 -0800
1258
+ Processing by TestModelsController#create as HTML
1259
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"36WdpiCQPgCAiE5b/V3kY68qL6I1pkFHRsWziyTBU9I=", "date"=>"2012-10-28", "commit"=>"Submit"}
1260
+ Rendered test_models/test.html.erb (0.8ms)
1261
+ Completed 200 OK in 1ms (Views: 1.1ms)
1262
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:53:07 -0800
1263
+ Processing by TestModelsController#test as HTML
1264
+ Rendered test_models/test.html.erb (4.2ms)
1265
+ Completed 200 OK in 16ms (Views: 15.6ms)
1266
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:53:07 -0800
1267
+ Served asset /application.js - 200 OK (33ms)
1268
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:53:07 -0800
1269
+ Served asset /application.css - 200 OK (8ms)
1270
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:53:08 -0800
1271
+ Processing by TestModelsController#test as HTML
1272
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1273
+ Rendered test_models/test.html.erb (0.7ms)
1274
+ Completed 200 OK in 1ms (Views: 1.1ms)
1275
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 10:53:11 -0800
1276
+ Processing by TestModelsController#test as HTML
1277
+ Rendered test_models/test.html.erb (1.5ms)
1278
+ Completed 200 OK in 3ms (Views: 2.4ms)
1279
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1280
+ Served asset /application.css - 200 OK (0ms)
1281
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1282
+ Served asset /application.js - 200 OK (0ms)
1283
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1284
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (1ms)
1285
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1286
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (2ms)
1287
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1288
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (2ms)
1289
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1290
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (2ms)
1291
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1292
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (1ms)
1293
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1294
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (2ms)
1295
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 10:53:12 -0800
1296
+ Processing by TestModelsController#test as HTML
1297
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1298
+ Rendered test_models/test.html.erb (1.2ms)
1299
+ Completed 200 OK in 2ms (Views: 1.8ms)
1300
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1301
+ Processing by TestModelsController#new as HTML
1302
+ Rendered test_models/builder_test.html.erb (2.6ms)
1303
+ Completed 200 OK in 4ms (Views: 3.5ms)
1304
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1305
+ Served asset /application.css - 304 Not Modified (0ms)
1306
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1307
+ Served asset /application.js - 304 Not Modified (0ms)
1308
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1309
+ Processing by TestModelsController#create as HTML
1310
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ADXaCvRYviQ5kgApowrpwkLgK8R8fqH+dffO8iN1zmQ=", "date"=>"2012-10-28", "commit"=>"Submit"}
1311
+ Rendered test_models/test.html.erb (0.7ms)
1312
+ Completed 200 OK in 1ms (Views: 1.2ms)
1313
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1314
+ Served asset /application.css - 304 Not Modified (0ms)
1315
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1316
+ Served asset /application.js - 304 Not Modified (0ms)
1317
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 10:53:13 -0800
1318
+ Processing by TestModelsController#new as HTML
1319
+ Rendered test_models/builder_test.html.erb (2.3ms)
1320
+ Completed 200 OK in 3ms (Views: 3.0ms)
1321
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 10:53:14 -0800
1322
+ Processing by TestModelsController#create as HTML
1323
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"VekVpORaVuYOUcyw2rlCHVXUjkUIDuTllxyhgLcjoqU=", "date"=>"2012-10-28", "commit"=>"Submit"}
1324
+ Rendered test_models/test.html.erb (0.8ms)
1325
+ Completed 200 OK in 1ms (Views: 1.2ms)
1326
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 11:10:51 -0800
1327
+ Processing by TestModelsController#test as HTML
1328
+ Rendered test_models/test.html.erb (3.6ms)
1329
+ Completed 200 OK in 34ms (Views: 34.1ms)
1330
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 11:10:52 -0800
1331
+ Compiled jquery.ui.core.css (1ms) (pid 86330)
1332
+ Compiled jquery.ui.theme.css (8ms) (pid 86330)
1333
+ Compiled jquery.ui.datepicker.css (25ms) (pid 86330)
1334
+ Compiled application.css (34ms) (pid 86330)
1335
+ Served asset /application.css - 200 OK (46ms)
1336
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 11:10:52 -0800
1337
+ Compiled jquery.js (24ms) (pid 86330)
1338
+ Compiled jquery.ui.core.js (35ms) (pid 86330)
1339
+ Compiled jquery.ui.datepicker.js (43ms) (pid 86330)
1340
+ Compiled date-input-polyfill.js (50ms) (pid 86330)
1341
+ Compiled application.js (56ms) (pid 86330)
1342
+ Served asset /application.js - 200 OK (68ms)
1343
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 11:10:52 -0800
1344
+ Processing by TestModelsController#test as HTML
1345
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1346
+ Rendered test_models/test.html.erb (0.7ms)
1347
+ Completed 200 OK in 1ms (Views: 1.2ms)
1348
+ Started GET "/test" for 127.0.0.1 at 2012-12-10 11:10:56 -0800
1349
+ Processing by TestModelsController#test as HTML
1350
+ Rendered test_models/test.html.erb (1.7ms)
1351
+ Completed 200 OK in 3ms (Views: 2.7ms)
1352
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1353
+ Served asset /application.css - 200 OK (0ms)
1354
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1355
+ Served asset /application.js - 200 OK (0ms)
1356
+ Started GET "/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1357
+ Served asset /jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png - 200 OK (10ms)
1358
+ Started GET "/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1359
+ Served asset /jquery-ui/ui-bg_flat_75_ffffff_40x100.png - 200 OK (7ms)
1360
+ Started GET "/assets/jquery-ui/ui-icons_222222_256x240.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1361
+ Served asset /jquery-ui/ui-icons_222222_256x240.png - 200 OK (7ms)
1362
+ Started GET "/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1363
+ Served asset /jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png - 200 OK (6ms)
1364
+ Started GET "/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1365
+ Served asset /jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (7ms)
1366
+ Started GET "/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1367
+ Served asset /jquery-ui/ui-bg_glass_65_ffffff_1x400.png - 200 OK (6ms)
1368
+ Started GET "/test?date=2012-10-28&commit=Submit" for 127.0.0.1 at 2012-12-10 11:10:57 -0800
1369
+ Processing by TestModelsController#test as HTML
1370
+ Parameters: {"date"=>"2012-10-28", "commit"=>"Submit"}
1371
+ Rendered test_models/test.html.erb (1.3ms)
1372
+ Completed 200 OK in 2ms (Views: 2.0ms)
1373
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1374
+ Processing by TestModelsController#new as HTML
1375
+ Rendered test_models/builder_test.html.erb (4.7ms)
1376
+ Completed 200 OK in 7ms (Views: 6.6ms)
1377
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1378
+ Served asset /application.css - 304 Not Modified (0ms)
1379
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1380
+ Served asset /application.js - 304 Not Modified (0ms)
1381
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1382
+ Processing by TestModelsController#create as HTML
1383
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"HY1W4y8/c8y887GoNukkO0chBDbU0kgOyppNZLXZKfA=", "date"=>"2012-10-28", "commit"=>"Submit"}
1384
+ Rendered test_models/test.html.erb (0.8ms)
1385
+ Completed 200 OK in 1ms (Views: 1.3ms)
1386
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1387
+ Served asset /application.js - 304 Not Modified (0ms)
1388
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1389
+ Served asset /application.css - 304 Not Modified (0ms)
1390
+ Started GET "/test_models/new" for 127.0.0.1 at 2012-12-10 11:10:58 -0800
1391
+ Processing by TestModelsController#new as HTML
1392
+ Rendered test_models/builder_test.html.erb (2.6ms)
1393
+ Completed 200 OK in 3ms (Views: 3.4ms)
1394
+ Started POST "/test_models" for 127.0.0.1 at 2012-12-10 11:10:59 -0800
1395
+ Processing by TestModelsController#create as HTML
1396
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"0NbIMp9TOwD8SavjO/m67+J5DttTgK4dm8iAARRt79c=", "date"=>"2012-10-28", "commit"=>"Submit"}
1397
+ Rendered test_models/test.html.erb (1.1ms)
1398
+ Completed 200 OK in 2ms (Views: 1.6ms)
@@ -1,12 +1,13 @@
1
1
  require 'rubygems'
2
2
  require 'bundler'
3
3
  require 'rails'
4
+ require 'action_view/railtie'
4
5
 
5
6
  Bundler.require :default, :development
6
7
 
7
8
  require 'capybara/rspec'
8
9
 
9
- Combustion.initialize! :action_controller, :action_view, :sprockets
10
+ Combustion.initialize! :action_controller, :active_model, :action_view, :sprockets
10
11
 
11
12
  require 'rspec/rails'
12
13
  require 'capybara/rails'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date-input-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-29 00:00:00.000000000 Z
12
+ date: 2012-12-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -186,8 +186,10 @@ files:
186
186
  - spec/features/date_input_spec.rb
187
187
  - spec/internal/app/assets/javascripts/application.js
188
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
189
+ - spec/internal/app/controllers/test_models_controller.rb
190
+ - spec/internal/app/models/test_model.rb
191
+ - spec/internal/app/views/test_models/builder_test.html.erb
192
+ - spec/internal/app/views/test_models/test.html.erb
191
193
  - spec/internal/config/routes.rb
192
194
  - spec/internal/log/test.log
193
195
  - spec/internal/public/favicon.ico
@@ -204,15 +206,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
204
206
  - - ! '>='
205
207
  - !ruby/object:Gem::Version
206
208
  version: '0'
209
+ segments:
210
+ - 0
211
+ hash: 4285296935248675896
207
212
  required_rubygems_version: !ruby/object:Gem::Requirement
208
213
  none: false
209
214
  requirements:
210
215
  - - ! '>='
211
216
  - !ruby/object:Gem::Version
212
217
  version: '0'
218
+ segments:
219
+ - 0
220
+ hash: 4285296935248675896
213
221
  requirements: []
214
222
  rubyforge_project:
215
- rubygems_version: 1.8.23
223
+ rubygems_version: 1.8.24
216
224
  signing_key:
217
225
  specification_version: 3
218
226
  summary: Rails support for <input type='date'> with a jQuery UI datepicker polyfill
@@ -220,10 +228,11 @@ test_files:
220
228
  - spec/features/date_input_spec.rb
221
229
  - spec/internal/app/assets/javascripts/application.js
222
230
  - spec/internal/app/assets/stylesheets/application.css
223
- - spec/internal/app/controllers/test_controller.rb
224
- - spec/internal/app/views/test/test.html.erb
231
+ - spec/internal/app/controllers/test_models_controller.rb
232
+ - spec/internal/app/models/test_model.rb
233
+ - spec/internal/app/views/test_models/builder_test.html.erb
234
+ - spec/internal/app/views/test_models/test.html.erb
225
235
  - spec/internal/config/routes.rb
226
236
  - spec/internal/log/test.log
227
237
  - spec/internal/public/favicon.ico
228
238
  - spec/spec_helper.rb
229
- has_rdoc:
@@ -1,4 +0,0 @@
1
- class TestController < ActionController::Base
2
- def test
3
- end
4
- end