country_select 10.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 +5 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +55 -35
- data/country_select.gemspec +1 -1
- data/gemfiles/actionpack-7.0.gemfile +2 -1
- data/gemfiles/actionpack-7.0.gemfile.lock +48 -31
- data/gemfiles/actionpack-7.1.gemfile +1 -1
- data/gemfiles/actionpack-7.1.gemfile.lock +65 -43
- data/gemfiles/actionpack-7.2.gemfile +1 -1
- data/gemfiles/actionpack-7.2.gemfile.lock +63 -45
- data/gemfiles/actionpack-8.0.gemfile +9 -0
- data/gemfiles/actionpack-8.0.gemfile.lock +168 -0
- data/lib/country_select/version.rb +1 -1
- data/spec/country_select_spec.rb +1 -0
- metadata +7 -10
- 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: [3.1, 3.2, 3.3]
|
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
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,31 +1,31 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
country_select (
|
4
|
+
country_select (10.0.0)
|
5
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
|
-
|
15
|
-
rack (>= 2.2.4, < 3.2)
|
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
19
|
useragent (~> 0.16)
|
21
|
-
actionview (
|
22
|
-
activesupport (=
|
20
|
+
actionview (8.0.1)
|
21
|
+
activesupport (= 8.0.1)
|
23
22
|
builder (~> 3.1)
|
24
23
|
erubi (~> 1.11)
|
25
24
|
rails-dom-testing (~> 2.2)
|
26
25
|
rails-html-sanitizer (~> 1.6)
|
27
|
-
activesupport (
|
26
|
+
activesupport (8.0.1)
|
28
27
|
base64
|
28
|
+
benchmark (>= 0.3)
|
29
29
|
bigdecimal
|
30
30
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
31
31
|
connection_pool (>= 2.2.5)
|
@@ -35,68 +35,81 @@ GEM
|
|
35
35
|
minitest (>= 5.1)
|
36
36
|
securerandom (>= 0.3)
|
37
37
|
tzinfo (~> 2.0, >= 2.0.5)
|
38
|
+
uri (>= 0.13.1)
|
38
39
|
base64 (0.2.0)
|
39
|
-
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
40
42
|
builder (3.3.0)
|
41
43
|
coderay (1.1.3)
|
42
44
|
concurrent-ruby (1.3.4)
|
43
45
|
connection_pool (2.4.1)
|
44
|
-
countries (7.
|
46
|
+
countries (7.1.0)
|
45
47
|
unaccent (~> 0.3)
|
46
48
|
crass (1.0.6)
|
47
49
|
diff-lcs (1.5.1)
|
48
50
|
docile (1.4.1)
|
49
51
|
drb (2.2.1)
|
50
|
-
erubi (1.13.
|
52
|
+
erubi (1.13.1)
|
51
53
|
i18n (1.14.6)
|
52
54
|
concurrent-ruby (~> 1.0)
|
53
|
-
logger (1.6.
|
54
|
-
loofah (2.
|
55
|
+
logger (1.6.4)
|
56
|
+
loofah (2.24.0)
|
55
57
|
crass (~> 1.0.2)
|
56
58
|
nokogiri (>= 1.12.0)
|
57
59
|
method_source (1.1.0)
|
58
|
-
mini_portile2 (2.8.
|
59
|
-
minitest (5.25.
|
60
|
-
nokogiri (1.
|
60
|
+
mini_portile2 (2.8.8)
|
61
|
+
minitest (5.25.4)
|
62
|
+
nokogiri (1.18.1)
|
61
63
|
mini_portile2 (~> 2.8.2)
|
62
64
|
racc (~> 1.4)
|
63
|
-
nokogiri (1.
|
65
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
64
66
|
racc (~> 1.4)
|
65
|
-
nokogiri (1.
|
67
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
66
68
|
racc (~> 1.4)
|
67
|
-
nokogiri (1.
|
69
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
68
70
|
racc (~> 1.4)
|
69
|
-
|
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)
|
70
82
|
coderay (~> 1.1)
|
71
83
|
method_source (~> 1.0)
|
72
84
|
racc (1.8.1)
|
73
|
-
rack (3.1.
|
74
|
-
rack-session (2.
|
85
|
+
rack (3.1.8)
|
86
|
+
rack-session (2.1.0)
|
87
|
+
base64 (>= 0.1.0)
|
75
88
|
rack (>= 3.0.0)
|
76
|
-
rack-test (2.
|
89
|
+
rack-test (2.2.0)
|
77
90
|
rack (>= 1.3)
|
78
91
|
rails-dom-testing (2.2.0)
|
79
92
|
activesupport (>= 5.0.0)
|
80
93
|
minitest
|
81
94
|
nokogiri (>= 1.6)
|
82
|
-
rails-html-sanitizer (1.6.
|
95
|
+
rails-html-sanitizer (1.6.2)
|
83
96
|
loofah (~> 2.21)
|
84
|
-
nokogiri (
|
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)
|
85
98
|
rake (13.2.1)
|
86
99
|
rspec (3.13.0)
|
87
100
|
rspec-core (~> 3.13.0)
|
88
101
|
rspec-expectations (~> 3.13.0)
|
89
102
|
rspec-mocks (~> 3.13.0)
|
90
|
-
rspec-core (3.13.
|
103
|
+
rspec-core (3.13.2)
|
91
104
|
rspec-support (~> 3.13.0)
|
92
105
|
rspec-expectations (3.13.3)
|
93
106
|
diff-lcs (>= 1.2.0, < 2.0)
|
94
107
|
rspec-support (~> 3.13.0)
|
95
|
-
rspec-mocks (3.13.
|
108
|
+
rspec-mocks (3.13.2)
|
96
109
|
diff-lcs (>= 1.2.0, < 2.0)
|
97
110
|
rspec-support (~> 3.13.0)
|
98
|
-
rspec-support (3.13.
|
99
|
-
securerandom (0.
|
111
|
+
rspec-support (3.13.2)
|
112
|
+
securerandom (0.4.1)
|
100
113
|
simplecov (0.22.0)
|
101
114
|
docile (~> 1.1)
|
102
115
|
simplecov-html (~> 0.11)
|
@@ -106,16 +119,23 @@ GEM
|
|
106
119
|
tzinfo (2.0.6)
|
107
120
|
concurrent-ruby (~> 1.0)
|
108
121
|
unaccent (0.4.0)
|
109
|
-
|
122
|
+
uri (1.0.2)
|
123
|
+
useragent (0.16.11)
|
110
124
|
|
111
125
|
PLATFORMS
|
112
|
-
|
126
|
+
aarch64-linux-gnu
|
127
|
+
aarch64-linux-musl
|
128
|
+
arm-linux-gnu
|
129
|
+
arm-linux-musl
|
130
|
+
arm64-darwin
|
113
131
|
ruby
|
114
|
-
x86_64-darwin
|
132
|
+
x86_64-darwin
|
115
133
|
x86_64-linux
|
134
|
+
x86_64-linux-gnu
|
135
|
+
x86_64-linux-musl
|
116
136
|
|
117
137
|
DEPENDENCIES
|
118
|
-
actionpack (
|
138
|
+
actionpack (> 7.0)
|
119
139
|
country_select!
|
120
140
|
pry (~> 0)
|
121
141
|
rake (~> 13)
|
@@ -123,4 +143,4 @@ DEPENDENCIES
|
|
123
143
|
simplecov (~> 0.22)
|
124
144
|
|
125
145
|
BUNDLED WITH
|
126
|
-
2.
|
146
|
+
2.6.2
|
data/country_select.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
|
27
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'
|
@@ -1,26 +1,26 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
country_select (10.0.
|
4
|
+
country_select (10.0.1)
|
5
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)
|
@@ -28,42 +28,53 @@ GEM
|
|
28
28
|
builder (3.3.0)
|
29
29
|
coderay (1.1.3)
|
30
30
|
concurrent-ruby (1.3.4)
|
31
|
-
countries (7.
|
31
|
+
countries (7.1.0)
|
32
32
|
unaccent (~> 0.3)
|
33
33
|
crass (1.0.6)
|
34
34
|
diff-lcs (1.5.1)
|
35
35
|
docile (1.4.1)
|
36
|
-
erubi (1.13.
|
36
|
+
erubi (1.13.1)
|
37
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
42
|
method_source (1.1.0)
|
43
|
-
minitest (5.25.
|
44
|
-
|
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
64
|
racc (1.8.1)
|
54
|
-
rack (2.2.
|
55
|
-
rack-test (2.
|
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)
|
@@ -73,15 +84,15 @@ GEM
|
|
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
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)
|
@@ -92,18 +103,24 @@ GEM
|
|
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 (10.0.
|
4
|
+
country_select (10.0.1)
|
5
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,124 +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
|
-
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
38
42
|
builder (3.3.0)
|
39
43
|
coderay (1.1.3)
|
40
44
|
concurrent-ruby (1.3.4)
|
41
45
|
connection_pool (2.4.1)
|
42
|
-
countries (7.
|
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
51
|
docile (1.4.1)
|
47
52
|
drb (2.2.1)
|
48
|
-
erubi (1.13.
|
53
|
+
erubi (1.13.1)
|
49
54
|
i18n (1.14.6)
|
50
55
|
concurrent-ruby (~> 1.0)
|
51
|
-
io-console (0.
|
52
|
-
irb (1.14.
|
56
|
+
io-console (0.8.0)
|
57
|
+
irb (1.14.3)
|
53
58
|
rdoc (>= 4.0.0)
|
54
59
|
reline (>= 0.4.2)
|
55
|
-
|
60
|
+
logger (1.6.4)
|
61
|
+
loofah (2.24.0)
|
56
62
|
crass (~> 1.0.2)
|
57
63
|
nokogiri (>= 1.12.0)
|
58
64
|
method_source (1.1.0)
|
59
|
-
minitest (5.25.
|
60
|
-
mutex_m (0.
|
61
|
-
nokogiri (1.
|
65
|
+
minitest (5.25.4)
|
66
|
+
mutex_m (0.3.0)
|
67
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
62
68
|
racc (~> 1.4)
|
63
|
-
nokogiri (1.
|
69
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
64
70
|
racc (~> 1.4)
|
65
|
-
nokogiri (1.
|
71
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
66
72
|
racc (~> 1.4)
|
67
|
-
|
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)
|
68
84
|
coderay (~> 1.1)
|
69
85
|
method_source (~> 1.0)
|
70
|
-
psych (5.
|
86
|
+
psych (5.2.2)
|
87
|
+
date
|
71
88
|
stringio
|
72
89
|
racc (1.8.1)
|
73
|
-
rack (3.1.
|
74
|
-
rack-session (2.
|
90
|
+
rack (3.1.8)
|
91
|
+
rack-session (2.1.0)
|
92
|
+
base64 (>= 0.1.0)
|
75
93
|
rack (>= 3.0.0)
|
76
|
-
rack-test (2.
|
94
|
+
rack-test (2.2.0)
|
77
95
|
rack (>= 1.3)
|
78
|
-
rackup (2.1
|
96
|
+
rackup (2.2.1)
|
79
97
|
rack (>= 3)
|
80
|
-
webrick (~> 1.8)
|
81
98
|
rails-dom-testing (2.2.0)
|
82
99
|
activesupport (>= 5.0.0)
|
83
100
|
minitest
|
84
101
|
nokogiri (>= 1.6)
|
85
|
-
rails-html-sanitizer (1.6.
|
102
|
+
rails-html-sanitizer (1.6.2)
|
86
103
|
loofah (~> 2.21)
|
87
|
-
nokogiri (
|
88
|
-
railties (7.1.
|
89
|
-
actionpack (= 7.1.
|
90
|
-
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)
|
91
108
|
irb
|
92
109
|
rackup (>= 1.0.0)
|
93
110
|
rake (>= 12.2)
|
94
111
|
thor (~> 1.0, >= 1.2.2)
|
95
112
|
zeitwerk (~> 2.6)
|
96
113
|
rake (13.2.1)
|
97
|
-
rdoc (6.
|
114
|
+
rdoc (6.10.0)
|
98
115
|
psych (>= 4.0.0)
|
99
|
-
reline (0.
|
116
|
+
reline (0.6.0)
|
100
117
|
io-console (~> 0.5)
|
101
118
|
rspec (3.13.0)
|
102
119
|
rspec-core (~> 3.13.0)
|
103
120
|
rspec-expectations (~> 3.13.0)
|
104
121
|
rspec-mocks (~> 3.13.0)
|
105
|
-
rspec-core (3.13.
|
122
|
+
rspec-core (3.13.2)
|
106
123
|
rspec-support (~> 3.13.0)
|
107
124
|
rspec-expectations (3.13.3)
|
108
125
|
diff-lcs (>= 1.2.0, < 2.0)
|
109
126
|
rspec-support (~> 3.13.0)
|
110
|
-
rspec-mocks (3.13.
|
127
|
+
rspec-mocks (3.13.2)
|
111
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
112
129
|
rspec-support (~> 3.13.0)
|
113
|
-
rspec-support (3.13.
|
130
|
+
rspec-support (3.13.2)
|
131
|
+
securerandom (0.4.1)
|
114
132
|
simplecov (0.22.0)
|
115
133
|
docile (~> 1.1)
|
116
134
|
simplecov-html (~> 0.11)
|
117
135
|
simplecov_json_formatter (~> 0.1)
|
118
136
|
simplecov-html (0.13.1)
|
119
137
|
simplecov_json_formatter (0.1.4)
|
120
|
-
stringio (3.1.
|
138
|
+
stringio (3.1.2)
|
121
139
|
thor (1.3.2)
|
122
140
|
tzinfo (2.0.6)
|
123
141
|
concurrent-ruby (~> 1.0)
|
124
142
|
unaccent (0.4.0)
|
125
|
-
|
126
|
-
zeitwerk (2.6.18)
|
143
|
+
zeitwerk (2.7.1)
|
127
144
|
|
128
145
|
PLATFORMS
|
129
|
-
|
130
|
-
|
131
|
-
|
146
|
+
aarch64-linux-gnu
|
147
|
+
aarch64-linux-musl
|
148
|
+
arm-linux-gnu
|
149
|
+
arm-linux-musl
|
150
|
+
arm64-darwin
|
151
|
+
x86_64-darwin
|
132
152
|
x86_64-linux
|
153
|
+
x86_64-linux-gnu
|
154
|
+
x86_64-linux-musl
|
133
155
|
|
134
156
|
DEPENDENCIES
|
135
157
|
actionpack (~> 7.1.0)
|
136
158
|
country_select!
|
137
|
-
nokogiri (~> 1.
|
159
|
+
nokogiri (~> 1.18)
|
138
160
|
pry (~> 0)
|
139
161
|
railties (~> 7.1.0)
|
140
162
|
rake (~> 13)
|
@@ -142,4 +164,4 @@ DEPENDENCIES
|
|
142
164
|
simplecov (~> 0.22)
|
143
165
|
|
144
166
|
BUNDLED WITH
|
145
|
-
2.
|
167
|
+
2.6.2
|
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
country_select (10.0.
|
4
|
+
country_select (10.0.1)
|
5
5
|
countries (> 5.0, < 8.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (7.2.1)
|
11
|
-
actionview (= 7.2.1)
|
12
|
-
activesupport (= 7.2.1)
|
10
|
+
actionpack (7.2.2.1)
|
11
|
+
actionview (= 7.2.2.1)
|
12
|
+
activesupport (= 7.2.2.1)
|
13
13
|
nokogiri (>= 1.8.5)
|
14
14
|
racc
|
15
15
|
rack (>= 2.2.4, < 3.2)
|
@@ -18,14 +18,15 @@ GEM
|
|
18
18
|
rails-dom-testing (~> 2.2)
|
19
19
|
rails-html-sanitizer (~> 1.6)
|
20
20
|
useragent (~> 0.16)
|
21
|
-
actionview (7.2.1)
|
22
|
-
activesupport (= 7.2.1)
|
21
|
+
actionview (7.2.2.1)
|
22
|
+
activesupport (= 7.2.2.1)
|
23
23
|
builder (~> 3.1)
|
24
24
|
erubi (~> 1.11)
|
25
25
|
rails-dom-testing (~> 2.2)
|
26
26
|
rails-html-sanitizer (~> 1.6)
|
27
|
-
activesupport (7.2.1)
|
27
|
+
activesupport (7.2.2.1)
|
28
28
|
base64
|
29
|
+
benchmark (>= 0.3)
|
29
30
|
bigdecimal
|
30
31
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
31
32
|
connection_pool (>= 2.2.5)
|
@@ -36,117 +37,134 @@ GEM
|
|
36
37
|
securerandom (>= 0.3)
|
37
38
|
tzinfo (~> 2.0, >= 2.0.5)
|
38
39
|
base64 (0.2.0)
|
39
|
-
|
40
|
+
benchmark (0.4.0)
|
41
|
+
bigdecimal (3.1.9)
|
40
42
|
builder (3.3.0)
|
41
43
|
coderay (1.1.3)
|
42
44
|
concurrent-ruby (1.3.4)
|
43
45
|
connection_pool (2.4.1)
|
44
|
-
countries (7.
|
46
|
+
countries (7.1.0)
|
45
47
|
unaccent (~> 0.3)
|
46
48
|
crass (1.0.6)
|
49
|
+
date (3.4.1)
|
47
50
|
diff-lcs (1.5.1)
|
48
51
|
docile (1.4.1)
|
49
52
|
drb (2.2.1)
|
50
|
-
erubi (1.13.
|
53
|
+
erubi (1.13.1)
|
51
54
|
i18n (1.14.6)
|
52
55
|
concurrent-ruby (~> 1.0)
|
53
|
-
io-console (0.
|
54
|
-
irb (1.14.
|
56
|
+
io-console (0.8.0)
|
57
|
+
irb (1.14.3)
|
55
58
|
rdoc (>= 4.0.0)
|
56
59
|
reline (>= 0.4.2)
|
57
|
-
logger (1.6.
|
58
|
-
loofah (2.
|
60
|
+
logger (1.6.4)
|
61
|
+
loofah (2.24.0)
|
59
62
|
crass (~> 1.0.2)
|
60
63
|
nokogiri (>= 1.12.0)
|
61
64
|
method_source (1.1.0)
|
62
|
-
|
63
|
-
|
65
|
+
mini_portile2 (2.8.8)
|
66
|
+
minitest (5.25.4)
|
67
|
+
nokogiri (1.18.1)
|
68
|
+
mini_portile2 (~> 2.8.2)
|
64
69
|
racc (~> 1.4)
|
65
|
-
nokogiri (1.
|
70
|
+
nokogiri (1.18.1-aarch64-linux-gnu)
|
66
71
|
racc (~> 1.4)
|
67
|
-
nokogiri (1.
|
72
|
+
nokogiri (1.18.1-aarch64-linux-musl)
|
68
73
|
racc (~> 1.4)
|
69
|
-
nokogiri (1.
|
74
|
+
nokogiri (1.18.1-arm-linux-gnu)
|
70
75
|
racc (~> 1.4)
|
71
|
-
nokogiri (1.
|
76
|
+
nokogiri (1.18.1-arm-linux-musl)
|
72
77
|
racc (~> 1.4)
|
73
|
-
nokogiri (1.
|
78
|
+
nokogiri (1.18.1-arm64-darwin)
|
74
79
|
racc (~> 1.4)
|
75
|
-
|
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)
|
76
87
|
coderay (~> 1.1)
|
77
88
|
method_source (~> 1.0)
|
78
|
-
psych (5.
|
89
|
+
psych (5.2.2)
|
90
|
+
date
|
79
91
|
stringio
|
80
92
|
racc (1.8.1)
|
81
|
-
rack (3.1.
|
82
|
-
rack-session (2.
|
93
|
+
rack (3.1.8)
|
94
|
+
rack-session (2.1.0)
|
95
|
+
base64 (>= 0.1.0)
|
83
96
|
rack (>= 3.0.0)
|
84
|
-
rack-test (2.
|
97
|
+
rack-test (2.2.0)
|
85
98
|
rack (>= 1.3)
|
86
|
-
rackup (2.1
|
99
|
+
rackup (2.2.1)
|
87
100
|
rack (>= 3)
|
88
|
-
webrick (~> 1.8)
|
89
101
|
rails-dom-testing (2.2.0)
|
90
102
|
activesupport (>= 5.0.0)
|
91
103
|
minitest
|
92
104
|
nokogiri (>= 1.6)
|
93
|
-
rails-html-sanitizer (1.6.
|
105
|
+
rails-html-sanitizer (1.6.2)
|
94
106
|
loofah (~> 2.21)
|
95
|
-
nokogiri (
|
96
|
-
railties (7.2.1)
|
97
|
-
actionpack (= 7.2.1)
|
98
|
-
activesupport (= 7.2.1)
|
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)
|
99
111
|
irb (~> 1.13)
|
100
112
|
rackup (>= 1.0.0)
|
101
113
|
rake (>= 12.2)
|
102
114
|
thor (~> 1.0, >= 1.2.2)
|
103
115
|
zeitwerk (~> 2.6)
|
104
116
|
rake (13.2.1)
|
105
|
-
rdoc (6.
|
117
|
+
rdoc (6.10.0)
|
106
118
|
psych (>= 4.0.0)
|
107
|
-
reline (0.
|
119
|
+
reline (0.6.0)
|
108
120
|
io-console (~> 0.5)
|
109
121
|
rspec (3.13.0)
|
110
122
|
rspec-core (~> 3.13.0)
|
111
123
|
rspec-expectations (~> 3.13.0)
|
112
124
|
rspec-mocks (~> 3.13.0)
|
113
|
-
rspec-core (3.13.
|
125
|
+
rspec-core (3.13.2)
|
114
126
|
rspec-support (~> 3.13.0)
|
115
127
|
rspec-expectations (3.13.3)
|
116
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
117
129
|
rspec-support (~> 3.13.0)
|
118
|
-
rspec-mocks (3.13.
|
130
|
+
rspec-mocks (3.13.2)
|
119
131
|
diff-lcs (>= 1.2.0, < 2.0)
|
120
132
|
rspec-support (~> 3.13.0)
|
121
|
-
rspec-support (3.13.
|
122
|
-
securerandom (0.
|
133
|
+
rspec-support (3.13.2)
|
134
|
+
securerandom (0.4.1)
|
123
135
|
simplecov (0.22.0)
|
124
136
|
docile (~> 1.1)
|
125
137
|
simplecov-html (~> 0.11)
|
126
138
|
simplecov_json_formatter (~> 0.1)
|
127
139
|
simplecov-html (0.13.1)
|
128
140
|
simplecov_json_formatter (0.1.4)
|
129
|
-
stringio (3.1.
|
141
|
+
stringio (3.1.2)
|
130
142
|
thor (1.3.2)
|
131
143
|
tzinfo (2.0.6)
|
132
144
|
concurrent-ruby (~> 1.0)
|
133
145
|
unaccent (0.4.0)
|
134
|
-
useragent (0.16.
|
135
|
-
|
136
|
-
zeitwerk (2.6.18)
|
146
|
+
useragent (0.16.11)
|
147
|
+
zeitwerk (2.7.1)
|
137
148
|
|
138
149
|
PLATFORMS
|
139
150
|
aarch64-linux
|
151
|
+
aarch64-linux-gnu
|
152
|
+
aarch64-linux-musl
|
140
153
|
arm-linux
|
154
|
+
arm-linux-gnu
|
155
|
+
arm-linux-musl
|
141
156
|
arm64-darwin
|
157
|
+
ruby
|
142
158
|
x86-linux
|
143
159
|
x86_64-darwin
|
144
160
|
x86_64-linux
|
161
|
+
x86_64-linux-gnu
|
162
|
+
x86_64-linux-musl
|
145
163
|
|
146
164
|
DEPENDENCIES
|
147
165
|
actionpack (~> 7.2.0)
|
148
166
|
country_select!
|
149
|
-
nokogiri (~> 1.
|
167
|
+
nokogiri (~> 1.18)
|
150
168
|
pry (~> 0)
|
151
169
|
railties (~> 7.2.0)
|
152
170
|
rake (~> 13)
|
@@ -154,4 +172,4 @@ DEPENDENCIES
|
|
154
172
|
simplecov (~> 0.22)
|
155
173
|
|
156
174
|
BUNDLED WITH
|
157
|
-
2.
|
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
|
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: 10.0.
|
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
|
@@ -124,14 +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
|
133
130
|
- gemfiles/actionpack-7.2.gemfile
|
134
131
|
- gemfiles/actionpack-7.2.gemfile.lock
|
132
|
+
- gemfiles/actionpack-8.0.gemfile
|
133
|
+
- gemfiles/actionpack-8.0.gemfile.lock
|
135
134
|
- lib/country_select.rb
|
136
135
|
- lib/country_select/country_select_helper.rb
|
137
136
|
- lib/country_select/defaults.rb
|
@@ -148,7 +147,6 @@ metadata:
|
|
148
147
|
changelog_uri: https://github.com/countries/country_select/blob/master/CHANGELOG.md
|
149
148
|
source_code_uri: https://github.com/countries/country_select
|
150
149
|
rubygems_mfa_required: 'true'
|
151
|
-
post_install_message:
|
152
150
|
rdoc_options: []
|
153
151
|
require_paths:
|
154
152
|
- lib
|
@@ -163,8 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
161
|
- !ruby/object:Gem::Version
|
164
162
|
version: '0'
|
165
163
|
requirements: []
|
166
|
-
rubygems_version: 3.
|
167
|
-
signing_key:
|
164
|
+
rubygems_version: 3.6.2
|
168
165
|
specification_version: 4
|
169
166
|
summary: Country Select Plugin
|
170
167
|
test_files: []
|
@@ -1,111 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
country_select (10.0.0)
|
5
|
-
countries (> 5.0, < 8.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actionpack (6.1.7.8)
|
11
|
-
actionview (= 6.1.7.8)
|
12
|
-
activesupport (= 6.1.7.8)
|
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.8)
|
18
|
-
activesupport (= 6.1.7.8)
|
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.8)
|
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.3.0)
|
30
|
-
coderay (1.1.3)
|
31
|
-
concurrent-ruby (1.3.4)
|
32
|
-
countries (7.0.0)
|
33
|
-
unaccent (~> 0.3)
|
34
|
-
crass (1.0.6)
|
35
|
-
diff-lcs (1.5.1)
|
36
|
-
docile (1.4.1)
|
37
|
-
erubi (1.13.0)
|
38
|
-
i18n (1.14.6)
|
39
|
-
concurrent-ruby (~> 1.0)
|
40
|
-
loofah (2.22.0)
|
41
|
-
crass (~> 1.0.2)
|
42
|
-
nokogiri (>= 1.12.0)
|
43
|
-
method_source (1.1.0)
|
44
|
-
mini_portile2 (2.8.7)
|
45
|
-
minitest (5.25.1)
|
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.8.1)
|
53
|
-
rack (2.2.9)
|
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.8)
|
63
|
-
actionpack (= 6.1.7.8)
|
64
|
-
activesupport (= 6.1.7.8)
|
65
|
-
method_source
|
66
|
-
rake (>= 12.2)
|
67
|
-
thor (~> 1.0)
|
68
|
-
rake (13.2.1)
|
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.1)
|
74
|
-
rspec-support (~> 3.13.0)
|
75
|
-
rspec-expectations (3.13.3)
|
76
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.13.0)
|
78
|
-
rspec-mocks (3.13.1)
|
79
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.13.0)
|
81
|
-
rspec-support (3.13.1)
|
82
|
-
simplecov (0.22.0)
|
83
|
-
docile (~> 1.1)
|
84
|
-
simplecov-html (~> 0.11)
|
85
|
-
simplecov_json_formatter (~> 0.1)
|
86
|
-
simplecov-html (0.13.1)
|
87
|
-
simplecov_json_formatter (0.1.4)
|
88
|
-
thor (1.3.2)
|
89
|
-
tzinfo (2.0.6)
|
90
|
-
concurrent-ruby (~> 1.0)
|
91
|
-
unaccent (0.4.0)
|
92
|
-
zeitwerk (2.6.18)
|
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.5.18
|