country_select 2.1.1 → 8.0.1
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 +5 -5
- data/.github/workflows/build.yml +25 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/CHANGELOG.md +93 -0
- data/Gemfile +0 -6
- data/Gemfile.lock +74 -271
- data/README.md +89 -11
- data/Rakefile +29 -3
- data/country_select.gemspec +10 -7
- data/gemfiles/actionpack-5.2.gemfile +7 -0
- data/gemfiles/actionpack-5.2.gemfile.lock +99 -0
- data/gemfiles/actionpack-6.0.gemfile +7 -0
- data/gemfiles/actionpack-6.0.gemfile.lock +101 -0
- data/gemfiles/actionpack-6.1.gemfile +7 -0
- data/gemfiles/actionpack-6.1.gemfile.lock +100 -0
- data/gemfiles/actionpack-7.0.gemfile +7 -0
- data/gemfiles/actionpack-7.0.gemfile.lock +100 -0
- data/lib/country_select/country_select_helper.rb +5 -0
- data/lib/country_select/defaults.rb +11 -0
- data/lib/country_select/formats.rb +3 -1
- data/lib/country_select/tag_helper.rb +44 -28
- data/lib/country_select/version.rb +1 -1
- data/lib/country_select.rb +3 -7
- data/spec/country_select_spec.rb +184 -17
- metadata +35 -54
- data/.travis.yml +0 -22
- data/gemfiles/actionpack.edge.gemfile +0 -15
- data/gemfiles/actionpack.edge.gemfile.lock +0 -303
- data/gemfiles/actionpack3.2.gemfile +0 -11
- data/gemfiles/actionpack3.2.gemfile.lock +0 -286
- data/gemfiles/actionpack4.0.gemfile +0 -11
- data/gemfiles/actionpack4.0.gemfile.lock +0 -275
- data/gemfiles/actionpack4.1.gemfile +0 -11
- data/gemfiles/actionpack4.1.gemfile.lock +0 -279
- data/gemfiles/actionpack4.2.gemfile +0 -12
- data/gemfiles/actionpack4.2.gemfile.lock +0 -299
- data/lib/country_select/rails3/country_select_helper.rb +0 -39
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 674674f152073e1e9b8834bbe5bf012c704ac9f128c664a2b2b46891081bc502
|
4
|
+
data.tar.gz: 9b0670886ec8b5ad3961c446adf4a9a4497e5edbeb1822c7c5cb94fbf6694a04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd10c341e06f4f72318446e7f8115cf63da4800d2314955c755fab4f0328b53cecdf784385011d55c45edec12bca5d2929c7dd4f21605e46c10227db1d17871e
|
7
|
+
data.tar.gz: 93c7f859aada39e88724fed5a6b508bc84155191a168b1a007c0478b01339faf831752e5c22b25d3ddf98c3c5211e5b35bfd691581818e7e0edcb89ab88e765c
|
@@ -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, 3.2]
|
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@v3
|
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,96 @@
|
|
1
|
+
## 8.0.1 2023-01-03
|
2
|
+
|
3
|
+
* Update README.md by (@ron-shinall)
|
4
|
+
* Update installation instructions by (@henrik)
|
5
|
+
* Fix deprecated File.exists? on ruby 3.2.0 by (@JNajera212)
|
6
|
+
* Fix priority country sorting bug by (@pmor)
|
7
|
+
* Update countries gem to 5.3.0 (@pmor)
|
8
|
+
|
9
|
+
## 8.0.0 2022-06-30
|
10
|
+
|
11
|
+
* Update countries gem to 5.1.0 (@pmor)
|
12
|
+
* Add deprecation warning for old priority country syntax (@pmor)
|
13
|
+
* Allow option to preserve the sort order as inputted in the `only` array of countries (@pmor)
|
14
|
+
* Remove `sort_alphabetical` dependency (@pmor)
|
15
|
+
|
16
|
+
## 7.0.0 2022-04-03
|
17
|
+
|
18
|
+
* #200 - Drop support for Ruby 2.5 and 2.6 (@pmor)
|
19
|
+
* #201 - Upgrade countries gem to 5.0.0 (@pmor)
|
20
|
+
|
21
|
+
## 6.1.1 2022-01-20
|
22
|
+
|
23
|
+
* #195 - Fix deprecation warning on find_by_name (@filipemendespi)
|
24
|
+
|
25
|
+
## 6.1.0 2022-01-16
|
26
|
+
|
27
|
+
* #190 - Upgrade to countries 4.2 (@pmor)
|
28
|
+
* #191 - Add Rails 7 + Ruby 3.1 to build (@scudco)
|
29
|
+
|
30
|
+
## 6.0.0 2021-06-28
|
31
|
+
|
32
|
+
* #186 - Upgrade to countries 4.0.0 (@pmor)
|
33
|
+
|
34
|
+
## 5.1.0 2021-05-18
|
35
|
+
|
36
|
+
* #184 - Add ability to configure defaults (@p-wall)
|
37
|
+
* Upgrade to countries 3.1.0
|
38
|
+
|
39
|
+
## 5.0.1 2021-03-08
|
40
|
+
|
41
|
+
* #181 - Fix i18n fallback in country translations (@lavaturtle)
|
42
|
+
|
43
|
+
## 5.0.0 2021-03-04
|
44
|
+
|
45
|
+
* #164,#172 - Remove support for EOL versions of Ruby and Ruby on Rails
|
46
|
+
* Ruby >= 2.5, Rails >= 5.2
|
47
|
+
* #175 - Add Rails 6.1 Support *(@andrehjr)
|
48
|
+
* #173 - Fallback even if translations cannot be loaded (@mikepluquin)
|
49
|
+
* #164 - Fixup travis build matrix (@olleolleolle)
|
50
|
+
|
51
|
+
## 4.0.0 2018-12-20
|
52
|
+
|
53
|
+
* #160 - Upgrade to countries 3.0 - @gssbzn
|
54
|
+
* https://github.com/hexorx/countries/blob/master/CHANGELOG.md#v220-yanked-and-re-released-as-300-20181217-1020-0000
|
55
|
+
|
56
|
+
## 3.1.1 2017-09-20
|
57
|
+
|
58
|
+
* #146 - Fix value call on Rails edge (5.2+) - @ybart
|
59
|
+
|
60
|
+
## 3.1.0 2017-07-18
|
61
|
+
|
62
|
+
* #144 - Provide a possibility to opt out of `sort_alphabetical` - @fschwahn
|
63
|
+
|
64
|
+
## 3.0.0 2016-11-25
|
65
|
+
|
66
|
+
* #138 - Upgrade to Countries 2.0
|
67
|
+
* #136 - Drop support for Ruby 1.9.3 as countries 2.0 no longer supports it
|
68
|
+
|
69
|
+
## 2.5.2 2015-11-10
|
70
|
+
|
71
|
+
* #127 - Fix multi-selects - @jjballano
|
72
|
+
|
73
|
+
## 2.5.1 2015-11-10
|
74
|
+
|
75
|
+
* #118 - Fix bad require of countries gem that caused issues if you
|
76
|
+
already had a `Country` class
|
77
|
+
|
78
|
+
## 2.5.0 2015-11-06
|
79
|
+
|
80
|
+
* #117 - Update countries gem to ~> v1.2.0
|
81
|
+
|
82
|
+
## 2.4.0 2015-08-25
|
83
|
+
|
84
|
+
* #111 - Update countries gem to ~> v1.1.0
|
85
|
+
|
86
|
+
## 2.3.0 2015-08-25
|
87
|
+
|
88
|
+
* #107,#108 - Update countries gem to ~> v1.0.0
|
89
|
+
|
90
|
+
## 2.2.0 2015-03-19
|
91
|
+
|
92
|
+
* #101 - Update countries gem to ~> v0.11.0
|
93
|
+
|
1
94
|
## 2.1.1 2015-02-02
|
2
95
|
|
3
96
|
* #94 - Prevent usage of countries v0.10.0 due to poor performance
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,286 +1,89 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
country_select (
|
5
|
-
countries (
|
4
|
+
country_select (8.0.1)
|
5
|
+
countries (~> 5.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (
|
11
|
-
|
12
|
-
activesupport (=
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
activesupport (
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
10
|
+
actionpack (7.0.4)
|
11
|
+
actionview (= 7.0.4)
|
12
|
+
activesupport (= 7.0.4)
|
13
|
+
rack (~> 2.0, >= 2.2.0)
|
14
|
+
rack-test (>= 0.6.3)
|
15
|
+
rails-dom-testing (~> 2.0)
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
+
actionview (7.0.4)
|
18
|
+
activesupport (= 7.0.4)
|
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 (7.0.4)
|
24
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
|
+
i18n (>= 1.6, < 2)
|
26
|
+
minitest (>= 5.1)
|
27
|
+
tzinfo (~> 2.0)
|
28
|
+
builder (3.2.4)
|
29
|
+
coderay (1.1.3)
|
30
|
+
concurrent-ruby (1.1.10)
|
31
|
+
countries (5.3.0)
|
32
|
+
unaccent (~> 0.3)
|
33
|
+
crass (1.0.6)
|
34
|
+
diff-lcs (1.5.0)
|
35
|
+
erubi (1.12.0)
|
36
|
+
i18n (1.12.0)
|
37
|
+
concurrent-ruby (~> 1.0)
|
38
|
+
loofah (2.19.1)
|
39
|
+
crass (~> 1.0.2)
|
40
|
+
nokogiri (>= 1.5.9)
|
41
|
+
method_source (1.0.0)
|
42
|
+
minitest (5.17.0)
|
43
|
+
nokogiri (1.14.0.rc1-x86_64-darwin)
|
44
|
+
racc (~> 1.4)
|
45
|
+
nokogiri (1.14.0.rc1-x86_64-linux)
|
46
|
+
racc (~> 1.4)
|
47
|
+
pry (0.14.1)
|
48
|
+
coderay (~> 1.1)
|
49
|
+
method_source (~> 1.0)
|
50
|
+
racc (1.6.2)
|
51
|
+
rack (2.2.5)
|
52
|
+
rack-test (2.0.2)
|
53
|
+
rack (>= 1.3)
|
54
|
+
rails-dom-testing (2.0.3)
|
55
|
+
activesupport (>= 4.2.0)
|
56
|
+
nokogiri (>= 1.6)
|
57
|
+
rails-html-sanitizer (1.4.4)
|
58
|
+
loofah (~> 2.19, >= 2.19.1)
|
59
|
+
rake (13.0.6)
|
60
|
+
rspec (3.12.0)
|
61
|
+
rspec-core (~> 3.12.0)
|
62
|
+
rspec-expectations (~> 3.12.0)
|
63
|
+
rspec-mocks (~> 3.12.0)
|
64
|
+
rspec-core (3.12.0)
|
65
|
+
rspec-support (~> 3.12.0)
|
66
|
+
rspec-expectations (3.12.1)
|
58
67
|
diff-lcs (>= 1.2.0, < 2.0)
|
59
|
-
rspec-support (~> 3.
|
60
|
-
rspec-mocks (3.1
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
rubysl-bigdecimal (~> 2.0)
|
68
|
-
rubysl-cgi (~> 2.0)
|
69
|
-
rubysl-cgi-session (~> 2.0)
|
70
|
-
rubysl-cmath (~> 2.0)
|
71
|
-
rubysl-complex (~> 2.0)
|
72
|
-
rubysl-continuation (~> 2.0)
|
73
|
-
rubysl-coverage (~> 2.0)
|
74
|
-
rubysl-csv (~> 2.0)
|
75
|
-
rubysl-curses (~> 2.0)
|
76
|
-
rubysl-date (~> 2.0)
|
77
|
-
rubysl-delegate (~> 2.0)
|
78
|
-
rubysl-digest (~> 2.0)
|
79
|
-
rubysl-drb (~> 2.0)
|
80
|
-
rubysl-e2mmap (~> 2.0)
|
81
|
-
rubysl-english (~> 2.0)
|
82
|
-
rubysl-enumerator (~> 2.0)
|
83
|
-
rubysl-erb (~> 2.0)
|
84
|
-
rubysl-etc (~> 2.0)
|
85
|
-
rubysl-expect (~> 2.0)
|
86
|
-
rubysl-fcntl (~> 2.0)
|
87
|
-
rubysl-fiber (~> 2.0)
|
88
|
-
rubysl-fileutils (~> 2.0)
|
89
|
-
rubysl-find (~> 2.0)
|
90
|
-
rubysl-forwardable (~> 2.0)
|
91
|
-
rubysl-getoptlong (~> 2.0)
|
92
|
-
rubysl-gserver (~> 2.0)
|
93
|
-
rubysl-io-console (~> 2.0)
|
94
|
-
rubysl-io-nonblock (~> 2.0)
|
95
|
-
rubysl-io-wait (~> 2.0)
|
96
|
-
rubysl-ipaddr (~> 2.0)
|
97
|
-
rubysl-irb (~> 2.0)
|
98
|
-
rubysl-logger (~> 2.0)
|
99
|
-
rubysl-mathn (~> 2.0)
|
100
|
-
rubysl-matrix (~> 2.0)
|
101
|
-
rubysl-mkmf (~> 2.0)
|
102
|
-
rubysl-monitor (~> 2.0)
|
103
|
-
rubysl-mutex_m (~> 2.0)
|
104
|
-
rubysl-net-ftp (~> 2.0)
|
105
|
-
rubysl-net-http (~> 2.0)
|
106
|
-
rubysl-net-imap (~> 2.0)
|
107
|
-
rubysl-net-pop (~> 2.0)
|
108
|
-
rubysl-net-protocol (~> 2.0)
|
109
|
-
rubysl-net-smtp (~> 2.0)
|
110
|
-
rubysl-net-telnet (~> 2.0)
|
111
|
-
rubysl-nkf (~> 2.0)
|
112
|
-
rubysl-observer (~> 2.0)
|
113
|
-
rubysl-open-uri (~> 2.0)
|
114
|
-
rubysl-open3 (~> 2.0)
|
115
|
-
rubysl-openssl (~> 2.0)
|
116
|
-
rubysl-optparse (~> 2.0)
|
117
|
-
rubysl-ostruct (~> 2.0)
|
118
|
-
rubysl-pathname (~> 2.0)
|
119
|
-
rubysl-prettyprint (~> 2.0)
|
120
|
-
rubysl-prime (~> 2.0)
|
121
|
-
rubysl-profile (~> 2.0)
|
122
|
-
rubysl-profiler (~> 2.0)
|
123
|
-
rubysl-pstore (~> 2.0)
|
124
|
-
rubysl-pty (~> 2.0)
|
125
|
-
rubysl-rational (~> 2.0)
|
126
|
-
rubysl-readline (~> 2.0)
|
127
|
-
rubysl-resolv (~> 2.0)
|
128
|
-
rubysl-rexml (~> 2.0)
|
129
|
-
rubysl-rinda (~> 2.0)
|
130
|
-
rubysl-rss (~> 2.0)
|
131
|
-
rubysl-scanf (~> 2.0)
|
132
|
-
rubysl-securerandom (~> 2.0)
|
133
|
-
rubysl-set (~> 2.0)
|
134
|
-
rubysl-shellwords (~> 2.0)
|
135
|
-
rubysl-singleton (~> 2.0)
|
136
|
-
rubysl-socket (~> 2.0)
|
137
|
-
rubysl-stringio (~> 2.0)
|
138
|
-
rubysl-strscan (~> 2.0)
|
139
|
-
rubysl-sync (~> 2.0)
|
140
|
-
rubysl-syslog (~> 2.0)
|
141
|
-
rubysl-tempfile (~> 2.0)
|
142
|
-
rubysl-thread (~> 2.0)
|
143
|
-
rubysl-thwait (~> 2.0)
|
144
|
-
rubysl-time (~> 2.0)
|
145
|
-
rubysl-timeout (~> 2.0)
|
146
|
-
rubysl-tmpdir (~> 2.0)
|
147
|
-
rubysl-tsort (~> 2.0)
|
148
|
-
rubysl-un (~> 2.0)
|
149
|
-
rubysl-uri (~> 2.0)
|
150
|
-
rubysl-weakref (~> 2.0)
|
151
|
-
rubysl-webrick (~> 2.0)
|
152
|
-
rubysl-xmlrpc (~> 2.0)
|
153
|
-
rubysl-yaml (~> 2.0)
|
154
|
-
rubysl-zlib (~> 2.0)
|
155
|
-
rubysl-abbrev (2.0.4)
|
156
|
-
rubysl-base64 (2.0.0)
|
157
|
-
rubysl-benchmark (2.0.1)
|
158
|
-
rubysl-bigdecimal (2.0.2)
|
159
|
-
rubysl-cgi (2.0.1)
|
160
|
-
rubysl-cgi-session (2.0.1)
|
161
|
-
rubysl-cmath (2.0.0)
|
162
|
-
rubysl-complex (2.0.0)
|
163
|
-
rubysl-continuation (2.0.0)
|
164
|
-
rubysl-coverage (2.0.3)
|
165
|
-
rubysl-csv (2.0.2)
|
166
|
-
rubysl-english (~> 2.0)
|
167
|
-
rubysl-curses (2.0.1)
|
168
|
-
rubysl-date (2.0.8)
|
169
|
-
rubysl-delegate (2.0.1)
|
170
|
-
rubysl-digest (2.0.3)
|
171
|
-
rubysl-drb (2.0.1)
|
172
|
-
rubysl-e2mmap (2.0.0)
|
173
|
-
rubysl-english (2.0.0)
|
174
|
-
rubysl-enumerator (2.0.0)
|
175
|
-
rubysl-erb (2.0.1)
|
176
|
-
rubysl-etc (2.0.3)
|
177
|
-
ffi2-generators (~> 0.1)
|
178
|
-
rubysl-expect (2.0.0)
|
179
|
-
rubysl-fcntl (2.0.4)
|
180
|
-
ffi2-generators (~> 0.1)
|
181
|
-
rubysl-fiber (2.0.0)
|
182
|
-
rubysl-fileutils (2.0.3)
|
183
|
-
rubysl-find (2.0.1)
|
184
|
-
rubysl-forwardable (2.0.1)
|
185
|
-
rubysl-getoptlong (2.0.0)
|
186
|
-
rubysl-gserver (2.0.0)
|
187
|
-
rubysl-socket (~> 2.0)
|
188
|
-
rubysl-thread (~> 2.0)
|
189
|
-
rubysl-io-console (2.0.0)
|
190
|
-
rubysl-io-nonblock (2.0.0)
|
191
|
-
rubysl-io-wait (2.0.0)
|
192
|
-
rubysl-ipaddr (2.0.0)
|
193
|
-
rubysl-irb (2.0.4)
|
194
|
-
rubysl-e2mmap (~> 2.0)
|
195
|
-
rubysl-mathn (~> 2.0)
|
196
|
-
rubysl-readline (~> 2.0)
|
197
|
-
rubysl-thread (~> 2.0)
|
198
|
-
rubysl-logger (2.0.0)
|
199
|
-
rubysl-mathn (2.0.0)
|
200
|
-
rubysl-matrix (2.1.0)
|
201
|
-
rubysl-e2mmap (~> 2.0)
|
202
|
-
rubysl-mkmf (2.0.1)
|
203
|
-
rubysl-fileutils (~> 2.0)
|
204
|
-
rubysl-shellwords (~> 2.0)
|
205
|
-
rubysl-monitor (2.0.0)
|
206
|
-
rubysl-mutex_m (2.0.0)
|
207
|
-
rubysl-net-ftp (2.0.1)
|
208
|
-
rubysl-net-http (2.0.4)
|
209
|
-
rubysl-cgi (~> 2.0)
|
210
|
-
rubysl-erb (~> 2.0)
|
211
|
-
rubysl-singleton (~> 2.0)
|
212
|
-
rubysl-net-imap (2.0.1)
|
213
|
-
rubysl-net-pop (2.0.1)
|
214
|
-
rubysl-net-protocol (2.0.1)
|
215
|
-
rubysl-net-smtp (2.0.1)
|
216
|
-
rubysl-net-telnet (2.0.0)
|
217
|
-
rubysl-nkf (2.0.1)
|
218
|
-
rubysl-observer (2.0.0)
|
219
|
-
rubysl-open-uri (2.0.0)
|
220
|
-
rubysl-open3 (2.0.0)
|
221
|
-
rubysl-openssl (2.1.0)
|
222
|
-
rubysl-optparse (2.0.1)
|
223
|
-
rubysl-shellwords (~> 2.0)
|
224
|
-
rubysl-ostruct (2.0.4)
|
225
|
-
rubysl-pathname (2.0.0)
|
226
|
-
rubysl-prettyprint (2.0.3)
|
227
|
-
rubysl-prime (2.0.1)
|
228
|
-
rubysl-profile (2.0.0)
|
229
|
-
rubysl-profiler (2.0.1)
|
230
|
-
rubysl-pstore (2.0.0)
|
231
|
-
rubysl-pty (2.0.2)
|
232
|
-
rubysl-rational (2.0.1)
|
233
|
-
rubysl-readline (2.0.2)
|
234
|
-
rubysl-resolv (2.1.0)
|
235
|
-
rubysl-rexml (2.0.2)
|
236
|
-
rubysl-rinda (2.0.1)
|
237
|
-
rubysl-rss (2.0.0)
|
238
|
-
rubysl-scanf (2.0.0)
|
239
|
-
rubysl-securerandom (2.0.0)
|
240
|
-
rubysl-set (2.0.1)
|
241
|
-
rubysl-shellwords (2.0.0)
|
242
|
-
rubysl-singleton (2.0.0)
|
243
|
-
rubysl-socket (2.0.1)
|
244
|
-
rubysl-stringio (2.0.0)
|
245
|
-
rubysl-strscan (2.0.0)
|
246
|
-
rubysl-sync (2.0.0)
|
247
|
-
rubysl-syslog (2.0.1)
|
248
|
-
ffi2-generators (~> 0.1)
|
249
|
-
rubysl-tempfile (2.0.1)
|
250
|
-
rubysl-thread (2.0.2)
|
251
|
-
rubysl-thwait (2.0.0)
|
252
|
-
rubysl-time (2.0.3)
|
253
|
-
rubysl-timeout (2.0.0)
|
254
|
-
rubysl-tmpdir (2.0.1)
|
255
|
-
rubysl-tsort (2.0.1)
|
256
|
-
rubysl-un (2.0.0)
|
257
|
-
rubysl-fileutils (~> 2.0)
|
258
|
-
rubysl-optparse (~> 2.0)
|
259
|
-
rubysl-uri (2.0.0)
|
260
|
-
rubysl-weakref (2.0.0)
|
261
|
-
rubysl-webrick (2.0.0)
|
262
|
-
rubysl-xmlrpc (2.0.0)
|
263
|
-
rubysl-yaml (2.0.4)
|
264
|
-
rubysl-zlib (2.0.1)
|
265
|
-
slop (3.6.0)
|
266
|
-
sprockets (2.2.2)
|
267
|
-
hike (~> 1.2)
|
268
|
-
multi_json (~> 1.0)
|
269
|
-
rack (~> 1.0)
|
270
|
-
tilt (~> 1.1, != 1.3.0)
|
271
|
-
tilt (1.4.1)
|
272
|
-
wwtd (0.5.5)
|
68
|
+
rspec-support (~> 3.12.0)
|
69
|
+
rspec-mocks (3.12.1)
|
70
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
71
|
+
rspec-support (~> 3.12.0)
|
72
|
+
rspec-support (3.12.0)
|
73
|
+
tzinfo (2.0.5)
|
74
|
+
concurrent-ruby (~> 1.0)
|
75
|
+
unaccent (0.4.0)
|
273
76
|
|
274
77
|
PLATFORMS
|
275
|
-
|
78
|
+
x86_64-darwin-22
|
79
|
+
x86_64-linux
|
276
80
|
|
277
81
|
DEPENDENCIES
|
278
|
-
actionpack (~>
|
82
|
+
actionpack (~> 7.0)
|
279
83
|
country_select!
|
280
84
|
pry (~> 0)
|
281
|
-
|
282
|
-
racc
|
283
|
-
rake
|
85
|
+
rake (~> 13)
|
284
86
|
rspec (~> 3)
|
285
|
-
|
286
|
-
|
87
|
+
|
88
|
+
BUNDLED WITH
|
89
|
+
2.4.2
|