i18n_country_select 1.1.7 → 1.2.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.
- checksums.yaml +4 -4
- data/README.rdoc +0 -44
- data/lib/i18n_country_select/version.rb +1 -1
- metadata +15 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c731e53a281d2725cbc553b84b988c306e3def8
|
|
4
|
+
data.tar.gz: e54a1ed08d7cc145fa5e7b3ef2a22bfc5fcac70e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d83abc30574aad87c57f35ed663c732b95858237a8f664b5527a7ca35e74fce77948f239cd2b952ed5ea3fc15ea9e8bc5f44bf9669911006360603bb6251ffd
|
|
7
|
+
data.tar.gz: f5b001860daa59eb645bcd93e7094c8f7e1466d1717ce9b0fa82a3fac7a4a3cb54597ad48de009cbbbb88793e262c02d07612a4dfd59ed943ae29cd915ef9de1
|
data/README.rdoc
CHANGED
|
@@ -7,11 +7,6 @@ A simple country code select helper with I18n translations for the countries. Wo
|
|
|
7
7
|
|
|
8
8
|
NOTE: The old country_code_select repository that this one was forked from is outdated and no longer maintained. This i18_country_select repository is the most current.
|
|
9
9
|
|
|
10
|
-
== Requirements
|
|
11
|
-
|
|
12
|
-
* Rails 3+
|
|
13
|
-
* Ruby 1.9.2+
|
|
14
|
-
|
|
15
10
|
== Installation
|
|
16
11
|
Put the following in your Gemfile
|
|
17
12
|
|
|
@@ -31,47 +26,8 @@ Specifying different selected value:
|
|
|
31
26
|
country_code_select(:user, :country, [], selected: 'CA')
|
|
32
27
|
|
|
33
28
|
|
|
34
|
-
== Contributors
|
|
35
|
-
|
|
36
|
-
* Brian McQuay (https://github.com/onomojo)
|
|
37
|
-
* Brad Carson from Base 3 Media
|
|
38
|
-
* (https://github.com/dmilisic)
|
|
39
|
-
* Andreas Wolff (https://github.com/rubyphunk)
|
|
40
|
-
* Valentin Rabanelly (https://github.com/vjrabanelly)
|
|
41
|
-
* Karl-Petter Åkesson (https://github.com/karl-petter)
|
|
42
|
-
* Hélder Tavares da Silva (https://github.com/heldersilva)
|
|
43
|
-
* Marten Klitzke (https://github.com/mortik)
|
|
44
|
-
* Victor D. (https://github.com/V1c70r)
|
|
45
|
-
* Alexey Degtyarev (https://github.com/alexhifer)
|
|
46
|
-
* Björn Wilmsmann (https://github.com/BjoernKW)
|
|
47
|
-
* https://github.com/durandom
|
|
48
|
-
* Stefan Slaveykov (https://github.com/wizardone)
|
|
49
|
-
* Leonardo D. Schlossmacher (https://github.com/leods92)
|
|
50
|
-
* https://github.com/mstark
|
|
51
|
-
* Adam St. John (https://github.com/astjohn)
|
|
52
|
-
* Monica Giambitto - https://github.com/nirnaeth
|
|
53
|
-
* Marat Galiev - https://github.com/maratgaliev
|
|
54
|
-
* Rachel Carvalho - https://github.com/rachel-carvalho
|
|
55
|
-
|
|
56
29
|
Based on the deprecated country_code_select by: Russ Smith (russ@bashme.org) and Frank Wambutt (frank@mo-stud.io)
|
|
57
30
|
|
|
58
|
-
== Version History
|
|
59
|
-
* 1.1.7 - Adding support for default selection
|
|
60
|
-
* 1.1.6 - Simplifying country code definition
|
|
61
|
-
* 1.1.5 - Fixing support for Rails 4.2. Adding Kosovo country code
|
|
62
|
-
* 1.1.4 - Fixed options being ignored when running Rails 4
|
|
63
|
-
* 1.1.3 - Removed Netherlands Antilles. Added Bonaire, Curacao, Sint Maarten, and South Sudan
|
|
64
|
-
* 1.1.2 - Adding Thread variable to speed up rendering
|
|
65
|
-
* 1.1.1 - Bumping required version of country translations
|
|
66
|
-
* 1.1.0 - Rails 4 support
|
|
67
|
-
* 1.0.19 - Added Macedonia
|
|
68
|
-
* 1.0.18 - Fixed translated sorting
|
|
69
|
-
* 1.0.17 - Removing duplicate country code IE
|
|
70
|
-
* 1.0.16 - Removing unnecessary value attribute and corrected spelling error on the include_blank option tag
|
|
71
|
-
* 1.0.15 - Removing more duplicate country codes
|
|
72
|
-
* 1.0.14 - Removing duplicate country codes and adding Norway
|
|
73
|
-
* 1.0.13 - Ignore missing translations from i18n-country-translations
|
|
74
|
-
* 1.0.12 - Adds the ability to specify text to use in a blank option
|
|
75
31
|
|
|
76
32
|
== License
|
|
77
33
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i18n_country_select
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian McQuay (brian@onomojo.com)
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: i18n
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 0.9.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 0.9.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: i18n-country-translations
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '1.0'
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 1.0
|
|
36
|
+
version: 1.3.0
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '1.0'
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 1.0
|
|
46
|
+
version: 1.3.0
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: unicode_utils
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -70,56 +70,41 @@ dependencies:
|
|
|
70
70
|
requirements:
|
|
71
71
|
- - "~>"
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: '
|
|
73
|
+
version: '4.0'
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version:
|
|
76
|
+
version: 4.0.0
|
|
77
77
|
type: :development
|
|
78
78
|
prerelease: false
|
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
81
|
- - "~>"
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: '
|
|
83
|
+
version: '4.0'
|
|
84
84
|
- - ">="
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
86
|
+
version: 4.0.0
|
|
87
87
|
- !ruby/object:Gem::Dependency
|
|
88
88
|
name: rspec-rails
|
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
|
90
90
|
requirements:
|
|
91
91
|
- - "~>"
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
|
-
version: '
|
|
93
|
+
version: '3.5'
|
|
94
94
|
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
96
|
+
version: 3.5.2
|
|
97
97
|
type: :development
|
|
98
98
|
prerelease: false
|
|
99
99
|
version_requirements: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '
|
|
103
|
+
version: '3.5'
|
|
104
104
|
- - ">="
|
|
105
105
|
- !ruby/object:Gem::Version
|
|
106
|
-
version:
|
|
107
|
-
- !ruby/object:Gem::Dependency
|
|
108
|
-
name: spork
|
|
109
|
-
requirement: !ruby/object:Gem::Requirement
|
|
110
|
-
requirements:
|
|
111
|
-
- - "~>"
|
|
112
|
-
- !ruby/object:Gem::Version
|
|
113
|
-
version: 1.0rc
|
|
114
|
-
type: :development
|
|
115
|
-
prerelease: false
|
|
116
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
117
|
-
requirements:
|
|
118
|
-
- - "~>"
|
|
119
|
-
- !ruby/object:Gem::Version
|
|
120
|
-
version: 1.0rc
|
|
106
|
+
version: 3.5.2
|
|
121
107
|
description: A simple country code select helper that works with I18n translations.
|
|
122
|
-
Works exactly the same as country_select but uses country codes instead.
|
|
123
108
|
email: brian@onomojo.com
|
|
124
109
|
executables: []
|
|
125
110
|
extensions: []
|
|
@@ -135,7 +120,7 @@ files:
|
|
|
135
120
|
homepage: https://github.com/onomojo/i18n_country_select
|
|
136
121
|
licenses:
|
|
137
122
|
- MIT
|
|
138
|
-
- GPL-
|
|
123
|
+
- GPL-3.0
|
|
139
124
|
metadata: {}
|
|
140
125
|
post_install_message:
|
|
141
126
|
rdoc_options: []
|