country_select 6.0.0 → 7.0.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/.github/workflows/build.yml +25 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +38 -42
- data/README.md +11 -8
- data/Rakefile +0 -2
- data/country_select.gemspec +8 -5
- data/gemfiles/actionpack-5.2.gemfile +6 -0
- data/gemfiles/{actionpack5.2.gemfile.lock → actionpack-5.2.gemfile.lock} +45 -44
- data/gemfiles/actionpack-6.0.gemfile +6 -0
- data/gemfiles/{actionpack6.1.gemfile.lock → actionpack-6.0.gemfile.lock} +47 -46
- data/gemfiles/actionpack-6.1.gemfile +6 -0
- data/gemfiles/actionpack-6.1.gemfile.lock +107 -0
- data/gemfiles/actionpack-7.0.gemfile +6 -0
- data/gemfiles/actionpack-7.0.gemfile.lock +107 -0
- data/gemfiles/{actionpack.edge.gemfile → actionpack-head.gemfile} +0 -0
- data/gemfiles/{actionpack.edge.gemfile.lock → actionpack-head.gemfile.lock} +41 -42
- data/lib/country_select/formats.rb +1 -1
- data/lib/country_select/tag_helper.rb +2 -3
- data/lib/country_select/version.rb +1 -1
- data/spec/country_select_spec.rb +4 -4
- metadata +28 -36
- data/.travis.yml +0 -23
- data/gemfiles/actionpack5.2.gemfile +0 -6
- data/gemfiles/actionpack6.0.gemfile +0 -6
- data/gemfiles/actionpack6.0.gemfile.lock +0 -107
- data/gemfiles/actionpack6.1.gemfile +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c90fbc7dfe822e709d24caaa9f6ea4aadbc565d056acd04a83881fd456d77d04
|
|
4
|
+
data.tar.gz: b8b38e3f7c4b907df636ecb611db60c26aa95c7e355a102ce9b4b5b0395fc77a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c467912e59762ce36aecdff5b9ff177b10745a5462437be8d4b3eb283d6e92d1629b3eaa08f1ac2581bb28b212e2b43114bfbcc88ee5118fd0290b596817dd8
|
|
7
|
+
data.tar.gz: c29e2c423c6cbf990ff80de5b1415945e90f1425ca5bc82a8cb819edca7438c22d4bba374fc52a6d467c29bab8b823d53b50ad8e70fe5d28afa8a8069ffff083
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: build
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
branches:
|
|
5
|
+
- '*'
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
matrix:
|
|
15
|
+
ruby: [2.7, '3.0', 3.1]
|
|
16
|
+
gemfile: [5.2, '6.0', 6.1, '7.0']
|
|
17
|
+
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
|
18
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/actionpack-${{ matrix.gemfile }}.gemfile
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v2
|
|
21
|
+
- uses: ruby/setup-ruby@v1
|
|
22
|
+
with:
|
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
|
24
|
+
bundler-cache: true
|
|
25
|
+
- run: bundle exec rake
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
|
2
|
+
# to commit it to your repository.
|
|
3
|
+
#
|
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
|
5
|
+
# or to provide custom queries or build logic.
|
|
6
|
+
#
|
|
7
|
+
# ******** NOTE ********
|
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
|
10
|
+
# supported CodeQL languages.
|
|
11
|
+
#
|
|
12
|
+
name: "CodeQL"
|
|
13
|
+
|
|
14
|
+
on:
|
|
15
|
+
push:
|
|
16
|
+
branches: [ master ]
|
|
17
|
+
pull_request:
|
|
18
|
+
# The branches below must be a subset of the branches above
|
|
19
|
+
branches: [ master ]
|
|
20
|
+
schedule:
|
|
21
|
+
- cron: '21 7 * * 5'
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
analyze:
|
|
25
|
+
name: Analyze
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
permissions:
|
|
28
|
+
actions: read
|
|
29
|
+
contents: read
|
|
30
|
+
security-events: write
|
|
31
|
+
|
|
32
|
+
strategy:
|
|
33
|
+
fail-fast: false
|
|
34
|
+
matrix:
|
|
35
|
+
language: [ 'ruby' ]
|
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
|
37
|
+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
|
38
|
+
|
|
39
|
+
steps:
|
|
40
|
+
- name: Checkout repository
|
|
41
|
+
uses: actions/checkout@v3
|
|
42
|
+
|
|
43
|
+
# Initializes the CodeQL tools for scanning.
|
|
44
|
+
- name: Initialize CodeQL
|
|
45
|
+
uses: github/codeql-action/init@v1
|
|
46
|
+
with:
|
|
47
|
+
languages: ${{ matrix.language }}
|
|
48
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
49
|
+
# By default, queries listed here will override any specified in a config file.
|
|
50
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
51
|
+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
52
|
+
|
|
53
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
54
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
|
55
|
+
- name: Autobuild
|
|
56
|
+
uses: github/codeql-action/autobuild@v1
|
|
57
|
+
|
|
58
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
|
59
|
+
# 📚 https://git.io/JvXDl
|
|
60
|
+
|
|
61
|
+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
62
|
+
# and modify them (or add more) to build your code if your project
|
|
63
|
+
# uses a compiled language
|
|
64
|
+
|
|
65
|
+
#- run: |
|
|
66
|
+
# make bootstrap
|
|
67
|
+
# make release
|
|
68
|
+
|
|
69
|
+
- name: Perform CodeQL Analysis
|
|
70
|
+
uses: github/codeql-action/analyze@v1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 7.0.0 2022-04-03
|
|
2
|
+
|
|
3
|
+
* #200 - Drop support for Ruby 2.5 and 2.6 (@pmor)
|
|
4
|
+
* #201 - Upgrade countries gem to 5.0.0 (@pmor)
|
|
5
|
+
|
|
6
|
+
## 6.1.1 2022-01-20
|
|
7
|
+
|
|
8
|
+
* #195 - Fix deprecation warning on find_by_name (@filipemendespi)
|
|
9
|
+
|
|
10
|
+
## 6.1.0 2022-01-16
|
|
11
|
+
|
|
12
|
+
* #190 - Upgrade to countries 4.2 (@pmor)
|
|
13
|
+
* #191 - Add Rails 7 + Ruby 3.1 to build (@scudco)
|
|
14
|
+
|
|
1
15
|
## 6.0.0 2021-06-28
|
|
2
16
|
|
|
3
17
|
* #186 - Upgrade to countries 4.0.0 (@pmor)
|
data/Gemfile.lock
CHANGED
|
@@ -1,98 +1,94 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
country_select (6.
|
|
5
|
-
countries (~>
|
|
4
|
+
country_select (6.1.1)
|
|
5
|
+
countries (~> 5.0)
|
|
6
6
|
sort_alphabetical (~> 1.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
actionpack (
|
|
12
|
-
actionview (=
|
|
13
|
-
activesupport (=
|
|
14
|
-
rack (~> 2.0, >= 2.0
|
|
11
|
+
actionpack (7.0.2.3)
|
|
12
|
+
actionview (= 7.0.2.3)
|
|
13
|
+
activesupport (= 7.0.2.3)
|
|
14
|
+
rack (~> 2.0, >= 2.2.0)
|
|
15
15
|
rack-test (>= 0.6.3)
|
|
16
16
|
rails-dom-testing (~> 2.0)
|
|
17
17
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
18
|
-
actionview (
|
|
19
|
-
activesupport (=
|
|
18
|
+
actionview (7.0.2.3)
|
|
19
|
+
activesupport (= 7.0.2.3)
|
|
20
20
|
builder (~> 3.1)
|
|
21
21
|
erubi (~> 1.4)
|
|
22
22
|
rails-dom-testing (~> 2.0)
|
|
23
23
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
24
|
-
activesupport (
|
|
24
|
+
activesupport (7.0.2.3)
|
|
25
25
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
26
26
|
i18n (>= 1.6, < 2)
|
|
27
27
|
minitest (>= 5.1)
|
|
28
28
|
tzinfo (~> 2.0)
|
|
29
|
-
zeitwerk (~> 2.3)
|
|
30
29
|
builder (3.2.4)
|
|
31
30
|
coderay (1.1.3)
|
|
32
|
-
concurrent-ruby (1.1.
|
|
33
|
-
countries (
|
|
34
|
-
i18n_data (~> 0.
|
|
31
|
+
concurrent-ruby (1.1.10)
|
|
32
|
+
countries (5.0.0)
|
|
33
|
+
i18n_data (~> 0.16.0)
|
|
35
34
|
sixarm_ruby_unaccent (~> 1.1)
|
|
36
35
|
crass (1.0.6)
|
|
37
|
-
diff-lcs (1.
|
|
36
|
+
diff-lcs (1.5.0)
|
|
38
37
|
erubi (1.10.0)
|
|
39
|
-
i18n (1.
|
|
38
|
+
i18n (1.10.0)
|
|
40
39
|
concurrent-ruby (~> 1.0)
|
|
41
|
-
i18n_data (0.
|
|
42
|
-
|
|
40
|
+
i18n_data (0.16.0)
|
|
41
|
+
simple_po_parser (~> 1.1)
|
|
42
|
+
loofah (2.16.0)
|
|
43
43
|
crass (~> 1.0.2)
|
|
44
44
|
nokogiri (>= 1.5.9)
|
|
45
45
|
method_source (1.0.0)
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
nokogiri (1.11.1)
|
|
49
|
-
mini_portile2 (~> 2.5.0)
|
|
46
|
+
minitest (5.15.0)
|
|
47
|
+
nokogiri (1.13.3-x86_64-darwin)
|
|
50
48
|
racc (~> 1.4)
|
|
51
|
-
pry (0.14.
|
|
49
|
+
pry (0.14.1)
|
|
52
50
|
coderay (~> 1.1)
|
|
53
51
|
method_source (~> 1.0)
|
|
54
|
-
racc (1.
|
|
52
|
+
racc (1.6.0)
|
|
55
53
|
rack (2.2.3)
|
|
56
54
|
rack-test (1.1.0)
|
|
57
55
|
rack (>= 1.0, < 3)
|
|
58
56
|
rails-dom-testing (2.0.3)
|
|
59
57
|
activesupport (>= 4.2.0)
|
|
60
58
|
nokogiri (>= 1.6)
|
|
61
|
-
rails-html-sanitizer (1.
|
|
59
|
+
rails-html-sanitizer (1.4.2)
|
|
62
60
|
loofah (~> 2.3)
|
|
63
|
-
rake (13.0.
|
|
64
|
-
rspec (3.
|
|
65
|
-
rspec-core (~> 3.
|
|
66
|
-
rspec-expectations (~> 3.
|
|
67
|
-
rspec-mocks (~> 3.
|
|
68
|
-
rspec-core (3.
|
|
69
|
-
rspec-support (~> 3.
|
|
70
|
-
rspec-expectations (3.
|
|
61
|
+
rake (13.0.6)
|
|
62
|
+
rspec (3.11.0)
|
|
63
|
+
rspec-core (~> 3.11.0)
|
|
64
|
+
rspec-expectations (~> 3.11.0)
|
|
65
|
+
rspec-mocks (~> 3.11.0)
|
|
66
|
+
rspec-core (3.11.0)
|
|
67
|
+
rspec-support (~> 3.11.0)
|
|
68
|
+
rspec-expectations (3.11.0)
|
|
71
69
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
72
|
-
rspec-support (~> 3.
|
|
73
|
-
rspec-mocks (3.
|
|
70
|
+
rspec-support (~> 3.11.0)
|
|
71
|
+
rspec-mocks (3.11.1)
|
|
74
72
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
75
|
-
rspec-support (~> 3.
|
|
76
|
-
rspec-support (3.
|
|
73
|
+
rspec-support (~> 3.11.0)
|
|
74
|
+
rspec-support (3.11.0)
|
|
75
|
+
simple_po_parser (1.1.6)
|
|
77
76
|
sixarm_ruby_unaccent (1.2.0)
|
|
78
77
|
sort_alphabetical (1.1.0)
|
|
79
78
|
unicode_utils (>= 1.2.2)
|
|
80
79
|
tzinfo (2.0.4)
|
|
81
80
|
concurrent-ruby (~> 1.0)
|
|
82
81
|
unicode_utils (1.4.0)
|
|
83
|
-
wwtd (1.4.1)
|
|
84
|
-
zeitwerk (2.4.2)
|
|
85
82
|
|
|
86
83
|
PLATFORMS
|
|
87
|
-
|
|
84
|
+
x86_64-darwin-21
|
|
88
85
|
|
|
89
86
|
DEPENDENCIES
|
|
90
|
-
actionpack (~>
|
|
87
|
+
actionpack (~> 7.0)
|
|
91
88
|
country_select!
|
|
92
89
|
pry (~> 0)
|
|
93
90
|
rake (~> 13)
|
|
94
91
|
rspec (~> 3)
|
|
95
|
-
wwtd (~> 1)
|
|
96
92
|
|
|
97
93
|
BUNDLED WITH
|
|
98
|
-
2.
|
|
94
|
+
2.3.10
|
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Rails – Country Select
|
|
2
|
-
[](https://github.com/countries/country_select/actions/workflows/build.yml)
|
|
3
|
+
[](https://codeclimate.com/github/countries/country_select)
|
|
4
|
+
[](https://github.com/countries/country_select/actions/workflows/codeql-analysis.yml)
|
|
5
|
+
|
|
3
6
|
|
|
4
7
|
Provides a simple helper to get an HTML select list of countries using the
|
|
5
8
|
[ISO 3166-1 standard](https://en.wikipedia.org/wiki/ISO_3166-1).
|
|
@@ -14,7 +17,7 @@ to evaluate the suitability of this list given their user base.
|
|
|
14
17
|
|
|
15
18
|
## Reporting issues
|
|
16
19
|
|
|
17
|
-
Open an issue on the [issue tracker](https://github.com/
|
|
20
|
+
Open an issue on the [issue tracker](https://github.com/countries/country_select/issues/new). Ideally provide versions used, and code example that demonstrates the issue.
|
|
18
21
|
|
|
19
22
|
## Installation
|
|
20
23
|
|
|
@@ -26,7 +29,7 @@ gem install country_select
|
|
|
26
29
|
Or put the following in your Gemfile
|
|
27
30
|
|
|
28
31
|
```ruby
|
|
29
|
-
gem 'country_select', '~>
|
|
32
|
+
gem 'country_select', '~> 6.0'
|
|
30
33
|
```
|
|
31
34
|
|
|
32
35
|
If you don't want to require `sort_alphabetical` (it depends on `unicode_utils` which is known to use lots of memory) you can opt out of using it as follows:
|
|
@@ -95,19 +98,19 @@ country_select("user", "country", { priority_countries: ["GB", "FR"], selected:
|
|
|
95
98
|
### Using a custom formatter
|
|
96
99
|
|
|
97
100
|
You can define a custom formatter which will receive an
|
|
98
|
-
[`ISO3166::Country`](https://github.com/
|
|
101
|
+
[`ISO3166::Country`](https://github.com/countries/countries/blob/master/lib/countries/country.rb)
|
|
99
102
|
```ruby
|
|
100
103
|
# config/initializers/country_select.rb
|
|
101
104
|
|
|
102
105
|
# Return a string to customize the text in the <option> tag, `value` attribute will remain unchanged
|
|
103
106
|
CountrySelect::FORMATS[:with_alpha2] = lambda do |country|
|
|
104
|
-
"#{country.
|
|
107
|
+
"#{country.iso_short_name} (#{country.alpha2})"
|
|
105
108
|
end
|
|
106
109
|
|
|
107
110
|
# Return an array to customize <option> text, `value` and other HTML attributes
|
|
108
111
|
CountrySelect::FORMATS[:with_data_attrs] = lambda do |country|
|
|
109
112
|
[
|
|
110
|
-
country.
|
|
113
|
+
country.iso_short_name,
|
|
111
114
|
country.alpha2,
|
|
112
115
|
{
|
|
113
116
|
'data-country-code' => country.country_code,
|
|
@@ -142,7 +145,7 @@ names as display strings. For example, the United States would appear as
|
|
|
142
145
|
|
|
143
146
|
Country names are automatically localized based on the value of
|
|
144
147
|
`I18n.locale` thanks to the wonderful
|
|
145
|
-
[countries gem](https://github.com/
|
|
148
|
+
[countries gem](https://github.com/countries/countries/).
|
|
146
149
|
|
|
147
150
|
Current translations include:
|
|
148
151
|
|
|
@@ -177,7 +180,7 @@ class User < ActiveRecord::Base
|
|
|
177
180
|
# (usually English) name if no translation is available
|
|
178
181
|
def country_name
|
|
179
182
|
country = ISO3166::Country[country_code]
|
|
180
|
-
country.translations[I18n.locale.to_s] || country.
|
|
183
|
+
country.translations[I18n.locale.to_s] || country.common_name || country.iso_short_name
|
|
181
184
|
end
|
|
182
185
|
|
|
183
186
|
end
|
data/Rakefile
CHANGED
data/country_select.gemspec
CHANGED
|
@@ -8,23 +8,26 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.licenses = ['MIT']
|
|
9
9
|
s.authors = ['Stefan Penner']
|
|
10
10
|
s.email = ['stefan.penner@gmail.com']
|
|
11
|
-
s.homepage = 'https://github.com/
|
|
11
|
+
s.homepage = 'https://github.com/countries/country_select'
|
|
12
12
|
s.summary = %q{Country Select Plugin}
|
|
13
13
|
s.description = %q{Provides a simple helper to get an HTML select list of countries. The list of countries comes from the ISO 3166 standard. While it is a relatively neutral source of country names, it will still offend some users.}
|
|
14
14
|
|
|
15
|
+
s.metadata = { 'bug_tracker_uri' => 'http://github.com/countries/country_select/issues',
|
|
16
|
+
'changelog_uri' => 'https://github.com/countries/country_select/blob/master/CHANGELOG.md',
|
|
17
|
+
'source_code_uri' => 'https://github.com/countries/country_select' }
|
|
18
|
+
|
|
15
19
|
s.files = `git ls-files`.split("\n")
|
|
16
20
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
21
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
18
22
|
s.require_paths = ['lib']
|
|
19
23
|
|
|
20
|
-
s.required_ruby_version = '>= 2.
|
|
24
|
+
s.required_ruby_version = '>= 2.7'
|
|
21
25
|
|
|
22
|
-
s.add_development_dependency 'actionpack', '~>
|
|
26
|
+
s.add_development_dependency 'actionpack', '~> 7.0'
|
|
23
27
|
s.add_development_dependency 'pry', '~> 0'
|
|
24
28
|
s.add_development_dependency 'rake', '~> 13'
|
|
25
29
|
s.add_development_dependency 'rspec', '~> 3'
|
|
26
|
-
s.add_development_dependency 'wwtd', '~> 1'
|
|
27
30
|
|
|
28
|
-
s.add_dependency 'countries', '~>
|
|
31
|
+
s.add_dependency 'countries', '~> 5.0'
|
|
29
32
|
s.add_dependency 'sort_alphabetical', '~> 1.1'
|
|
30
33
|
end
|
|
@@ -1,105 +1,106 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
country_select (
|
|
5
|
-
countries (~>
|
|
4
|
+
country_select (7.0.0)
|
|
5
|
+
countries (~> 5.0)
|
|
6
6
|
sort_alphabetical (~> 1.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
actionpack (5.2.
|
|
12
|
-
actionview (= 5.2.
|
|
13
|
-
activesupport (= 5.2.
|
|
11
|
+
actionpack (5.2.7)
|
|
12
|
+
actionview (= 5.2.7)
|
|
13
|
+
activesupport (= 5.2.7)
|
|
14
14
|
rack (~> 2.0, >= 2.0.8)
|
|
15
15
|
rack-test (>= 0.6.3)
|
|
16
16
|
rails-dom-testing (~> 2.0)
|
|
17
17
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
18
|
-
actionview (5.2.
|
|
19
|
-
activesupport (= 5.2.
|
|
18
|
+
actionview (5.2.7)
|
|
19
|
+
activesupport (= 5.2.7)
|
|
20
20
|
builder (~> 3.1)
|
|
21
21
|
erubi (~> 1.4)
|
|
22
22
|
rails-dom-testing (~> 2.0)
|
|
23
23
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
24
|
-
activesupport (5.2.
|
|
24
|
+
activesupport (5.2.7)
|
|
25
25
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
26
26
|
i18n (>= 0.7, < 2)
|
|
27
27
|
minitest (~> 5.1)
|
|
28
28
|
tzinfo (~> 1.1)
|
|
29
29
|
builder (3.2.4)
|
|
30
30
|
coderay (1.1.3)
|
|
31
|
-
concurrent-ruby (1.1.
|
|
32
|
-
countries (
|
|
33
|
-
i18n_data (~> 0.
|
|
31
|
+
concurrent-ruby (1.1.10)
|
|
32
|
+
countries (5.0.0)
|
|
33
|
+
i18n_data (~> 0.16.0)
|
|
34
34
|
sixarm_ruby_unaccent (~> 1.1)
|
|
35
35
|
crass (1.0.6)
|
|
36
|
-
diff-lcs (1.
|
|
36
|
+
diff-lcs (1.5.0)
|
|
37
37
|
erubi (1.10.0)
|
|
38
|
-
i18n (1.
|
|
38
|
+
i18n (1.10.0)
|
|
39
39
|
concurrent-ruby (~> 1.0)
|
|
40
|
-
i18n_data (0.
|
|
41
|
-
|
|
40
|
+
i18n_data (0.16.0)
|
|
41
|
+
simple_po_parser (~> 1.1)
|
|
42
|
+
loofah (2.16.0)
|
|
42
43
|
crass (~> 1.0.2)
|
|
43
44
|
nokogiri (>= 1.5.9)
|
|
44
45
|
method_source (1.0.0)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
nokogiri (1.11.1)
|
|
48
|
-
mini_portile2 (~> 2.5.0)
|
|
46
|
+
minitest (5.15.0)
|
|
47
|
+
nokogiri (1.13.3-x86_64-darwin)
|
|
49
48
|
racc (~> 1.4)
|
|
50
|
-
|
|
49
|
+
nokogiri (1.13.3-x86_64-linux)
|
|
50
|
+
racc (~> 1.4)
|
|
51
|
+
pry (0.14.1)
|
|
51
52
|
coderay (~> 1.1)
|
|
52
53
|
method_source (~> 1.0)
|
|
53
|
-
racc (1.
|
|
54
|
+
racc (1.6.0)
|
|
54
55
|
rack (2.2.3)
|
|
55
56
|
rack-test (1.1.0)
|
|
56
57
|
rack (>= 1.0, < 3)
|
|
57
58
|
rails-dom-testing (2.0.3)
|
|
58
59
|
activesupport (>= 4.2.0)
|
|
59
60
|
nokogiri (>= 1.6)
|
|
60
|
-
rails-html-sanitizer (1.
|
|
61
|
+
rails-html-sanitizer (1.4.2)
|
|
61
62
|
loofah (~> 2.3)
|
|
62
|
-
railties (5.2.
|
|
63
|
-
actionpack (= 5.2.
|
|
64
|
-
activesupport (= 5.2.
|
|
63
|
+
railties (5.2.7)
|
|
64
|
+
actionpack (= 5.2.7)
|
|
65
|
+
activesupport (= 5.2.7)
|
|
65
66
|
method_source
|
|
66
67
|
rake (>= 0.8.7)
|
|
67
68
|
thor (>= 0.19.0, < 2.0)
|
|
68
|
-
rake (13.0.
|
|
69
|
-
rspec (3.
|
|
70
|
-
rspec-core (~> 3.
|
|
71
|
-
rspec-expectations (~> 3.
|
|
72
|
-
rspec-mocks (~> 3.
|
|
73
|
-
rspec-core (3.
|
|
74
|
-
rspec-support (~> 3.
|
|
75
|
-
rspec-expectations (3.
|
|
69
|
+
rake (13.0.6)
|
|
70
|
+
rspec (3.11.0)
|
|
71
|
+
rspec-core (~> 3.11.0)
|
|
72
|
+
rspec-expectations (~> 3.11.0)
|
|
73
|
+
rspec-mocks (~> 3.11.0)
|
|
74
|
+
rspec-core (3.11.0)
|
|
75
|
+
rspec-support (~> 3.11.0)
|
|
76
|
+
rspec-expectations (3.11.0)
|
|
76
77
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
77
|
-
rspec-support (~> 3.
|
|
78
|
-
rspec-mocks (3.
|
|
78
|
+
rspec-support (~> 3.11.0)
|
|
79
|
+
rspec-mocks (3.11.1)
|
|
79
80
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
|
-
rspec-support (~> 3.
|
|
81
|
-
rspec-support (3.
|
|
81
|
+
rspec-support (~> 3.11.0)
|
|
82
|
+
rspec-support (3.11.0)
|
|
83
|
+
simple_po_parser (1.1.6)
|
|
82
84
|
sixarm_ruby_unaccent (1.2.0)
|
|
83
85
|
sort_alphabetical (1.1.0)
|
|
84
86
|
unicode_utils (>= 1.2.2)
|
|
85
|
-
thor (1.1
|
|
87
|
+
thor (1.2.1)
|
|
86
88
|
thread_safe (0.3.6)
|
|
87
89
|
tzinfo (1.2.9)
|
|
88
90
|
thread_safe (~> 0.1)
|
|
89
91
|
unicode_utils (1.4.0)
|
|
90
|
-
wwtd (1.4.1)
|
|
91
92
|
|
|
92
93
|
PLATFORMS
|
|
93
|
-
|
|
94
|
+
x86_64-darwin-21
|
|
95
|
+
x86_64-linux
|
|
94
96
|
|
|
95
97
|
DEPENDENCIES
|
|
96
|
-
actionpack (~> 5.2
|
|
98
|
+
actionpack (~> 5.2)
|
|
97
99
|
country_select!
|
|
98
100
|
pry (~> 0)
|
|
99
|
-
railties (~> 5.2
|
|
101
|
+
railties (~> 5.2)
|
|
100
102
|
rake (~> 13)
|
|
101
103
|
rspec (~> 3)
|
|
102
|
-
wwtd (~> 1)
|
|
103
104
|
|
|
104
105
|
BUNDLED WITH
|
|
105
|
-
2.
|
|
106
|
+
2.3.10
|