country_select 9.0.0 → 10.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +6 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +70 -48
- data/README.md +1 -1
- data/country_select.gemspec +3 -3
- data/gemfiles/actionpack-7.0.gemfile +2 -1
- data/gemfiles/actionpack-7.0.gemfile.lock +59 -42
- data/gemfiles/actionpack-7.1.gemfile +1 -1
- data/gemfiles/actionpack-7.1.gemfile.lock +78 -58
- data/gemfiles/actionpack-7.2.gemfile +9 -0
- data/gemfiles/actionpack-7.2.gemfile.lock +175 -0
- data/gemfiles/actionpack-8.0.gemfile +9 -0
- data/gemfiles/actionpack-8.0.gemfile.lock +168 -0
- data/lib/country_select/tag_helper.rb +1 -1
- data/lib/country_select/version.rb +1 -1
- data/spec/country_select_spec.rb +1 -0
- metadata +12 -13
- data/gemfiles/actionpack-6.1.gemfile +0 -9
- data/gemfiles/actionpack-6.1.gemfile.lock +0 -111
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92a0226c36caabca861d829d8963d164ad480a27b80c58d36a4605739d7439a5
|
4
|
+
data.tar.gz: e7f8b5698150f44c52a0442b2f32954477842bf10312ac547b70ff72ad01b634
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6510b6f1e6a7201e9d436440d0be0b69d769a739a0141d8966c3a6dc286973c9d03bcc1bf3bc4e395dfeede6a65f9d31300792e35c6e31f9cc2fd98658969204
|
7
|
+
data.tar.gz: 9deebc2b901857e5d7fa46f04dc7016794e4dc44fc67d344d87f90b263f32c7f0374fcf0a4453279c7dfb2ad89929427709771f04b4c274455cc5dbd01eca57c
|
data/.github/workflows/test.yml
CHANGED
@@ -16,8 +16,11 @@ jobs:
|
|
16
16
|
strategy:
|
17
17
|
fail-fast: false
|
18
18
|
matrix:
|
19
|
-
ruby: [
|
20
|
-
gemfile: [
|
19
|
+
ruby: [3.1, 3.2, 3.3, 3.4]
|
20
|
+
gemfile: ['7.0', 7.1, 7.2, '8.0']
|
21
|
+
exclude:
|
22
|
+
- ruby: 3.1
|
23
|
+
gemfile: '8.0'
|
21
24
|
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
|
22
25
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/actionpack-${{ matrix.gemfile }}.gemfile
|
23
26
|
CC_TEST_REPORTER_ID: 0d09e6611c01dedd75511b1c60f62329d01729289e06375cfe67cefe67013d9f
|
@@ -28,6 +31,7 @@ jobs:
|
|
28
31
|
with:
|
29
32
|
ruby-version: ${{ matrix.ruby }}
|
30
33
|
bundler-cache: true
|
34
|
+
cache-version: 9
|
31
35
|
- name: Run tests
|
32
36
|
|
33
37
|
run: bundle exec rake
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 10.0.1 2025-01-04
|
2
|
+
|
3
|
+
* Add Ruby 3.4 and Rails 8.0 to the test matrix and drop Rails 6.1 tests. by @pmor in https://github.com/countries/country_select/pull/228
|
4
|
+
|
5
|
+
## 10.0.0 2024-09-29
|
6
|
+
|
7
|
+
* Drop support for Ruby 3.0 (EOL 2024-04-23) (@pmor)
|
8
|
+
* Add Rails 7.2 to the test matrix (@pmor)
|
9
|
+
* Update countries gem to 7.0.0 (@pmor)
|
10
|
+
|
1
11
|
## 9.0.0 2024-02-17
|
2
12
|
|
3
13
|
* Drop support for Ruby 2.7, Rails 5.2 and 6.0 (@pmor)
|
data/Gemfile.lock
CHANGED
@@ -1,119 +1,141 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
country_select (
|
5
|
-
countries (> 5.0, <
|
4
|
+
country_select (10.0.0)
|
5
|
+
countries (> 5.0, < 8.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (
|
11
|
-
actionview (=
|
12
|
-
activesupport (=
|
10
|
+
actionpack (8.0.1)
|
11
|
+
actionview (= 8.0.1)
|
12
|
+
activesupport (= 8.0.1)
|
13
13
|
nokogiri (>= 1.8.5)
|
14
|
-
racc
|
15
14
|
rack (>= 2.2.4)
|
16
15
|
rack-session (>= 1.0.1)
|
17
16
|
rack-test (>= 0.6.3)
|
18
17
|
rails-dom-testing (~> 2.2)
|
19
18
|
rails-html-sanitizer (~> 1.6)
|
20
|
-
|
21
|
-
|
19
|
+
useragent (~> 0.16)
|
20
|
+
actionview (8.0.1)
|
21
|
+
activesupport (= 8.0.1)
|
22
22
|
builder (~> 3.1)
|
23
23
|
erubi (~> 1.11)
|
24
24
|
rails-dom-testing (~> 2.2)
|
25
25
|
rails-html-sanitizer (~> 1.6)
|
26
|
-
activesupport (
|
26
|
+
activesupport (8.0.1)
|
27
27
|
base64
|
28
|
+
benchmark (>= 0.3)
|
28
29
|
bigdecimal
|
29
|
-
concurrent-ruby (~> 1.0, >= 1.
|
30
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
30
31
|
connection_pool (>= 2.2.5)
|
31
32
|
drb
|
32
33
|
i18n (>= 1.6, < 2)
|
34
|
+
logger (>= 1.4.2)
|
33
35
|
minitest (>= 5.1)
|
34
|
-
|
35
|
-
tzinfo (~> 2.0)
|
36
|
+
securerandom (>= 0.3)
|
37
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
38
|
+
uri (>= 0.13.1)
|
36
39
|
base64 (0.2.0)
|
37
|
-
|
38
|
-
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
42
|
+
builder (3.3.0)
|
39
43
|
coderay (1.1.3)
|
40
|
-
concurrent-ruby (1.
|
44
|
+
concurrent-ruby (1.3.4)
|
41
45
|
connection_pool (2.4.1)
|
42
|
-
countries (
|
46
|
+
countries (7.1.0)
|
43
47
|
unaccent (~> 0.3)
|
44
48
|
crass (1.0.6)
|
45
49
|
diff-lcs (1.5.1)
|
46
|
-
docile (1.4.
|
47
|
-
drb (2.2.
|
48
|
-
|
49
|
-
|
50
|
-
i18n (1.14.1)
|
50
|
+
docile (1.4.1)
|
51
|
+
drb (2.2.1)
|
52
|
+
erubi (1.13.1)
|
53
|
+
i18n (1.14.6)
|
51
54
|
concurrent-ruby (~> 1.0)
|
52
|
-
|
55
|
+
logger (1.6.4)
|
56
|
+
loofah (2.24.0)
|
53
57
|
crass (~> 1.0.2)
|
54
58
|
nokogiri (>= 1.12.0)
|
55
|
-
method_source (1.
|
56
|
-
mini_portile2 (2.8.
|
57
|
-
minitest (5.
|
58
|
-
|
59
|
-
nokogiri (1.16.2)
|
59
|
+
method_source (1.1.0)
|
60
|
+
mini_portile2 (2.8.8)
|
61
|
+
minitest (5.25.4)
|
62
|
+
nokogiri (1.18.1)
|
60
63
|
mini_portile2 (~> 2.8.2)
|
61
64
|
racc (~> 1.4)
|
62
|
-
nokogiri (1.
|
65
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
63
66
|
racc (~> 1.4)
|
64
|
-
nokogiri (1.
|
67
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
65
68
|
racc (~> 1.4)
|
66
|
-
nokogiri (1.
|
69
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
67
70
|
racc (~> 1.4)
|
68
|
-
|
71
|
+
nokogiri (1.18.1-arm-linux-musl)
|
72
|
+
racc (~> 1.4)
|
73
|
+
nokogiri (1.18.1-arm64-darwin)
|
74
|
+
racc (~> 1.4)
|
75
|
+
nokogiri (1.18.1-x86_64-darwin)
|
76
|
+
racc (~> 1.4)
|
77
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
78
|
+
racc (~> 1.4)
|
79
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
80
|
+
racc (~> 1.4)
|
81
|
+
pry (0.15.2)
|
69
82
|
coderay (~> 1.1)
|
70
83
|
method_source (~> 1.0)
|
71
|
-
racc (1.
|
72
|
-
rack (3.
|
73
|
-
rack-session (2.
|
84
|
+
racc (1.8.1)
|
85
|
+
rack (3.1.8)
|
86
|
+
rack-session (2.1.0)
|
87
|
+
base64 (>= 0.1.0)
|
74
88
|
rack (>= 3.0.0)
|
75
|
-
rack-test (2.
|
89
|
+
rack-test (2.2.0)
|
76
90
|
rack (>= 1.3)
|
77
91
|
rails-dom-testing (2.2.0)
|
78
92
|
activesupport (>= 5.0.0)
|
79
93
|
minitest
|
80
94
|
nokogiri (>= 1.6)
|
81
|
-
rails-html-sanitizer (1.6.
|
95
|
+
rails-html-sanitizer (1.6.2)
|
82
96
|
loofah (~> 2.21)
|
83
|
-
nokogiri (
|
84
|
-
rake (13.1
|
97
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
98
|
+
rake (13.2.1)
|
85
99
|
rspec (3.13.0)
|
86
100
|
rspec-core (~> 3.13.0)
|
87
101
|
rspec-expectations (~> 3.13.0)
|
88
102
|
rspec-mocks (~> 3.13.0)
|
89
|
-
rspec-core (3.13.
|
103
|
+
rspec-core (3.13.2)
|
90
104
|
rspec-support (~> 3.13.0)
|
91
|
-
rspec-expectations (3.13.
|
105
|
+
rspec-expectations (3.13.3)
|
92
106
|
diff-lcs (>= 1.2.0, < 2.0)
|
93
107
|
rspec-support (~> 3.13.0)
|
94
|
-
rspec-mocks (3.13.
|
108
|
+
rspec-mocks (3.13.2)
|
95
109
|
diff-lcs (>= 1.2.0, < 2.0)
|
96
110
|
rspec-support (~> 3.13.0)
|
97
|
-
rspec-support (3.13.
|
98
|
-
|
111
|
+
rspec-support (3.13.2)
|
112
|
+
securerandom (0.4.1)
|
99
113
|
simplecov (0.22.0)
|
100
114
|
docile (~> 1.1)
|
101
115
|
simplecov-html (~> 0.11)
|
102
116
|
simplecov_json_formatter (~> 0.1)
|
103
|
-
simplecov-html (0.
|
117
|
+
simplecov-html (0.13.1)
|
104
118
|
simplecov_json_formatter (0.1.4)
|
105
119
|
tzinfo (2.0.6)
|
106
120
|
concurrent-ruby (~> 1.0)
|
107
121
|
unaccent (0.4.0)
|
122
|
+
uri (1.0.2)
|
123
|
+
useragent (0.16.11)
|
108
124
|
|
109
125
|
PLATFORMS
|
110
|
-
|
126
|
+
aarch64-linux-gnu
|
127
|
+
aarch64-linux-musl
|
128
|
+
arm-linux-gnu
|
129
|
+
arm-linux-musl
|
130
|
+
arm64-darwin
|
111
131
|
ruby
|
112
|
-
x86_64-darwin
|
132
|
+
x86_64-darwin
|
113
133
|
x86_64-linux
|
134
|
+
x86_64-linux-gnu
|
135
|
+
x86_64-linux-musl
|
114
136
|
|
115
137
|
DEPENDENCIES
|
116
|
-
actionpack (
|
138
|
+
actionpack (> 7.0)
|
117
139
|
country_select!
|
118
140
|
pry (~> 0)
|
119
141
|
rake (~> 13)
|
@@ -121,4 +143,4 @@ DEPENDENCIES
|
|
121
143
|
simplecov (~> 0.22)
|
122
144
|
|
123
145
|
BUNDLED WITH
|
124
|
-
2.
|
146
|
+
2.6.2
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Rails – Country Select
|
2
|
-
[![Gem Version](https://badge.fury.io/rb/country_select.svg)](https://badge.fury.io/rb/
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/country_select.svg)](https://badge.fury.io/rb/country_select) [![build](https://github.com/countries/country_select/actions/workflows/test.yml/badge.svg)](https://github.com/countries/country_select/actions/workflows/test.yml)
|
3
3
|
[![Code Climate](https://codeclimate.com/github/countries/country_select.svg)](https://codeclimate.com/github/countries/country_select)
|
4
4
|
[![CodeQL](https://github.com/countries/country_select/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/countries/country_select/actions/workflows/codeql-analysis.yml)
|
5
5
|
|
data/country_select.gemspec
CHANGED
@@ -24,13 +24,13 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
25
25
|
s.require_paths = ['lib']
|
26
26
|
|
27
|
-
s.required_ruby_version = '>= 3.
|
27
|
+
s.required_ruby_version = '>= 3.1'
|
28
28
|
|
29
|
-
s.add_development_dependency 'actionpack', '
|
29
|
+
s.add_development_dependency 'actionpack', '> 7.0'
|
30
30
|
s.add_development_dependency 'pry', '~> 0'
|
31
31
|
s.add_development_dependency 'rake', '~> 13'
|
32
32
|
s.add_development_dependency 'rspec', '~> 3'
|
33
33
|
s.add_development_dependency 'simplecov', '~> 0.22'
|
34
34
|
|
35
|
-
s.add_dependency 'countries', '> 5.0', '<
|
35
|
+
s.add_dependency 'countries', '> 5.0', '< 8.0'
|
36
36
|
end
|
@@ -1,109 +1,126 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
country_select (
|
5
|
-
countries (> 5.0, <
|
4
|
+
country_select (10.0.1)
|
5
|
+
countries (> 5.0, < 8.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.0.8)
|
11
|
-
actionview (= 7.0.8)
|
12
|
-
activesupport (= 7.0.8)
|
10
|
+
actionpack (7.0.8.7)
|
11
|
+
actionview (= 7.0.8.7)
|
12
|
+
activesupport (= 7.0.8.7)
|
13
13
|
rack (~> 2.0, >= 2.2.4)
|
14
14
|
rack-test (>= 0.6.3)
|
15
15
|
rails-dom-testing (~> 2.0)
|
16
16
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
-
actionview (7.0.8)
|
18
|
-
activesupport (= 7.0.8)
|
17
|
+
actionview (7.0.8.7)
|
18
|
+
activesupport (= 7.0.8.7)
|
19
19
|
builder (~> 3.1)
|
20
20
|
erubi (~> 1.4)
|
21
21
|
rails-dom-testing (~> 2.0)
|
22
22
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
-
activesupport (7.0.8)
|
23
|
+
activesupport (7.0.8.7)
|
24
24
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
25
|
i18n (>= 1.6, < 2)
|
26
26
|
minitest (>= 5.1)
|
27
27
|
tzinfo (~> 2.0)
|
28
|
-
builder (3.
|
28
|
+
builder (3.3.0)
|
29
29
|
coderay (1.1.3)
|
30
|
-
concurrent-ruby (1.
|
31
|
-
countries (
|
30
|
+
concurrent-ruby (1.3.4)
|
31
|
+
countries (7.1.0)
|
32
32
|
unaccent (~> 0.3)
|
33
33
|
crass (1.0.6)
|
34
34
|
diff-lcs (1.5.1)
|
35
|
-
docile (1.4.
|
36
|
-
erubi (1.
|
37
|
-
i18n (1.14.
|
35
|
+
docile (1.4.1)
|
36
|
+
erubi (1.13.1)
|
37
|
+
i18n (1.14.6)
|
38
38
|
concurrent-ruby (~> 1.0)
|
39
|
-
loofah (2.
|
39
|
+
loofah (2.24.0)
|
40
40
|
crass (~> 1.0.2)
|
41
41
|
nokogiri (>= 1.12.0)
|
42
|
-
method_source (1.
|
43
|
-
minitest (5.
|
44
|
-
|
42
|
+
method_source (1.1.0)
|
43
|
+
minitest (5.25.4)
|
44
|
+
mutex_m (0.3.0)
|
45
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
45
46
|
racc (~> 1.4)
|
46
|
-
nokogiri (1.
|
47
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
47
48
|
racc (~> 1.4)
|
48
|
-
nokogiri (1.
|
49
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
49
50
|
racc (~> 1.4)
|
50
|
-
|
51
|
+
nokogiri (1.18.1-arm-linux-musl)
|
52
|
+
racc (~> 1.4)
|
53
|
+
nokogiri (1.18.1-arm64-darwin)
|
54
|
+
racc (~> 1.4)
|
55
|
+
nokogiri (1.18.1-x86_64-darwin)
|
56
|
+
racc (~> 1.4)
|
57
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
58
|
+
racc (~> 1.4)
|
59
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
60
|
+
racc (~> 1.4)
|
61
|
+
pry (0.15.2)
|
51
62
|
coderay (~> 1.1)
|
52
63
|
method_source (~> 1.0)
|
53
|
-
racc (1.
|
54
|
-
rack (2.2.
|
55
|
-
rack-test (2.
|
64
|
+
racc (1.8.1)
|
65
|
+
rack (2.2.10)
|
66
|
+
rack-test (2.2.0)
|
56
67
|
rack (>= 1.3)
|
57
68
|
rails-dom-testing (2.2.0)
|
58
69
|
activesupport (>= 5.0.0)
|
59
70
|
minitest
|
60
71
|
nokogiri (>= 1.6)
|
61
|
-
rails-html-sanitizer (1.6.
|
72
|
+
rails-html-sanitizer (1.6.2)
|
62
73
|
loofah (~> 2.21)
|
63
|
-
nokogiri (
|
64
|
-
railties (7.0.8)
|
65
|
-
actionpack (= 7.0.8)
|
66
|
-
activesupport (= 7.0.8)
|
74
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
75
|
+
railties (7.0.8.7)
|
76
|
+
actionpack (= 7.0.8.7)
|
77
|
+
activesupport (= 7.0.8.7)
|
67
78
|
method_source
|
68
79
|
rake (>= 12.2)
|
69
80
|
thor (~> 1.0)
|
70
81
|
zeitwerk (~> 2.5)
|
71
|
-
rake (13.1
|
82
|
+
rake (13.2.1)
|
72
83
|
rspec (3.13.0)
|
73
84
|
rspec-core (~> 3.13.0)
|
74
85
|
rspec-expectations (~> 3.13.0)
|
75
86
|
rspec-mocks (~> 3.13.0)
|
76
|
-
rspec-core (3.13.
|
87
|
+
rspec-core (3.13.2)
|
77
88
|
rspec-support (~> 3.13.0)
|
78
|
-
rspec-expectations (3.13.
|
89
|
+
rspec-expectations (3.13.3)
|
79
90
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
91
|
rspec-support (~> 3.13.0)
|
81
|
-
rspec-mocks (3.13.
|
92
|
+
rspec-mocks (3.13.2)
|
82
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
94
|
rspec-support (~> 3.13.0)
|
84
|
-
rspec-support (3.13.
|
95
|
+
rspec-support (3.13.2)
|
85
96
|
simplecov (0.22.0)
|
86
97
|
docile (~> 1.1)
|
87
98
|
simplecov-html (~> 0.11)
|
88
99
|
simplecov_json_formatter (~> 0.1)
|
89
|
-
simplecov-html (0.
|
100
|
+
simplecov-html (0.13.1)
|
90
101
|
simplecov_json_formatter (0.1.4)
|
91
|
-
thor (1.3.
|
102
|
+
thor (1.3.2)
|
92
103
|
tzinfo (2.0.6)
|
93
104
|
concurrent-ruby (~> 1.0)
|
94
105
|
unaccent (0.4.0)
|
95
|
-
zeitwerk (2.
|
106
|
+
zeitwerk (2.7.1)
|
96
107
|
|
97
108
|
PLATFORMS
|
98
|
-
|
99
|
-
|
100
|
-
|
109
|
+
aarch64-linux-gnu
|
110
|
+
aarch64-linux-musl
|
111
|
+
arm-linux-gnu
|
112
|
+
arm-linux-musl
|
113
|
+
arm64-darwin
|
114
|
+
x86_64-darwin
|
101
115
|
x86_64-linux
|
116
|
+
x86_64-linux-gnu
|
117
|
+
x86_64-linux-musl
|
102
118
|
|
103
119
|
DEPENDENCIES
|
104
120
|
actionpack (~> 7.0.0)
|
105
121
|
country_select!
|
106
|
-
|
122
|
+
mutex_m
|
123
|
+
nokogiri (~> 1.18)
|
107
124
|
pry (~> 0)
|
108
125
|
railties (~> 7.0.0)
|
109
126
|
rake (~> 13)
|
@@ -111,4 +128,4 @@ DEPENDENCIES
|
|
111
128
|
simplecov (~> 0.22)
|
112
129
|
|
113
130
|
BUNDLED WITH
|
114
|
-
2.
|
131
|
+
2.6.2
|
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
country_select (
|
5
|
-
countries (> 5.0, <
|
4
|
+
country_select (10.0.1)
|
5
|
+
countries (> 5.0, < 8.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.1.
|
11
|
-
actionview (= 7.1.
|
12
|
-
activesupport (= 7.1.
|
10
|
+
actionpack (7.1.5.1)
|
11
|
+
actionview (= 7.1.5.1)
|
12
|
+
activesupport (= 7.1.5.1)
|
13
13
|
nokogiri (>= 1.8.5)
|
14
14
|
racc
|
15
15
|
rack (>= 2.2.4)
|
@@ -17,126 +17,146 @@ GEM
|
|
17
17
|
rack-test (>= 0.6.3)
|
18
18
|
rails-dom-testing (~> 2.2)
|
19
19
|
rails-html-sanitizer (~> 1.6)
|
20
|
-
actionview (7.1.
|
21
|
-
activesupport (= 7.1.
|
20
|
+
actionview (7.1.5.1)
|
21
|
+
activesupport (= 7.1.5.1)
|
22
22
|
builder (~> 3.1)
|
23
23
|
erubi (~> 1.11)
|
24
24
|
rails-dom-testing (~> 2.2)
|
25
25
|
rails-html-sanitizer (~> 1.6)
|
26
|
-
activesupport (7.1.
|
26
|
+
activesupport (7.1.5.1)
|
27
27
|
base64
|
28
|
+
benchmark (>= 0.3)
|
28
29
|
bigdecimal
|
29
30
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
30
31
|
connection_pool (>= 2.2.5)
|
31
32
|
drb
|
32
33
|
i18n (>= 1.6, < 2)
|
34
|
+
logger (>= 1.4.2)
|
33
35
|
minitest (>= 5.1)
|
34
36
|
mutex_m
|
37
|
+
securerandom (>= 0.3)
|
35
38
|
tzinfo (~> 2.0)
|
36
39
|
base64 (0.2.0)
|
37
|
-
|
38
|
-
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
42
|
+
builder (3.3.0)
|
39
43
|
coderay (1.1.3)
|
40
|
-
concurrent-ruby (1.
|
44
|
+
concurrent-ruby (1.3.4)
|
41
45
|
connection_pool (2.4.1)
|
42
|
-
countries (
|
46
|
+
countries (7.1.0)
|
43
47
|
unaccent (~> 0.3)
|
44
48
|
crass (1.0.6)
|
49
|
+
date (3.4.1)
|
45
50
|
diff-lcs (1.5.1)
|
46
|
-
docile (1.4.
|
47
|
-
drb (2.2.
|
48
|
-
|
49
|
-
|
50
|
-
i18n (1.14.1)
|
51
|
+
docile (1.4.1)
|
52
|
+
drb (2.2.1)
|
53
|
+
erubi (1.13.1)
|
54
|
+
i18n (1.14.6)
|
51
55
|
concurrent-ruby (~> 1.0)
|
52
|
-
io-console (0.
|
53
|
-
irb (1.
|
54
|
-
rdoc
|
56
|
+
io-console (0.8.0)
|
57
|
+
irb (1.14.3)
|
58
|
+
rdoc (>= 4.0.0)
|
55
59
|
reline (>= 0.4.2)
|
56
|
-
|
60
|
+
logger (1.6.4)
|
61
|
+
loofah (2.24.0)
|
57
62
|
crass (~> 1.0.2)
|
58
63
|
nokogiri (>= 1.12.0)
|
59
|
-
method_source (1.
|
60
|
-
minitest (5.
|
61
|
-
mutex_m (0.
|
62
|
-
nokogiri (1.
|
64
|
+
method_source (1.1.0)
|
65
|
+
minitest (5.25.4)
|
66
|
+
mutex_m (0.3.0)
|
67
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
63
68
|
racc (~> 1.4)
|
64
|
-
nokogiri (1.
|
69
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
65
70
|
racc (~> 1.4)
|
66
|
-
nokogiri (1.
|
71
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
67
72
|
racc (~> 1.4)
|
68
|
-
|
73
|
+
nokogiri (1.18.1-arm-linux-musl)
|
74
|
+
racc (~> 1.4)
|
75
|
+
nokogiri (1.18.1-arm64-darwin)
|
76
|
+
racc (~> 1.4)
|
77
|
+
nokogiri (1.18.1-x86_64-darwin)
|
78
|
+
racc (~> 1.4)
|
79
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
80
|
+
racc (~> 1.4)
|
81
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
82
|
+
racc (~> 1.4)
|
83
|
+
pry (0.15.2)
|
69
84
|
coderay (~> 1.1)
|
70
85
|
method_source (~> 1.0)
|
71
|
-
psych (5.
|
86
|
+
psych (5.2.2)
|
87
|
+
date
|
72
88
|
stringio
|
73
|
-
racc (1.
|
74
|
-
rack (3.
|
75
|
-
rack-session (2.
|
89
|
+
racc (1.8.1)
|
90
|
+
rack (3.1.8)
|
91
|
+
rack-session (2.1.0)
|
92
|
+
base64 (>= 0.1.0)
|
76
93
|
rack (>= 3.0.0)
|
77
|
-
rack-test (2.
|
94
|
+
rack-test (2.2.0)
|
78
95
|
rack (>= 1.3)
|
79
|
-
rackup (2.1
|
96
|
+
rackup (2.2.1)
|
80
97
|
rack (>= 3)
|
81
|
-
webrick (~> 1.8)
|
82
98
|
rails-dom-testing (2.2.0)
|
83
99
|
activesupport (>= 5.0.0)
|
84
100
|
minitest
|
85
101
|
nokogiri (>= 1.6)
|
86
|
-
rails-html-sanitizer (1.6.
|
102
|
+
rails-html-sanitizer (1.6.2)
|
87
103
|
loofah (~> 2.21)
|
88
|
-
nokogiri (
|
89
|
-
railties (7.1.
|
90
|
-
actionpack (= 7.1.
|
91
|
-
activesupport (= 7.1.
|
104
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
105
|
+
railties (7.1.5.1)
|
106
|
+
actionpack (= 7.1.5.1)
|
107
|
+
activesupport (= 7.1.5.1)
|
92
108
|
irb
|
93
109
|
rackup (>= 1.0.0)
|
94
110
|
rake (>= 12.2)
|
95
111
|
thor (~> 1.0, >= 1.2.2)
|
96
112
|
zeitwerk (~> 2.6)
|
97
|
-
rake (13.1
|
98
|
-
rdoc (6.
|
113
|
+
rake (13.2.1)
|
114
|
+
rdoc (6.10.0)
|
99
115
|
psych (>= 4.0.0)
|
100
|
-
reline (0.
|
116
|
+
reline (0.6.0)
|
101
117
|
io-console (~> 0.5)
|
102
118
|
rspec (3.13.0)
|
103
119
|
rspec-core (~> 3.13.0)
|
104
120
|
rspec-expectations (~> 3.13.0)
|
105
121
|
rspec-mocks (~> 3.13.0)
|
106
|
-
rspec-core (3.13.
|
122
|
+
rspec-core (3.13.2)
|
107
123
|
rspec-support (~> 3.13.0)
|
108
|
-
rspec-expectations (3.13.
|
124
|
+
rspec-expectations (3.13.3)
|
109
125
|
diff-lcs (>= 1.2.0, < 2.0)
|
110
126
|
rspec-support (~> 3.13.0)
|
111
|
-
rspec-mocks (3.13.
|
127
|
+
rspec-mocks (3.13.2)
|
112
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
113
129
|
rspec-support (~> 3.13.0)
|
114
|
-
rspec-support (3.13.
|
115
|
-
|
130
|
+
rspec-support (3.13.2)
|
131
|
+
securerandom (0.4.1)
|
116
132
|
simplecov (0.22.0)
|
117
133
|
docile (~> 1.1)
|
118
134
|
simplecov-html (~> 0.11)
|
119
135
|
simplecov_json_formatter (~> 0.1)
|
120
|
-
simplecov-html (0.
|
136
|
+
simplecov-html (0.13.1)
|
121
137
|
simplecov_json_formatter (0.1.4)
|
122
|
-
stringio (3.1.
|
123
|
-
thor (1.3.
|
138
|
+
stringio (3.1.2)
|
139
|
+
thor (1.3.2)
|
124
140
|
tzinfo (2.0.6)
|
125
141
|
concurrent-ruby (~> 1.0)
|
126
142
|
unaccent (0.4.0)
|
127
|
-
|
128
|
-
zeitwerk (2.6.13)
|
143
|
+
zeitwerk (2.7.1)
|
129
144
|
|
130
145
|
PLATFORMS
|
131
|
-
|
132
|
-
|
133
|
-
|
146
|
+
aarch64-linux-gnu
|
147
|
+
aarch64-linux-musl
|
148
|
+
arm-linux-gnu
|
149
|
+
arm-linux-musl
|
150
|
+
arm64-darwin
|
151
|
+
x86_64-darwin
|
134
152
|
x86_64-linux
|
153
|
+
x86_64-linux-gnu
|
154
|
+
x86_64-linux-musl
|
135
155
|
|
136
156
|
DEPENDENCIES
|
137
157
|
actionpack (~> 7.1.0)
|
138
158
|
country_select!
|
139
|
-
nokogiri (~> 1.
|
159
|
+
nokogiri (~> 1.18)
|
140
160
|
pry (~> 0)
|
141
161
|
railties (~> 7.1.0)
|
142
162
|
rake (~> 13)
|
@@ -144,4 +164,4 @@ DEPENDENCIES
|
|
144
164
|
simplecov (~> 0.22)
|
145
165
|
|
146
166
|
BUNDLED WITH
|
147
|
-
2.
|
167
|
+
2.6.2
|
@@ -0,0 +1,175 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
country_select (10.0.1)
|
5
|
+
countries (> 5.0, < 8.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionpack (7.2.2.1)
|
11
|
+
actionview (= 7.2.2.1)
|
12
|
+
activesupport (= 7.2.2.1)
|
13
|
+
nokogiri (>= 1.8.5)
|
14
|
+
racc
|
15
|
+
rack (>= 2.2.4, < 3.2)
|
16
|
+
rack-session (>= 1.0.1)
|
17
|
+
rack-test (>= 0.6.3)
|
18
|
+
rails-dom-testing (~> 2.2)
|
19
|
+
rails-html-sanitizer (~> 1.6)
|
20
|
+
useragent (~> 0.16)
|
21
|
+
actionview (7.2.2.1)
|
22
|
+
activesupport (= 7.2.2.1)
|
23
|
+
builder (~> 3.1)
|
24
|
+
erubi (~> 1.11)
|
25
|
+
rails-dom-testing (~> 2.2)
|
26
|
+
rails-html-sanitizer (~> 1.6)
|
27
|
+
activesupport (7.2.2.1)
|
28
|
+
base64
|
29
|
+
benchmark (>= 0.3)
|
30
|
+
bigdecimal
|
31
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
32
|
+
connection_pool (>= 2.2.5)
|
33
|
+
drb
|
34
|
+
i18n (>= 1.6, < 2)
|
35
|
+
logger (>= 1.4.2)
|
36
|
+
minitest (>= 5.1)
|
37
|
+
securerandom (>= 0.3)
|
38
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
39
|
+
base64 (0.2.0)
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
42
|
+
builder (3.3.0)
|
43
|
+
coderay (1.1.3)
|
44
|
+
concurrent-ruby (1.3.4)
|
45
|
+
connection_pool (2.4.1)
|
46
|
+
countries (7.1.0)
|
47
|
+
unaccent (~> 0.3)
|
48
|
+
crass (1.0.6)
|
49
|
+
date (3.4.1)
|
50
|
+
diff-lcs (1.5.1)
|
51
|
+
docile (1.4.1)
|
52
|
+
drb (2.2.1)
|
53
|
+
erubi (1.13.1)
|
54
|
+
i18n (1.14.6)
|
55
|
+
concurrent-ruby (~> 1.0)
|
56
|
+
io-console (0.8.0)
|
57
|
+
irb (1.14.3)
|
58
|
+
rdoc (>= 4.0.0)
|
59
|
+
reline (>= 0.4.2)
|
60
|
+
logger (1.6.4)
|
61
|
+
loofah (2.24.0)
|
62
|
+
crass (~> 1.0.2)
|
63
|
+
nokogiri (>= 1.12.0)
|
64
|
+
method_source (1.1.0)
|
65
|
+
mini_portile2 (2.8.8)
|
66
|
+
minitest (5.25.4)
|
67
|
+
nokogiri (1.18.1)
|
68
|
+
mini_portile2 (~> 2.8.2)
|
69
|
+
racc (~> 1.4)
|
70
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
71
|
+
racc (~> 1.4)
|
72
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
73
|
+
racc (~> 1.4)
|
74
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
75
|
+
racc (~> 1.4)
|
76
|
+
nokogiri (1.18.1-arm-linux-musl)
|
77
|
+
racc (~> 1.4)
|
78
|
+
nokogiri (1.18.1-arm64-darwin)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.18.1-x86_64-darwin)
|
81
|
+
racc (~> 1.4)
|
82
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
83
|
+
racc (~> 1.4)
|
84
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
85
|
+
racc (~> 1.4)
|
86
|
+
pry (0.15.2)
|
87
|
+
coderay (~> 1.1)
|
88
|
+
method_source (~> 1.0)
|
89
|
+
psych (5.2.2)
|
90
|
+
date
|
91
|
+
stringio
|
92
|
+
racc (1.8.1)
|
93
|
+
rack (3.1.8)
|
94
|
+
rack-session (2.1.0)
|
95
|
+
base64 (>= 0.1.0)
|
96
|
+
rack (>= 3.0.0)
|
97
|
+
rack-test (2.2.0)
|
98
|
+
rack (>= 1.3)
|
99
|
+
rackup (2.2.1)
|
100
|
+
rack (>= 3)
|
101
|
+
rails-dom-testing (2.2.0)
|
102
|
+
activesupport (>= 5.0.0)
|
103
|
+
minitest
|
104
|
+
nokogiri (>= 1.6)
|
105
|
+
rails-html-sanitizer (1.6.2)
|
106
|
+
loofah (~> 2.21)
|
107
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
108
|
+
railties (7.2.2.1)
|
109
|
+
actionpack (= 7.2.2.1)
|
110
|
+
activesupport (= 7.2.2.1)
|
111
|
+
irb (~> 1.13)
|
112
|
+
rackup (>= 1.0.0)
|
113
|
+
rake (>= 12.2)
|
114
|
+
thor (~> 1.0, >= 1.2.2)
|
115
|
+
zeitwerk (~> 2.6)
|
116
|
+
rake (13.2.1)
|
117
|
+
rdoc (6.10.0)
|
118
|
+
psych (>= 4.0.0)
|
119
|
+
reline (0.6.0)
|
120
|
+
io-console (~> 0.5)
|
121
|
+
rspec (3.13.0)
|
122
|
+
rspec-core (~> 3.13.0)
|
123
|
+
rspec-expectations (~> 3.13.0)
|
124
|
+
rspec-mocks (~> 3.13.0)
|
125
|
+
rspec-core (3.13.2)
|
126
|
+
rspec-support (~> 3.13.0)
|
127
|
+
rspec-expectations (3.13.3)
|
128
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
+
rspec-support (~> 3.13.0)
|
130
|
+
rspec-mocks (3.13.2)
|
131
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
+
rspec-support (~> 3.13.0)
|
133
|
+
rspec-support (3.13.2)
|
134
|
+
securerandom (0.4.1)
|
135
|
+
simplecov (0.22.0)
|
136
|
+
docile (~> 1.1)
|
137
|
+
simplecov-html (~> 0.11)
|
138
|
+
simplecov_json_formatter (~> 0.1)
|
139
|
+
simplecov-html (0.13.1)
|
140
|
+
simplecov_json_formatter (0.1.4)
|
141
|
+
stringio (3.1.2)
|
142
|
+
thor (1.3.2)
|
143
|
+
tzinfo (2.0.6)
|
144
|
+
concurrent-ruby (~> 1.0)
|
145
|
+
unaccent (0.4.0)
|
146
|
+
useragent (0.16.11)
|
147
|
+
zeitwerk (2.7.1)
|
148
|
+
|
149
|
+
PLATFORMS
|
150
|
+
aarch64-linux
|
151
|
+
aarch64-linux-gnu
|
152
|
+
aarch64-linux-musl
|
153
|
+
arm-linux
|
154
|
+
arm-linux-gnu
|
155
|
+
arm-linux-musl
|
156
|
+
arm64-darwin
|
157
|
+
ruby
|
158
|
+
x86-linux
|
159
|
+
x86_64-darwin
|
160
|
+
x86_64-linux
|
161
|
+
x86_64-linux-gnu
|
162
|
+
x86_64-linux-musl
|
163
|
+
|
164
|
+
DEPENDENCIES
|
165
|
+
actionpack (~> 7.2.0)
|
166
|
+
country_select!
|
167
|
+
nokogiri (~> 1.18)
|
168
|
+
pry (~> 0)
|
169
|
+
railties (~> 7.2.0)
|
170
|
+
rake (~> 13)
|
171
|
+
rspec (~> 3)
|
172
|
+
simplecov (~> 0.22)
|
173
|
+
|
174
|
+
BUNDLED WITH
|
175
|
+
2.6.2
|
@@ -0,0 +1,168 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
country_select (10.0.1)
|
5
|
+
countries (> 5.0, < 8.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actionpack (8.0.1)
|
11
|
+
actionview (= 8.0.1)
|
12
|
+
activesupport (= 8.0.1)
|
13
|
+
nokogiri (>= 1.8.5)
|
14
|
+
rack (>= 2.2.4)
|
15
|
+
rack-session (>= 1.0.1)
|
16
|
+
rack-test (>= 0.6.3)
|
17
|
+
rails-dom-testing (~> 2.2)
|
18
|
+
rails-html-sanitizer (~> 1.6)
|
19
|
+
useragent (~> 0.16)
|
20
|
+
actionview (8.0.1)
|
21
|
+
activesupport (= 8.0.1)
|
22
|
+
builder (~> 3.1)
|
23
|
+
erubi (~> 1.11)
|
24
|
+
rails-dom-testing (~> 2.2)
|
25
|
+
rails-html-sanitizer (~> 1.6)
|
26
|
+
activesupport (8.0.1)
|
27
|
+
base64
|
28
|
+
benchmark (>= 0.3)
|
29
|
+
bigdecimal
|
30
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
31
|
+
connection_pool (>= 2.2.5)
|
32
|
+
drb
|
33
|
+
i18n (>= 1.6, < 2)
|
34
|
+
logger (>= 1.4.2)
|
35
|
+
minitest (>= 5.1)
|
36
|
+
securerandom (>= 0.3)
|
37
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
38
|
+
uri (>= 0.13.1)
|
39
|
+
base64 (0.2.0)
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
42
|
+
builder (3.3.0)
|
43
|
+
coderay (1.1.3)
|
44
|
+
concurrent-ruby (1.3.4)
|
45
|
+
connection_pool (2.4.1)
|
46
|
+
countries (7.1.0)
|
47
|
+
unaccent (~> 0.3)
|
48
|
+
crass (1.0.6)
|
49
|
+
date (3.4.1)
|
50
|
+
diff-lcs (1.5.1)
|
51
|
+
docile (1.4.1)
|
52
|
+
drb (2.2.1)
|
53
|
+
erubi (1.13.1)
|
54
|
+
i18n (1.14.6)
|
55
|
+
concurrent-ruby (~> 1.0)
|
56
|
+
io-console (0.8.0)
|
57
|
+
irb (1.14.3)
|
58
|
+
rdoc (>= 4.0.0)
|
59
|
+
reline (>= 0.4.2)
|
60
|
+
logger (1.6.4)
|
61
|
+
loofah (2.24.0)
|
62
|
+
crass (~> 1.0.2)
|
63
|
+
nokogiri (>= 1.12.0)
|
64
|
+
method_source (1.1.0)
|
65
|
+
minitest (5.25.4)
|
66
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
67
|
+
racc (~> 1.4)
|
68
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
69
|
+
racc (~> 1.4)
|
70
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
71
|
+
racc (~> 1.4)
|
72
|
+
nokogiri (1.18.1-arm-linux-musl)
|
73
|
+
racc (~> 1.4)
|
74
|
+
nokogiri (1.18.1-arm64-darwin)
|
75
|
+
racc (~> 1.4)
|
76
|
+
nokogiri (1.18.1-x86_64-darwin)
|
77
|
+
racc (~> 1.4)
|
78
|
+
nokogiri (1.18.1-x86_64-linux-gnu)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.18.1-x86_64-linux-musl)
|
81
|
+
racc (~> 1.4)
|
82
|
+
pry (0.15.2)
|
83
|
+
coderay (~> 1.1)
|
84
|
+
method_source (~> 1.0)
|
85
|
+
psych (5.2.2)
|
86
|
+
date
|
87
|
+
stringio
|
88
|
+
racc (1.8.1)
|
89
|
+
rack (3.1.8)
|
90
|
+
rack-session (2.1.0)
|
91
|
+
base64 (>= 0.1.0)
|
92
|
+
rack (>= 3.0.0)
|
93
|
+
rack-test (2.2.0)
|
94
|
+
rack (>= 1.3)
|
95
|
+
rackup (2.2.1)
|
96
|
+
rack (>= 3)
|
97
|
+
rails-dom-testing (2.2.0)
|
98
|
+
activesupport (>= 5.0.0)
|
99
|
+
minitest
|
100
|
+
nokogiri (>= 1.6)
|
101
|
+
rails-html-sanitizer (1.6.2)
|
102
|
+
loofah (~> 2.21)
|
103
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
104
|
+
railties (8.0.1)
|
105
|
+
actionpack (= 8.0.1)
|
106
|
+
activesupport (= 8.0.1)
|
107
|
+
irb (~> 1.13)
|
108
|
+
rackup (>= 1.0.0)
|
109
|
+
rake (>= 12.2)
|
110
|
+
thor (~> 1.0, >= 1.2.2)
|
111
|
+
zeitwerk (~> 2.6)
|
112
|
+
rake (13.2.1)
|
113
|
+
rdoc (6.10.0)
|
114
|
+
psych (>= 4.0.0)
|
115
|
+
reline (0.6.0)
|
116
|
+
io-console (~> 0.5)
|
117
|
+
rspec (3.13.0)
|
118
|
+
rspec-core (~> 3.13.0)
|
119
|
+
rspec-expectations (~> 3.13.0)
|
120
|
+
rspec-mocks (~> 3.13.0)
|
121
|
+
rspec-core (3.13.2)
|
122
|
+
rspec-support (~> 3.13.0)
|
123
|
+
rspec-expectations (3.13.3)
|
124
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
125
|
+
rspec-support (~> 3.13.0)
|
126
|
+
rspec-mocks (3.13.2)
|
127
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
128
|
+
rspec-support (~> 3.13.0)
|
129
|
+
rspec-support (3.13.2)
|
130
|
+
securerandom (0.4.1)
|
131
|
+
simplecov (0.22.0)
|
132
|
+
docile (~> 1.1)
|
133
|
+
simplecov-html (~> 0.11)
|
134
|
+
simplecov_json_formatter (~> 0.1)
|
135
|
+
simplecov-html (0.13.1)
|
136
|
+
simplecov_json_formatter (0.1.4)
|
137
|
+
stringio (3.1.2)
|
138
|
+
thor (1.3.2)
|
139
|
+
tzinfo (2.0.6)
|
140
|
+
concurrent-ruby (~> 1.0)
|
141
|
+
unaccent (0.4.0)
|
142
|
+
uri (1.0.2)
|
143
|
+
useragent (0.16.11)
|
144
|
+
zeitwerk (2.7.1)
|
145
|
+
|
146
|
+
PLATFORMS
|
147
|
+
aarch64-linux-gnu
|
148
|
+
aarch64-linux-musl
|
149
|
+
arm-linux-gnu
|
150
|
+
arm-linux-musl
|
151
|
+
arm64-darwin
|
152
|
+
x86_64-darwin
|
153
|
+
x86_64-linux
|
154
|
+
x86_64-linux-gnu
|
155
|
+
x86_64-linux-musl
|
156
|
+
|
157
|
+
DEPENDENCIES
|
158
|
+
actionpack (~> 8.0.0)
|
159
|
+
country_select!
|
160
|
+
nokogiri (~> 1.18)
|
161
|
+
pry (~> 0)
|
162
|
+
railties (~> 8.0.0)
|
163
|
+
rake (~> 13)
|
164
|
+
rspec (~> 3)
|
165
|
+
simplecov (~> 0.22)
|
166
|
+
|
167
|
+
BUNDLED WITH
|
168
|
+
2.6.2
|
@@ -84,7 +84,7 @@ module CountrySelect
|
|
84
84
|
|
85
85
|
def options_for_select_with_priority_countries(country_options, tags_options)
|
86
86
|
sorted = @options.fetch(:sort_provided, ::CountrySelect::DEFAULTS[:sort_provided])
|
87
|
-
priority_countries_options = country_options_for(priority_countries, sorted:
|
87
|
+
priority_countries_options = country_options_for(priority_countries, sorted:)
|
88
88
|
|
89
89
|
option_tags = priority_options_for_select(priority_countries_options, tags_options)
|
90
90
|
|
data/spec/country_select_spec.rb
CHANGED
metadata
CHANGED
@@ -1,27 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: country_select
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 10.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Penner
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: actionpack
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
|
-
- - "
|
16
|
+
- - ">"
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: '7.0'
|
20
19
|
type: :development
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
|
-
- - "
|
23
|
+
- - ">"
|
25
24
|
- !ruby/object:Gem::Version
|
26
25
|
version: '7.0'
|
27
26
|
- !ruby/object:Gem::Dependency
|
@@ -89,7 +88,7 @@ dependencies:
|
|
89
88
|
version: '5.0'
|
90
89
|
- - "<"
|
91
90
|
- !ruby/object:Gem::Version
|
92
|
-
version: '
|
91
|
+
version: '8.0'
|
93
92
|
type: :runtime
|
94
93
|
prerelease: false
|
95
94
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -99,7 +98,7 @@ dependencies:
|
|
99
98
|
version: '5.0'
|
100
99
|
- - "<"
|
101
100
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
101
|
+
version: '8.0'
|
103
102
|
description: |-
|
104
103
|
Provides a simple helper to get an HTML select list of countries. \
|
105
104
|
The list of countries comes from the ISO 3166 standard. \
|
@@ -124,12 +123,14 @@ files:
|
|
124
123
|
- Rakefile
|
125
124
|
- UPGRADING.md
|
126
125
|
- country_select.gemspec
|
127
|
-
- gemfiles/actionpack-6.1.gemfile
|
128
|
-
- gemfiles/actionpack-6.1.gemfile.lock
|
129
126
|
- gemfiles/actionpack-7.0.gemfile
|
130
127
|
- gemfiles/actionpack-7.0.gemfile.lock
|
131
128
|
- gemfiles/actionpack-7.1.gemfile
|
132
129
|
- gemfiles/actionpack-7.1.gemfile.lock
|
130
|
+
- gemfiles/actionpack-7.2.gemfile
|
131
|
+
- gemfiles/actionpack-7.2.gemfile.lock
|
132
|
+
- gemfiles/actionpack-8.0.gemfile
|
133
|
+
- gemfiles/actionpack-8.0.gemfile.lock
|
133
134
|
- lib/country_select.rb
|
134
135
|
- lib/country_select/country_select_helper.rb
|
135
136
|
- lib/country_select/defaults.rb
|
@@ -146,7 +147,6 @@ metadata:
|
|
146
147
|
changelog_uri: https://github.com/countries/country_select/blob/master/CHANGELOG.md
|
147
148
|
source_code_uri: https://github.com/countries/country_select
|
148
149
|
rubygems_mfa_required: 'true'
|
149
|
-
post_install_message:
|
150
150
|
rdoc_options: []
|
151
151
|
require_paths:
|
152
152
|
- lib
|
@@ -154,15 +154,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
154
154
|
requirements:
|
155
155
|
- - ">="
|
156
156
|
- !ruby/object:Gem::Version
|
157
|
-
version: '3.
|
157
|
+
version: '3.1'
|
158
158
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
159
159
|
requirements:
|
160
160
|
- - ">="
|
161
161
|
- !ruby/object:Gem::Version
|
162
162
|
version: '0'
|
163
163
|
requirements: []
|
164
|
-
rubygems_version: 3.
|
165
|
-
signing_key:
|
164
|
+
rubygems_version: 3.6.2
|
166
165
|
specification_version: 4
|
167
166
|
summary: Country Select Plugin
|
168
167
|
test_files: []
|
@@ -1,111 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
country_select (8.0.3)
|
5
|
-
countries (> 5.0, < 7.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionpack (6.1.7.6)
|
11
|
-
actionview (= 6.1.7.6)
|
12
|
-
activesupport (= 6.1.7.6)
|
13
|
-
rack (~> 2.0, >= 2.0.9)
|
14
|
-
rack-test (>= 0.6.3)
|
15
|
-
rails-dom-testing (~> 2.0)
|
16
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
-
actionview (6.1.7.6)
|
18
|
-
activesupport (= 6.1.7.6)
|
19
|
-
builder (~> 3.1)
|
20
|
-
erubi (~> 1.4)
|
21
|
-
rails-dom-testing (~> 2.0)
|
22
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
-
activesupport (6.1.7.6)
|
24
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
|
-
i18n (>= 1.6, < 2)
|
26
|
-
minitest (>= 5.1)
|
27
|
-
tzinfo (~> 2.0)
|
28
|
-
zeitwerk (~> 2.3)
|
29
|
-
builder (3.2.4)
|
30
|
-
coderay (1.1.3)
|
31
|
-
concurrent-ruby (1.2.3)
|
32
|
-
countries (6.0.0)
|
33
|
-
unaccent (~> 0.3)
|
34
|
-
crass (1.0.6)
|
35
|
-
diff-lcs (1.5.1)
|
36
|
-
docile (1.4.0)
|
37
|
-
erubi (1.12.0)
|
38
|
-
i18n (1.14.1)
|
39
|
-
concurrent-ruby (~> 1.0)
|
40
|
-
loofah (2.22.0)
|
41
|
-
crass (~> 1.0.2)
|
42
|
-
nokogiri (>= 1.12.0)
|
43
|
-
method_source (1.0.0)
|
44
|
-
mini_portile2 (2.8.5)
|
45
|
-
minitest (5.22.2)
|
46
|
-
nokogiri (1.14.0.rc1)
|
47
|
-
mini_portile2 (~> 2.8.0)
|
48
|
-
racc (~> 1.4)
|
49
|
-
pry (0.14.2)
|
50
|
-
coderay (~> 1.1)
|
51
|
-
method_source (~> 1.0)
|
52
|
-
racc (1.7.3)
|
53
|
-
rack (2.2.8)
|
54
|
-
rack-test (2.1.0)
|
55
|
-
rack (>= 1.3)
|
56
|
-
rails-dom-testing (2.2.0)
|
57
|
-
activesupport (>= 5.0.0)
|
58
|
-
minitest
|
59
|
-
nokogiri (>= 1.6)
|
60
|
-
rails-html-sanitizer (1.5.0)
|
61
|
-
loofah (~> 2.19, >= 2.19.1)
|
62
|
-
railties (6.1.7.6)
|
63
|
-
actionpack (= 6.1.7.6)
|
64
|
-
activesupport (= 6.1.7.6)
|
65
|
-
method_source
|
66
|
-
rake (>= 12.2)
|
67
|
-
thor (~> 1.0)
|
68
|
-
rake (13.1.0)
|
69
|
-
rspec (3.13.0)
|
70
|
-
rspec-core (~> 3.13.0)
|
71
|
-
rspec-expectations (~> 3.13.0)
|
72
|
-
rspec-mocks (~> 3.13.0)
|
73
|
-
rspec-core (3.13.0)
|
74
|
-
rspec-support (~> 3.13.0)
|
75
|
-
rspec-expectations (3.13.0)
|
76
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.13.0)
|
78
|
-
rspec-mocks (3.13.0)
|
79
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.13.0)
|
81
|
-
rspec-support (3.13.0)
|
82
|
-
simplecov (0.22.0)
|
83
|
-
docile (~> 1.1)
|
84
|
-
simplecov-html (~> 0.11)
|
85
|
-
simplecov_json_formatter (~> 0.1)
|
86
|
-
simplecov-html (0.12.3)
|
87
|
-
simplecov_json_formatter (0.1.4)
|
88
|
-
thor (1.3.0)
|
89
|
-
tzinfo (2.0.6)
|
90
|
-
concurrent-ruby (~> 1.0)
|
91
|
-
unaccent (0.4.0)
|
92
|
-
zeitwerk (2.6.13)
|
93
|
-
|
94
|
-
PLATFORMS
|
95
|
-
arm64-darwin-22
|
96
|
-
arm64-darwin-23
|
97
|
-
x86_64-darwin-22
|
98
|
-
x86_64-linux
|
99
|
-
|
100
|
-
DEPENDENCIES
|
101
|
-
actionpack (~> 6.1.0)
|
102
|
-
country_select!
|
103
|
-
nokogiri (= 1.14.0.rc1)
|
104
|
-
pry (~> 0)
|
105
|
-
railties (~> 6.1.0)
|
106
|
-
rake (~> 13)
|
107
|
-
rspec (~> 3)
|
108
|
-
simplecov (~> 0.22)
|
109
|
-
|
110
|
-
BUNDLED WITH
|
111
|
-
2.4.19
|