i18n_country_select 1.0.11 → 1.0.12
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.
- data/README.rdoc +8 -2
- data/lib/i18n_country_select/instance_tag.rb +9 -6
- data/lib/i18n_country_select/version.rb +1 -1
- metadata +14 -14
data/README.rdoc
CHANGED
@@ -26,12 +26,18 @@ Supplying priority countries to be placed at the top of the list:
|
|
26
26
|
|
27
27
|
== Contributors
|
28
28
|
|
29
|
-
* Brian McQuay
|
29
|
+
* Brian McQuay (https://github.com/onomojo)
|
30
30
|
* Brad Carson from Base 3 Media
|
31
31
|
* Russ Smith
|
32
32
|
* Frank Wambutt
|
33
|
-
* https://github.com/dmilisic
|
33
|
+
* (https://github.com/dmilisic)
|
34
|
+
* Andreas Wolff (https://github.com/rubyphunk)
|
35
|
+
|
36
|
+
== Version History
|
37
|
+
|
38
|
+
1.0.12 - Adds the ability to specify text to use in a blank option
|
34
39
|
|
35
40
|
== License
|
36
41
|
|
37
42
|
MIT license
|
43
|
+
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module I18nCountrySelect
|
2
2
|
module InstanceTag
|
3
3
|
include Countries
|
4
|
-
|
4
|
+
|
5
5
|
def to_country_code_select_tag(priority_countries, options = {}, html_options = {})
|
6
6
|
country_code_select(priority_countries, options, html_options)
|
7
7
|
end
|
@@ -9,20 +9,23 @@ module I18nCountrySelect
|
|
9
9
|
# Adapted from Rails country_select. Just uses country codes instead of full names.
|
10
10
|
def country_code_select(priority_countries, options, html_options)
|
11
11
|
selected = object.send(@method_name) if object.respond_to?(@method_name)
|
12
|
-
|
12
|
+
|
13
13
|
country_translations = COUNTRY_CODES.map{|code| [I18n.t(code, :scope => :countries), code]}.sort_alphabetical_by(&:first)
|
14
14
|
|
15
15
|
countries = ""
|
16
|
+
|
17
|
+
if options[:include_blank]
|
18
|
+
option = options[:include_blank] == true ? "" : options[:include_blank]
|
19
|
+
countries += "<option value=\"\">#{option}</options>\n"
|
20
|
+
end
|
21
|
+
|
16
22
|
if priority_countries
|
17
23
|
countries += options_for_select(priority_countries, selected)
|
18
24
|
countries += "<option value=\"\" disabled=\"disabled\">-------------</option>\n"
|
19
|
-
elsif options[:include_blank]
|
20
|
-
countries += "<option value=\"\">" + options[:include_blank] + "</options>\n"
|
21
|
-
countries += "<option value=\"\" disabled=\"disabled\">-------------</option>\n"
|
22
25
|
end
|
23
26
|
|
24
27
|
countries = countries + options_for_select(country_translations, selected)
|
25
|
-
|
28
|
+
|
26
29
|
html_options = html_options.stringify_keys
|
27
30
|
add_default_name_and_id(html_options)
|
28
31
|
|
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.12
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-03 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: i18n
|
16
|
-
requirement: &
|
16
|
+
requirement: &70200280014920 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0.5'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70200280014920
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: i18n-country-translations
|
27
|
-
requirement: &
|
27
|
+
requirement: &70200280014460 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 0.0.6
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70200280014460
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: sort_alphabetical
|
38
|
-
requirement: &
|
38
|
+
requirement: &70200280014000 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 0.1.3
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70200280014000
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rails
|
49
|
-
requirement: &
|
49
|
+
requirement: &70200280013540 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 3.0.0
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70200280013540
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: rspec-rails
|
60
|
-
requirement: &
|
60
|
+
requirement: &70200280013080 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 2.7.0
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70200280013080
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: spork
|
71
|
-
requirement: &
|
71
|
+
requirement: &70200280044360 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,7 +76,7 @@ dependencies:
|
|
76
76
|
version: 1.0rc
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70200280044360
|
80
80
|
description: A simple country code select helper that works with I18n translations.
|
81
81
|
Works exactly the same as country_select but uses country codes instead.
|
82
82
|
email: brian@onomojo.com
|