country_select 6.1.1 → 8.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca4f63875164172c98c1b54c7c4aef325ab363a0d8e863fcb49b2878320dfca5
4
- data.tar.gz: 6b5830267c05073fd5aa040894e6d0405777112d598260efabc29fee8ae5c44d
3
+ metadata.gz: 674674f152073e1e9b8834bbe5bf012c704ac9f128c664a2b2b46891081bc502
4
+ data.tar.gz: 9b0670886ec8b5ad3961c446adf4a9a4497e5edbeb1822c7c5cb94fbf6694a04
5
5
  SHA512:
6
- metadata.gz: d749348579f486f25978eb5dce669bc316e7741061ed2296bf1ff6be7ca42a2a13a8d746b51bc36fb229570b61374296b7e15cd8c553d3468c47bd5d7b06c44a
7
- data.tar.gz: 683b72dffbe2de310f34be6b220f5773d70a196f11e8a1e0da639d7c19f5cc26fe4893502c339246984c4cdfbad30ac10cea202b95d0e6dcf343d845ad3843e5
6
+ metadata.gz: bd10c341e06f4f72318446e7f8115cf63da4800d2314955c755fab4f0328b53cecdf784385011d55c45edec12bca5d2929c7dd4f21605e46c10227db1d17871e
7
+ data.tar.gz: 93c7f859aada39e88724fed5a6b508bc84155191a168b1a007c0478b01339faf831752e5c22b25d3ddf98c3c5211e5b35bfd691581818e7e0edcb89ab88e765c
@@ -12,17 +12,12 @@ jobs:
12
12
  strategy:
13
13
  fail-fast: false
14
14
  matrix:
15
- ruby: [2.6, 2.7, '3.0', 3.1]
15
+ ruby: [2.7, '3.0', 3.1, 3.2]
16
16
  gemfile: [5.2, '6.0', 6.1, '7.0']
17
- exclude:
18
- - ruby: 2.6
19
- gemfile: head
20
- - ruby: 2.6
21
- gemfile: '7.0'
22
17
  env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
23
18
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/actionpack-${{ matrix.gemfile }}.gemfile
24
19
  steps:
25
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v3
26
21
  - uses: ruby/setup-ruby@v1
27
22
  with:
28
23
  ruby-version: ${{ matrix.ruby }}
@@ -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,23 @@
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
+
1
21
  ## 6.1.1 2022-01-20
2
22
 
3
23
  * #195 - Fix deprecation warning on find_by_name (@filipemendespi)
data/Gemfile.lock CHANGED
@@ -1,91 +1,81 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- country_select (6.1.1)
5
- countries (~> 4.2)
6
- sort_alphabetical (~> 1.1)
4
+ country_select (8.0.1)
5
+ countries (~> 5.0)
7
6
 
8
7
  GEM
9
8
  remote: https://rubygems.org/
10
9
  specs:
11
- actionpack (7.0.1)
12
- actionview (= 7.0.1)
13
- activesupport (= 7.0.1)
10
+ actionpack (7.0.4)
11
+ actionview (= 7.0.4)
12
+ activesupport (= 7.0.4)
14
13
  rack (~> 2.0, >= 2.2.0)
15
14
  rack-test (>= 0.6.3)
16
15
  rails-dom-testing (~> 2.0)
17
16
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (7.0.1)
19
- activesupport (= 7.0.1)
17
+ actionview (7.0.4)
18
+ activesupport (= 7.0.4)
20
19
  builder (~> 3.1)
21
20
  erubi (~> 1.4)
22
21
  rails-dom-testing (~> 2.0)
23
22
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activesupport (7.0.1)
23
+ activesupport (7.0.4)
25
24
  concurrent-ruby (~> 1.0, >= 1.0.2)
26
25
  i18n (>= 1.6, < 2)
27
26
  minitest (>= 5.1)
28
27
  tzinfo (~> 2.0)
29
28
  builder (3.2.4)
30
29
  coderay (1.1.3)
31
- concurrent-ruby (1.1.9)
32
- countries (4.2.1)
33
- i18n_data (~> 0.15.0)
34
- sixarm_ruby_unaccent (~> 1.1)
30
+ concurrent-ruby (1.1.10)
31
+ countries (5.3.0)
32
+ unaccent (~> 0.3)
35
33
  crass (1.0.6)
36
34
  diff-lcs (1.5.0)
37
- erubi (1.10.0)
38
- i18n (1.8.11)
35
+ erubi (1.12.0)
36
+ i18n (1.12.0)
39
37
  concurrent-ruby (~> 1.0)
40
- i18n_data (0.15.0)
41
- simple_po_parser (~> 1.1)
42
- loofah (2.13.0)
38
+ loofah (2.19.1)
43
39
  crass (~> 1.0.2)
44
40
  nokogiri (>= 1.5.9)
45
41
  method_source (1.0.0)
46
- mini_portile2 (2.7.1)
47
- minitest (5.15.0)
48
- nokogiri (1.13.1)
49
- mini_portile2 (~> 2.7.0)
42
+ minitest (5.17.0)
43
+ nokogiri (1.14.0.rc1-x86_64-darwin)
50
44
  racc (~> 1.4)
51
- nokogiri (1.13.1-x86_64-linux)
45
+ nokogiri (1.14.0.rc1-x86_64-linux)
52
46
  racc (~> 1.4)
53
47
  pry (0.14.1)
54
48
  coderay (~> 1.1)
55
49
  method_source (~> 1.0)
56
- racc (1.6.0)
57
- rack (2.2.3)
58
- rack-test (1.1.0)
59
- rack (>= 1.0, < 3)
50
+ racc (1.6.2)
51
+ rack (2.2.5)
52
+ rack-test (2.0.2)
53
+ rack (>= 1.3)
60
54
  rails-dom-testing (2.0.3)
61
55
  activesupport (>= 4.2.0)
62
56
  nokogiri (>= 1.6)
63
- rails-html-sanitizer (1.4.2)
64
- loofah (~> 2.3)
57
+ rails-html-sanitizer (1.4.4)
58
+ loofah (~> 2.19, >= 2.19.1)
65
59
  rake (13.0.6)
66
- rspec (3.10.0)
67
- rspec-core (~> 3.10.0)
68
- rspec-expectations (~> 3.10.0)
69
- rspec-mocks (~> 3.10.0)
70
- rspec-core (3.10.1)
71
- rspec-support (~> 3.10.0)
72
- rspec-expectations (3.10.2)
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)
73
67
  diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.10.0)
75
- rspec-mocks (3.10.2)
68
+ rspec-support (~> 3.12.0)
69
+ rspec-mocks (3.12.1)
76
70
  diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.10.0)
78
- rspec-support (3.10.3)
79
- simple_po_parser (1.1.5)
80
- sixarm_ruby_unaccent (1.2.0)
81
- sort_alphabetical (1.1.0)
82
- unicode_utils (>= 1.2.2)
83
- tzinfo (2.0.4)
71
+ rspec-support (~> 3.12.0)
72
+ rspec-support (3.12.0)
73
+ tzinfo (2.0.5)
84
74
  concurrent-ruby (~> 1.0)
85
- unicode_utils (1.4.0)
75
+ unaccent (0.4.0)
86
76
 
87
77
  PLATFORMS
88
- ruby
78
+ x86_64-darwin-22
89
79
  x86_64-linux
90
80
 
91
81
  DEPENDENCIES
@@ -96,4 +86,4 @@ DEPENDENCIES
96
86
  rspec (~> 3)
97
87
 
98
88
  BUNDLED WITH
99
- 2.3.3
89
+ 2.4.2
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Rails – Country Select
2
- [![build](https://github.com/stefanpenner/country_select/actions/workflows/build.yml/badge.svg)](https://github.com/stefanpenner/country_select/actions/workflows/build.yml)
2
+ [![Gem Version](https://badge.fury.io/rb/country_select.svg)](https://badge.fury.io/rb/countries) [![build](https://github.com/countries/country_select/actions/workflows/build.yml/badge.svg)](https://github.com/countries/country_select/actions/workflows/build.yml)
3
+ [![Code Climate](https://codeclimate.com/github/countries/country_select.svg)](https://codeclimate.com/github/countries/country_select)
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
+
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/stefanpenner/country_select/issues/new). Ideally provide versions used, and code example that demonstrates the issue.
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,13 +29,7 @@ gem install country_select
26
29
  Or put the following in your Gemfile
27
30
 
28
31
  ```ruby
29
- gem 'country_select', '~> 6.0'
30
- ```
31
-
32
- 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:
33
-
34
- ```ruby
35
- gem 'country_select', require: 'country_select_without_sort_alphabetical'
32
+ gem 'country_select', '~> 8.0'
36
33
  ```
37
34
 
38
35
  ## Usage
@@ -54,13 +51,17 @@ country_select("user", "country")
54
51
  Supplying priority countries to be placed at the top of the list:
55
52
 
56
53
  ```ruby
57
- country_select("user", "country", priority_countries: ["GB", "FR", "DE"])
54
+ country_select("user", "country", priority_countries: ["GB", "FR", "DE"]) # Countries will be sorted by name according to the current locale
55
+ # or
56
+ country_select("user", "country", priority_countries: ["GB", "FR", "DE"], sort_provided: false) # Countries will be displayed is the provided order
58
57
  ```
59
58
 
60
59
  Supplying only certain countries:
61
60
 
62
61
  ```ruby
63
- country_select("user", "country", only: ["GB", "FR", "DE"])
62
+ country_select("user", "country", only: ["GB", "FR", "DE"]) # Countries will be sorted by name according to the current locale
63
+ # or
64
+ country_select("user", "country", only: ["GB", "FR", "DE"], sort_provided: false) # Countries will be displayed is the provided order
64
65
  ```
65
66
 
66
67
  Discarding certain countries:
@@ -177,7 +178,7 @@ class User < ActiveRecord::Base
177
178
  # (usually English) name if no translation is available
178
179
  def country_name
179
180
  country = ISO3166::Country[country_code]
180
- country.translations[I18n.locale.to_s] || country.iso_short_name
181
+ country.translations[I18n.locale.to_s] || country.common_name || country.iso_short_name
181
182
  end
182
183
 
183
184
  end
data/Rakefile CHANGED
@@ -8,3 +8,29 @@ require 'rspec/core/rake_task'
8
8
  RSpec::Core::RakeTask.new(:spec)
9
9
 
10
10
  task default: 'spec'
11
+
12
+
13
+ task :update_gemfiles do
14
+ require 'pry'
15
+ Dir.glob('gemfiles/*.gemfile').each do |gemfile|
16
+ puts "Updating #{gemfile}...\n\n"
17
+ ENV['BUNDLE_GEMFILE']=gemfile
18
+ puts `bundle install --gemfile=#{gemfile} --no-cache`
19
+ puts `bundle update --gemfile=#{gemfile}`
20
+
21
+ lockfile = "#{gemfile}.lock"
22
+
23
+ if File.exist? lockfile
24
+ parsed_lockfile = Bundler::LockfileParser.new(Bundler.read_file(lockfile))
25
+ # Ensure lockfile has x86_64-linux
26
+ if parsed_lockfile.platforms.map(&:to_s).none? {|p| p == 'x86_64-linux' }
27
+ puts "Adding platform x86_64-linux to #{lockfile}\n\n"
28
+ puts `bundle lock --add-platform x86_64-linux --gemfile=#{gemfile}`
29
+ end
30
+
31
+ puts ""
32
+ else
33
+ raise StandardError.new("Expected #{lockfile} to exist.")
34
+ end
35
+ end
36
+ end
@@ -12,18 +12,21 @@ Gem::Specification.new do |s|
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.5'
24
+ s.required_ruby_version = '>= 2.7'
21
25
 
22
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
30
 
27
- s.add_dependency 'countries', '~> 4.2'
28
- s.add_dependency 'sort_alphabetical', '~> 1.1'
31
+ s.add_dependency 'countries', '~> 5.0'
29
32
  end
@@ -2,5 +2,6 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec :path => "../"
4
4
 
5
- gem "railties", "~> 5.2"
6
- gem "actionpack", "~> 5.2"
5
+ gem "railties", "~> 5.2.0"
6
+ gem "actionpack", "~> 5.2.0"
7
+ gem 'nokogiri', '= 1.14.0.rc1'
@@ -1,111 +1,99 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- country_select (6.1.1)
5
- countries (~> 4.2)
6
- sort_alphabetical (~> 1.1)
4
+ country_select (8.0.1)
5
+ countries (~> 5.0)
7
6
 
8
7
  GEM
9
8
  remote: https://rubygems.org/
10
9
  specs:
11
- actionpack (5.2.6)
12
- actionview (= 5.2.6)
13
- activesupport (= 5.2.6)
10
+ actionpack (5.2.8.1)
11
+ actionview (= 5.2.8.1)
12
+ activesupport (= 5.2.8.1)
14
13
  rack (~> 2.0, >= 2.0.8)
15
14
  rack-test (>= 0.6.3)
16
15
  rails-dom-testing (~> 2.0)
17
16
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (5.2.6)
19
- activesupport (= 5.2.6)
17
+ actionview (5.2.8.1)
18
+ activesupport (= 5.2.8.1)
20
19
  builder (~> 3.1)
21
20
  erubi (~> 1.4)
22
21
  rails-dom-testing (~> 2.0)
23
22
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
- activesupport (5.2.6)
23
+ activesupport (5.2.8.1)
25
24
  concurrent-ruby (~> 1.0, >= 1.0.2)
26
25
  i18n (>= 0.7, < 2)
27
26
  minitest (~> 5.1)
28
27
  tzinfo (~> 1.1)
29
28
  builder (3.2.4)
30
29
  coderay (1.1.3)
31
- concurrent-ruby (1.1.9)
32
- countries (4.2.1)
33
- i18n_data (~> 0.15.0)
34
- sixarm_ruby_unaccent (~> 1.1)
30
+ concurrent-ruby (1.1.10)
31
+ countries (5.3.0)
32
+ unaccent (~> 0.3)
35
33
  crass (1.0.6)
36
34
  diff-lcs (1.5.0)
37
- erubi (1.10.0)
38
- i18n (1.8.11)
35
+ erubi (1.12.0)
36
+ i18n (1.12.0)
39
37
  concurrent-ruby (~> 1.0)
40
- i18n_data (0.15.0)
41
- simple_po_parser (~> 1.1)
42
- loofah (2.13.0)
38
+ loofah (2.19.1)
43
39
  crass (~> 1.0.2)
44
40
  nokogiri (>= 1.5.9)
45
41
  method_source (1.0.0)
46
- mini_portile2 (2.7.1)
47
- minitest (5.15.0)
48
- nokogiri (1.13.1)
49
- mini_portile2 (~> 2.7.0)
42
+ minitest (5.17.0)
43
+ nokogiri (1.14.0.rc1-x86_64-darwin)
50
44
  racc (~> 1.4)
51
- nokogiri (1.13.1-arm64-darwin)
52
- racc (~> 1.4)
53
- nokogiri (1.13.1-x86_64-linux)
45
+ nokogiri (1.14.0.rc1-x86_64-linux)
54
46
  racc (~> 1.4)
55
47
  pry (0.14.1)
56
48
  coderay (~> 1.1)
57
49
  method_source (~> 1.0)
58
- racc (1.6.0)
59
- rack (2.2.3)
60
- rack-test (1.1.0)
61
- rack (>= 1.0, < 3)
50
+ racc (1.6.2)
51
+ rack (2.2.5)
52
+ rack-test (2.0.2)
53
+ rack (>= 1.3)
62
54
  rails-dom-testing (2.0.3)
63
55
  activesupport (>= 4.2.0)
64
56
  nokogiri (>= 1.6)
65
- rails-html-sanitizer (1.4.2)
66
- loofah (~> 2.3)
67
- railties (5.2.6)
68
- actionpack (= 5.2.6)
69
- activesupport (= 5.2.6)
57
+ rails-html-sanitizer (1.4.4)
58
+ loofah (~> 2.19, >= 2.19.1)
59
+ railties (5.2.8.1)
60
+ actionpack (= 5.2.8.1)
61
+ activesupport (= 5.2.8.1)
70
62
  method_source
71
63
  rake (>= 0.8.7)
72
64
  thor (>= 0.19.0, < 2.0)
73
65
  rake (13.0.6)
74
- rspec (3.10.0)
75
- rspec-core (~> 3.10.0)
76
- rspec-expectations (~> 3.10.0)
77
- rspec-mocks (~> 3.10.0)
78
- rspec-core (3.10.1)
79
- rspec-support (~> 3.10.0)
80
- rspec-expectations (3.10.2)
66
+ rspec (3.12.0)
67
+ rspec-core (~> 3.12.0)
68
+ rspec-expectations (~> 3.12.0)
69
+ rspec-mocks (~> 3.12.0)
70
+ rspec-core (3.12.0)
71
+ rspec-support (~> 3.12.0)
72
+ rspec-expectations (3.12.1)
81
73
  diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.10.0)
83
- rspec-mocks (3.10.2)
74
+ rspec-support (~> 3.12.0)
75
+ rspec-mocks (3.12.1)
84
76
  diff-lcs (>= 1.2.0, < 2.0)
85
- rspec-support (~> 3.10.0)
86
- rspec-support (3.10.3)
87
- simple_po_parser (1.1.5)
88
- sixarm_ruby_unaccent (1.2.0)
89
- sort_alphabetical (1.1.0)
90
- unicode_utils (>= 1.2.2)
77
+ rspec-support (~> 3.12.0)
78
+ rspec-support (3.12.0)
91
79
  thor (1.2.1)
92
80
  thread_safe (0.3.6)
93
- tzinfo (1.2.9)
81
+ tzinfo (1.2.10)
94
82
  thread_safe (~> 0.1)
95
- unicode_utils (1.4.0)
83
+ unaccent (0.4.0)
96
84
 
97
85
  PLATFORMS
98
- arm64-darwin-21
99
- ruby
86
+ x86_64-darwin-22
100
87
  x86_64-linux
101
88
 
102
89
  DEPENDENCIES
103
- actionpack (~> 5.2)
90
+ actionpack (~> 5.2.0)
104
91
  country_select!
92
+ nokogiri (= 1.14.0.rc1)
105
93
  pry (~> 0)
106
- railties (~> 5.2)
94
+ railties (~> 5.2.0)
107
95
  rake (~> 13)
108
96
  rspec (~> 3)
109
97
 
110
98
  BUNDLED WITH
111
- 2.3.3
99
+ 2.4.2
@@ -2,5 +2,6 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec :path => "../"
4
4
 
5
- gem "railties", "~> 6.0"
6
- gem "actionpack", "~> 6.0"
5
+ gem "railties", "~> 6.0.0"
6
+ gem "actionpack", "~> 6.0.0"
7
+ gem 'nokogiri', '= 1.14.0.rc1'