jquery-ui-form 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. data/.document +5 -0
  2. data/.rvmrc +1 -0
  3. data/Gemfile +2 -0
  4. data/Gemfile.lock +109 -0
  5. data/LICENSE.txt +20 -0
  6. data/README.rdoc +25 -0
  7. data/Rakefile +53 -0
  8. data/VERSION +1 -0
  9. data/jquery-ui-form.gemspec +149 -0
  10. data/lib/generators/jquery_ui_form/install/install_generator.rb +18 -0
  11. data/lib/generators/templates/jquery-ui-form.js +46 -0
  12. data/lib/generators/templates/jquery-ui-form.rb +5 -0
  13. data/lib/generators/templates/jquery-ui-form.sass +115 -0
  14. data/lib/jquery-ui-form.rb +1 -0
  15. data/lib/jquery_ui_form.rb +7 -0
  16. data/lib/jquery_ui_form/form_builder.rb +43 -0
  17. data/lib/jquery_ui_form/helpers.rb +17 -0
  18. data/lib/jquery_ui_form/helpers/button_helper.rb +39 -0
  19. data/lib/jquery_ui_form/helpers/error_helper.rb +39 -0
  20. data/lib/jquery_ui_form/helpers/form_helper.rb +19 -0
  21. data/lib/jquery_ui_form/helpers/input_helper.rb +145 -0
  22. data/lib/jquery_ui_form/helpers/label_helper.rb +33 -0
  23. data/lib/jquery_ui_form/helpers/wrapper_helper.rb +41 -0
  24. data/lib/jquery_ui_form/inputs.rb +20 -0
  25. data/lib/jquery_ui_form/inputs/boolean_input.rb +16 -0
  26. data/lib/jquery_ui_form/inputs/check_boxes_input.rb +75 -0
  27. data/lib/jquery_ui_form/inputs/date_input.rb +24 -0
  28. data/lib/jquery_ui_form/inputs/email_input.rb +12 -0
  29. data/lib/jquery_ui_form/inputs/file_input.rb +12 -0
  30. data/lib/jquery_ui_form/inputs/hidden_input.rb +11 -0
  31. data/lib/jquery_ui_form/inputs/number_input.rb +12 -0
  32. data/lib/jquery_ui_form/inputs/password_input.rb +11 -0
  33. data/lib/jquery_ui_form/inputs/phone_input.rb +12 -0
  34. data/lib/jquery_ui_form/inputs/radio_input.rb +33 -0
  35. data/lib/jquery_ui_form/inputs/range_input.rb +12 -0
  36. data/lib/jquery_ui_form/inputs/search_input.rb +12 -0
  37. data/lib/jquery_ui_form/inputs/select_input.rb +19 -0
  38. data/lib/jquery_ui_form/inputs/string_input.rb +11 -0
  39. data/lib/jquery_ui_form/inputs/text_input.rb +13 -0
  40. data/lib/jquery_ui_form/inputs/url_input.rb +12 -0
  41. data/lib/jquery_ui_form/railtie.rb +14 -0
  42. data/spec/form_helper_spec.rb +22 -0
  43. data/spec/helpers/button_helper_spec.rb +54 -0
  44. data/spec/helpers/error_helper_spec.rb +81 -0
  45. data/spec/helpers/input_helper_spec.rb +18 -0
  46. data/spec/helpers/label_helper_spec.rb +31 -0
  47. data/spec/helpers/wrapper_helper_spec.rb +73 -0
  48. data/spec/inputs/boolean_input_spec.rb +25 -0
  49. data/spec/inputs/check_boxes_input_spec.rb +39 -0
  50. data/spec/inputs/date_input_spec.rb +47 -0
  51. data/spec/inputs/email_input_spec.rb +24 -0
  52. data/spec/inputs/file_input_spec.rb +24 -0
  53. data/spec/inputs/hidden_input_spec.rb +24 -0
  54. data/spec/inputs/number_input_spec.rb +24 -0
  55. data/spec/inputs/password_input_spec.rb +23 -0
  56. data/spec/inputs/phone_input_spec.rb +24 -0
  57. data/spec/inputs/radio_input_spec.rb +39 -0
  58. data/spec/inputs/range_input_spec.rb +24 -0
  59. data/spec/inputs/search_input_spec.rb +24 -0
  60. data/spec/inputs/select_input_spec.rb +28 -0
  61. data/spec/inputs/string_input_spec.rb +24 -0
  62. data/spec/inputs/text_input_spec.rb +24 -0
  63. data/spec/inputs/url_input_spec.rb +24 -0
  64. data/spec/spec_helper.rb +63 -0
  65. metadata +272 -0
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'NumberInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return number tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:field_size).should have_tag("input[type='number'].ui-number-input")
15
+ end
16
+ end
17
+
18
+ it "should return number tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:field_size, "data-name" =>"my-name").should have_tag("input[type='number'][data-name='my-name'].ui-number-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,23 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'PasswordInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+ end
10
+
11
+ it "should return password tag" do
12
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
13
+ builder.input(:password).should have_tag("input[type='password'].ui-password-input")
14
+ end
15
+ end
16
+
17
+ it "should return string tag with options" do
18
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
19
+ builder.input(:password, "data-name" =>"my-name").should have_tag("input[type='password'][data-name='my-name'].ui-password-input")
20
+ end
21
+ end
22
+
23
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'PhoneInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return phone tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:phone).should have_tag("input[type='tel'].ui-phone-input")
15
+ end
16
+ end
17
+
18
+ it "should return phone tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:phone, "data-name" =>"my-name").should have_tag("input[type='tel'][data-name='my-name'].ui-phone-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,39 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'RadioInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+ @object = mock({
10
+ :new_record? => true,
11
+ :login => "A"
12
+ })
13
+ end
14
+
15
+ it "should return radio tag" do
16
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
17
+ builder.object = @object
18
+ builder.input(:login, :as => :radio, :collection => [["A","a"], ["B","b"]]).
19
+ should have_tag("input[type='radio'].ui-radio-input" , :count => 2)
20
+ end
21
+ end
22
+
23
+ it "should return radio tag with options" do
24
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
25
+ builder.object = @object
26
+ builder.input(:login, :as => :radio, :collection => [["A","a"]], "data-name" =>"my-name").
27
+ should have_tag("input[type='radio'][data-name='my-name'].ui-radio-input")
28
+ end
29
+ end
30
+
31
+ it "should return radio tag as buttonset" do
32
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
33
+ builder.object = @object
34
+ a = builder.input(:login, :as => :radio, :buttonset => true, :collection => [["A","a"], ["B","b"]])
35
+ a.should have_tag("input[type='radio'].ui-radio-input" , :count => 2)
36
+ a.should have_tag("fieldset.to-buttonset")
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'RangeInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return range tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:range, :as => :range).should have_tag("input[type='range'].ui-range-input")
15
+ end
16
+ end
17
+
18
+ it "should return range tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:range, :as => :range, "data-name" =>"my-name").should have_tag("input[type='range'][data-name='my-name'].ui-range-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'SearchInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return search tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:search).should have_tag("input[type='search'].ui-search-input")
15
+ end
16
+ end
17
+
18
+ it "should return search tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:search, "data-name" =>"my-name").should have_tag("input[type='search'][data-name='my-name'].ui-search-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,28 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'SelectInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+ end
10
+
11
+ it "should return select tag" do
12
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
13
+ tag = builder.input(:mode, :collection => [["A","a"], ["B","b"]], :include_blank => true)
14
+ tag.should have_tag("select.ui-select-input")
15
+ tag.should have_tag("select>option", :count => 3)
16
+ tag.should have_tag("select>option[value='a']") do |text|
17
+ text.should contain("A")
18
+ end
19
+ end
20
+ end
21
+
22
+ it "should return select tag with options" do
23
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
24
+ builder.input(:mode, :collection => [], "data-name" =>"my-name").should have_tag("select[data-name='my-name'].ui-select-input")
25
+ end
26
+ end
27
+
28
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'StringInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return string tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:login).should have_tag("input[type='text'].ui-string-input")
15
+ end
16
+ end
17
+
18
+ it "should return string tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:login, "data-name" =>"my-name").should have_tag("input[type='text'][data-name='my-name'].ui-string-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'TextInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return textarea tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:notes).should have_tag("textarea.ui-text-input")
15
+ end
16
+ end
17
+
18
+ it "should return textarea tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:notes, "data-name" =>"my-name").should have_tag("textarea[data-name='my-name'].ui-text-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'UrlInput' do
4
+
5
+ include RSpec::Rails::HelperExampleGroup
6
+ include Webrat::HaveTagMatcher
7
+
8
+ before(:each) do
9
+
10
+ end
11
+
12
+ it "should return url tag" do
13
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
14
+ builder.input(:website).should have_tag("input[type='url'].ui-url-input")
15
+ end
16
+ end
17
+
18
+ it "should return url tag with options" do
19
+ helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
20
+ builder.input(:website, "data-name" =>"my-name").should have_tag("input[type='url'][data-name='my-name'].ui-url-input")
21
+ end
22
+ end
23
+
24
+ end
@@ -0,0 +1,63 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ Bundler.setup
4
+
5
+ require 'active_support'
6
+ require 'action_pack'
7
+ require 'action_view'
8
+ require 'action_controller'
9
+ require 'rails'
10
+ require 'rspec/rails'
11
+ require 'webrat'
12
+ require 'webrat/core/matchers'
13
+
14
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
15
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
16
+ require 'jquery-ui-form'
17
+ module JqueryUiFormSpecHelper
18
+ # include Rails.application.routes.url_helpers
19
+ class Application < Rails::Application
20
+
21
+ end
22
+ end
23
+ JqueryUiFormSpecHelper::Application.routes.draw do
24
+ match '/hello' => 'hello#new'
25
+ end
26
+
27
+ ActionView::Base.send(:include, JqueryUiForm::Helpers::FormHelper)
28
+ ActionView::Base.send(:include, JqueryUiForm::Helpers::ErrorHelper)
29
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Helpers::WrapperHelper)
30
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Helpers::LabelHelper)
31
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Helpers::ButtonHelper)
32
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Helpers::InputHelper)
33
+
34
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::BooleanInput)
35
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::StringInput)
36
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::PasswordInput)
37
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::SelectInput)
38
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::RadioInput)
39
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::CheckBoxesInput)
40
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::TextInput)
41
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::HiddenInput)
42
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::EmailInput)
43
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::PhoneInput)
44
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::UrlInput)
45
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::SearchInput)
46
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::NumberInput)
47
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::RangeInput)
48
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::FileInput)
49
+ JqueryUiForm::FormBuilder.send(:include, JqueryUiForm::Inputs::DateInput)
50
+
51
+ JqueryUiForm::FormBuilder.use_i18n = false
52
+
53
+ module ActionController
54
+
55
+ module UrlFor
56
+
57
+ def _routes
58
+ ActionDispatch::Routing::RouteSet.new
59
+ end
60
+
61
+ end
62
+
63
+ end
metadata ADDED
@@ -0,0 +1,272 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jquery-ui-form
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Aivars Akots
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-04-19 00:00:00 +03:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ type: :runtime
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ requirement: *id001
33
+ prerelease: false
34
+ name: jquery-ui-form
35
+ - !ruby/object:Gem::Dependency
36
+ type: :development
37
+ version_requirements: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ hash: 9
43
+ segments:
44
+ - 2
45
+ - 5
46
+ version: "2.5"
47
+ requirement: *id002
48
+ prerelease: false
49
+ name: rspec
50
+ - !ruby/object:Gem::Dependency
51
+ type: :development
52
+ version_requirements: &id003 !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ~>
56
+ - !ruby/object:Gem::Version
57
+ hash: 23
58
+ segments:
59
+ - 1
60
+ - 0
61
+ - 0
62
+ version: 1.0.0
63
+ requirement: *id003
64
+ prerelease: false
65
+ name: bundler
66
+ - !ruby/object:Gem::Dependency
67
+ type: :development
68
+ version_requirements: &id004 !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ~>
72
+ - !ruby/object:Gem::Version
73
+ hash: 7
74
+ segments:
75
+ - 1
76
+ - 5
77
+ - 2
78
+ version: 1.5.2
79
+ requirement: *id004
80
+ prerelease: false
81
+ name: jeweler
82
+ - !ruby/object:Gem::Dependency
83
+ type: :development
84
+ version_requirements: &id005 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ hash: 3
90
+ segments:
91
+ - 0
92
+ version: "0"
93
+ requirement: *id005
94
+ prerelease: false
95
+ name: rcov
96
+ - !ruby/object:Gem::Dependency
97
+ type: :development
98
+ version_requirements: &id006 !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ hash: 7
104
+ segments:
105
+ - 3
106
+ - 0
107
+ version: "3.0"
108
+ requirement: *id006
109
+ prerelease: false
110
+ name: rails
111
+ - !ruby/object:Gem::Dependency
112
+ type: :development
113
+ version_requirements: &id007 !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ hash: 9
119
+ segments:
120
+ - 2
121
+ - 5
122
+ version: "2.5"
123
+ requirement: *id007
124
+ prerelease: false
125
+ name: rspec-rails
126
+ - !ruby/object:Gem::Dependency
127
+ type: :development
128
+ version_requirements: &id008 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ hash: 5
134
+ segments:
135
+ - 0
136
+ - 7
137
+ version: "0.7"
138
+ requirement: *id008
139
+ prerelease: false
140
+ name: webrat
141
+ description: longer description of your gem
142
+ email: aivars.akots@gmail.com
143
+ executables: []
144
+
145
+ extensions: []
146
+
147
+ extra_rdoc_files:
148
+ - LICENSE.txt
149
+ - README.rdoc
150
+ files:
151
+ - .document
152
+ - .rvmrc
153
+ - Gemfile
154
+ - Gemfile.lock
155
+ - LICENSE.txt
156
+ - README.rdoc
157
+ - Rakefile
158
+ - VERSION
159
+ - jquery-ui-form.gemspec
160
+ - lib/generators/jquery_ui_form/install/install_generator.rb
161
+ - lib/generators/templates/jquery-ui-form.js
162
+ - lib/generators/templates/jquery-ui-form.rb
163
+ - lib/generators/templates/jquery-ui-form.sass
164
+ - lib/jquery-ui-form.rb
165
+ - lib/jquery_ui_form.rb
166
+ - lib/jquery_ui_form/form_builder.rb
167
+ - lib/jquery_ui_form/helpers.rb
168
+ - lib/jquery_ui_form/helpers/button_helper.rb
169
+ - lib/jquery_ui_form/helpers/error_helper.rb
170
+ - lib/jquery_ui_form/helpers/form_helper.rb
171
+ - lib/jquery_ui_form/helpers/input_helper.rb
172
+ - lib/jquery_ui_form/helpers/label_helper.rb
173
+ - lib/jquery_ui_form/helpers/wrapper_helper.rb
174
+ - lib/jquery_ui_form/inputs.rb
175
+ - lib/jquery_ui_form/inputs/boolean_input.rb
176
+ - lib/jquery_ui_form/inputs/check_boxes_input.rb
177
+ - lib/jquery_ui_form/inputs/date_input.rb
178
+ - lib/jquery_ui_form/inputs/email_input.rb
179
+ - lib/jquery_ui_form/inputs/file_input.rb
180
+ - lib/jquery_ui_form/inputs/hidden_input.rb
181
+ - lib/jquery_ui_form/inputs/number_input.rb
182
+ - lib/jquery_ui_form/inputs/password_input.rb
183
+ - lib/jquery_ui_form/inputs/phone_input.rb
184
+ - lib/jquery_ui_form/inputs/radio_input.rb
185
+ - lib/jquery_ui_form/inputs/range_input.rb
186
+ - lib/jquery_ui_form/inputs/search_input.rb
187
+ - lib/jquery_ui_form/inputs/select_input.rb
188
+ - lib/jquery_ui_form/inputs/string_input.rb
189
+ - lib/jquery_ui_form/inputs/text_input.rb
190
+ - lib/jquery_ui_form/inputs/url_input.rb
191
+ - lib/jquery_ui_form/railtie.rb
192
+ - spec/form_helper_spec.rb
193
+ - spec/helpers/button_helper_spec.rb
194
+ - spec/helpers/error_helper_spec.rb
195
+ - spec/helpers/input_helper_spec.rb
196
+ - spec/helpers/label_helper_spec.rb
197
+ - spec/helpers/wrapper_helper_spec.rb
198
+ - spec/inputs/boolean_input_spec.rb
199
+ - spec/inputs/check_boxes_input_spec.rb
200
+ - spec/inputs/date_input_spec.rb
201
+ - spec/inputs/email_input_spec.rb
202
+ - spec/inputs/file_input_spec.rb
203
+ - spec/inputs/hidden_input_spec.rb
204
+ - spec/inputs/number_input_spec.rb
205
+ - spec/inputs/password_input_spec.rb
206
+ - spec/inputs/phone_input_spec.rb
207
+ - spec/inputs/radio_input_spec.rb
208
+ - spec/inputs/range_input_spec.rb
209
+ - spec/inputs/search_input_spec.rb
210
+ - spec/inputs/select_input_spec.rb
211
+ - spec/inputs/string_input_spec.rb
212
+ - spec/inputs/text_input_spec.rb
213
+ - spec/inputs/url_input_spec.rb
214
+ - spec/spec_helper.rb
215
+ has_rdoc: true
216
+ homepage: http://github.com/aivarsak/jquery-ui-form
217
+ licenses:
218
+ - MIT
219
+ post_install_message:
220
+ rdoc_options: []
221
+
222
+ require_paths:
223
+ - lib
224
+ required_ruby_version: !ruby/object:Gem::Requirement
225
+ none: false
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ hash: 3
230
+ segments:
231
+ - 0
232
+ version: "0"
233
+ required_rubygems_version: !ruby/object:Gem::Requirement
234
+ none: false
235
+ requirements:
236
+ - - ">="
237
+ - !ruby/object:Gem::Version
238
+ hash: 3
239
+ segments:
240
+ - 0
241
+ version: "0"
242
+ requirements: []
243
+
244
+ rubyforge_project:
245
+ rubygems_version: 1.4.1
246
+ signing_key:
247
+ specification_version: 3
248
+ summary: one-line summary of your gem
249
+ test_files:
250
+ - spec/form_helper_spec.rb
251
+ - spec/helpers/button_helper_spec.rb
252
+ - spec/helpers/error_helper_spec.rb
253
+ - spec/helpers/input_helper_spec.rb
254
+ - spec/helpers/label_helper_spec.rb
255
+ - spec/helpers/wrapper_helper_spec.rb
256
+ - spec/inputs/boolean_input_spec.rb
257
+ - spec/inputs/check_boxes_input_spec.rb
258
+ - spec/inputs/date_input_spec.rb
259
+ - spec/inputs/email_input_spec.rb
260
+ - spec/inputs/file_input_spec.rb
261
+ - spec/inputs/hidden_input_spec.rb
262
+ - spec/inputs/number_input_spec.rb
263
+ - spec/inputs/password_input_spec.rb
264
+ - spec/inputs/phone_input_spec.rb
265
+ - spec/inputs/radio_input_spec.rb
266
+ - spec/inputs/range_input_spec.rb
267
+ - spec/inputs/search_input_spec.rb
268
+ - spec/inputs/select_input_spec.rb
269
+ - spec/inputs/string_input_spec.rb
270
+ - spec/inputs/text_input_spec.rb
271
+ - spec/inputs/url_input_spec.rb
272
+ - spec/spec_helper.rb