i18n_country_select 1.0.15 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -0
- data/lib/i18n_country_select/instance_tag.rb +1 -1
- data/lib/i18n_country_select/version.rb +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -36,6 +36,7 @@ Supplying priority countries to be placed at the top of the list:
|
|
36
36
|
Based on the old country_code_select by: Russ Smith (russ@bashme.org) and Frank Wambutt (frank@mo-stud.io)
|
37
37
|
|
38
38
|
== Version History
|
39
|
+
1.0.16 - Removing unnecessary value attribute and corrected spelling error on the include_blank option tag
|
39
40
|
1.0.15 - Removing more duplicate country codes
|
40
41
|
1.0.14 - Removing duplicate country codes and adding Norway
|
41
42
|
1.0.13 - Ignore missing translations from i18n-country-translations
|
@@ -19,7 +19,7 @@ module I18nCountrySelect
|
|
19
19
|
|
20
20
|
if options[:include_blank]
|
21
21
|
option = options[:include_blank] == true ? "" : options[:include_blank]
|
22
|
-
countries += "<option
|
22
|
+
countries += "<option>#{option}</option>\n"
|
23
23
|
end
|
24
24
|
|
25
25
|
if priority_countries
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: i18n_country_select
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.16
|
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: 2013-
|
12
|
+
date: 2013-02-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: i18n
|
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
version: 1.3.5
|
143
143
|
requirements: []
|
144
144
|
rubyforge_project: ! '[none]'
|
145
|
-
rubygems_version: 1.8.
|
145
|
+
rubygems_version: 1.8.25
|
146
146
|
signing_key:
|
147
147
|
specification_version: 3
|
148
148
|
summary: I18n country select helper
|