au_state_select 1.6 → 1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/au_state_select/form_tag_helper.rb +1 -1
- data/lib/au_state_select/instance_tag.rb +1 -1
- data/lib/au_state_select/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 497a572a3ae2c900cee15bd9140ebefbff5755f4
|
4
|
+
data.tar.gz: 956cc65385ac851f4f1fffa636f8c86c1f7a3374
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef5649345f9c83c2df4eb581ae8d0074c1898ec6656e0b92bf477043b798782e5aeb2eac3d360cb5f8caccc81a9ced82a34be64cae22831e4e0c35161ce33847
|
7
|
+
data.tar.gz: 1bf089c8a1ee74f0138b656f41de781688357862f47e46ff7f4b5b54feeb3b6e9c72b1568bb02cb248978dea646f8b807dec1b65cb976cad49d502622a15fd04
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ module AUStateSelect
|
|
10
10
|
elsif options[:prompt].present?
|
11
11
|
option = options[:prompt] == true ? "Please Select" : options[:prompt]
|
12
12
|
end
|
13
|
-
states += "<option>#{option}</option>\n"
|
13
|
+
states += "<option value>#{option}</option>\n"
|
14
14
|
end
|
15
15
|
|
16
16
|
select_options = if options.key?(:short_name) and options[:short_name]
|
@@ -20,7 +20,7 @@ module AUStateSelect
|
|
20
20
|
elsif options[:prompt].present?
|
21
21
|
option = options[:prompt] == true ? "Please Select" : options[:prompt]
|
22
22
|
end
|
23
|
-
states += "<option>#{option}</option>\n"
|
23
|
+
states += "<option value>#{option}</option>\n"
|
24
24
|
end
|
25
25
|
|
26
26
|
if priority_states
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: au_state_select
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.7'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Zhang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
78
|
version: '0'
|
79
79
|
requirements: []
|
80
80
|
rubyforge_project:
|
81
|
-
rubygems_version: 2.4.
|
81
|
+
rubygems_version: 2.4.3
|
82
82
|
signing_key:
|
83
83
|
specification_version: 4
|
84
84
|
summary: Provides a simple helper to get an HTML select list of Australia states.
|