country_select 3.1.1 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/build.yml +25 -0
  3. data/.github/workflows/codeql-analysis.yml +70 -0
  4. data/CHANGELOG.md +41 -1
  5. data/Gemfile +0 -6
  6. data/Gemfile.lock +60 -269
  7. data/README.md +39 -8
  8. data/Rakefile +3 -3
  9. data/country_select.gemspec +10 -9
  10. data/gemfiles/actionpack-5.2.gemfile +6 -0
  11. data/gemfiles/actionpack-5.2.gemfile.lock +106 -0
  12. data/gemfiles/actionpack-6.0.gemfile +6 -0
  13. data/gemfiles/actionpack-6.0.gemfile.lock +107 -0
  14. data/gemfiles/actionpack-6.1.gemfile +6 -0
  15. data/gemfiles/actionpack-6.1.gemfile.lock +107 -0
  16. data/gemfiles/actionpack-7.0.gemfile +6 -0
  17. data/gemfiles/actionpack-7.0.gemfile.lock +107 -0
  18. data/gemfiles/{actionpack.edge.gemfile → actionpack-head.gemfile} +0 -6
  19. data/gemfiles/actionpack-head.gemfile.lock +104 -0
  20. data/lib/country_select/defaults.rb +10 -0
  21. data/lib/country_select/formats.rb +3 -1
  22. data/lib/country_select/tag_helper.rb +9 -10
  23. data/lib/country_select/version.rb +1 -1
  24. data/lib/country_select.rb +2 -6
  25. data/lib/country_select_without_sort_alphabetical.rb +2 -6
  26. data/spec/country_select_spec.rb +47 -7
  27. metadata +37 -52
  28. data/.travis.yml +0 -35
  29. data/gemfiles/actionpack.edge.gemfile.lock +0 -313
  30. data/gemfiles/actionpack3.2.gemfile +0 -11
  31. data/gemfiles/actionpack3.2.gemfile.lock +0 -300
  32. data/gemfiles/actionpack4.0.gemfile +0 -11
  33. data/gemfiles/actionpack4.0.gemfile.lock +0 -289
  34. data/gemfiles/actionpack4.1.gemfile +0 -11
  35. data/gemfiles/actionpack4.1.gemfile.lock +0 -293
  36. data/gemfiles/actionpack4.2.gemfile +0 -14
  37. data/gemfiles/actionpack4.2.gemfile.lock +0 -309
  38. data/gemfiles/actionpack5.0.gemfile +0 -12
  39. data/gemfiles/actionpack5.0.gemfile.lock +0 -314
  40. data/gemfiles/actionpack5.1.gemfile +0 -12
  41. data/gemfiles/actionpack5.1.gemfile.lock +0 -314
  42. data/lib/country_select/rails3/country_select_helper.rb +0 -39
@@ -20,7 +20,7 @@ describe "CountrySelect" do
20
20
  end
21
21
 
22
22
  let(:walrus) { Walrus.new }
23
- let!(:template) { ActionView::Base.new }
23
+ let!(:template) { ActionView::Base.new(ActionView::LookupContext.new([]), {}, nil) }
24
24
 
25
25
  let(:builder) do
26
26
  if defined?(ActionView::Helpers::Tags::Base)
@@ -61,6 +61,23 @@ describe "CountrySelect" do
61
61
  end
62
62
  end
63
63
 
64
+ it 'falls back when given a country-specific locale' do
65
+ I18n.available_locales = [:en, :de, :'de-AT']
66
+ ISO3166.reset
67
+
68
+ tag = options_for_select([['Deutschland', 'DE']], 'DE')
69
+
70
+ walrus.country_code = 'DE'
71
+ original_locale = I18n.locale
72
+ begin
73
+ I18n.locale = :'de-AT'
74
+ t = builder.country_select(:country_code)
75
+ expect(t).to include(tag)
76
+ ensure
77
+ I18n.locale = original_locale
78
+ end
79
+ end
80
+
64
81
  it "accepts a locale option" do
65
82
  I18n.available_locales = [:fr]
66
83
  ISO3166.reset
@@ -100,7 +117,6 @@ describe "CountrySelect" do
100
117
 
101
118
  describe "when selected options is an array" do
102
119
  it "selects all options but only once" do
103
- tag = options_for_select([["United States", "US"],["Uruguay", "UY"],["Spain", "ES"]], "US")
104
120
  walrus.country_code = 'US'
105
121
  t = builder.country_select(:country_code, {priority_countries: ['LV','US','ES'], selected: ['UY', 'US']}, multiple: true)
106
122
  expect(t.scan(options_for_select([["United States", "US"]], "US")).length).to be(1)
@@ -123,6 +139,23 @@ describe "CountrySelect" do
123
139
  expect(t).to_not include(tag)
124
140
  end
125
141
 
142
+ context "when there is a default 'except' configured" do
143
+ around do |example|
144
+ old_value = ::CountrySelect::DEFAULTS[:except]
145
+ example.run
146
+ ::CountrySelect::DEFAULTS[:except] = old_value
147
+ end
148
+
149
+ it "discards countries when configured to" do
150
+ ::CountrySelect::DEFAULTS[:except] = ['US']
151
+
152
+ tag = options_for_select([['United States', 'US']])
153
+ walrus.country_code = 'DE'
154
+ t = builder.country_select(:country_code)
155
+ expect(t).to_not include(tag)
156
+ end
157
+ end
158
+
126
159
  context "using old 1.x syntax" do
127
160
  it "accepts priority countries" do
128
161
  tag = options_for_select(
@@ -183,7 +216,14 @@ describe "CountrySelect" do
183
216
  end
184
217
 
185
218
  it "supports the include_blank option" do
186
- tag = '<option value=""></option>'
219
+ # Rails 6.1 more closely follows the HTML spec for
220
+ # empty option tags.
221
+ # https://github.com/rails/rails/pull/39808
222
+ tag = if ActionView::VERSION::STRING >= '6.1'
223
+ '<option value="" label=" "></option>'
224
+ else
225
+ '<option value=""></option>'
226
+ end
187
227
  t = builder.country_select(:country_code, include_blank: true)
188
228
  expect(t).to include(tag)
189
229
  end
@@ -215,7 +255,7 @@ describe "CountrySelect" do
215
255
  describe "custom formats" do
216
256
  it "accepts a custom formatter" do
217
257
  ::CountrySelect::FORMATS[:with_alpha2] = lambda do |country|
218
- "#{country.name} (#{country.alpha2})"
258
+ "#{country.iso_short_name} (#{country.alpha2})"
219
259
  end
220
260
 
221
261
  tag = options_for_select([['United States of America (US)', 'US']], 'US')
@@ -227,7 +267,7 @@ describe "CountrySelect" do
227
267
 
228
268
  it "accepts an array for formatter" do
229
269
  ::CountrySelect::FORMATS[:with_alpha3] = lambda do |country|
230
- [country.name, country.alpha3]
270
+ [country.iso_short_name, country.alpha3]
231
271
  end
232
272
 
233
273
  tag = options_for_select([['United States of America', 'USA']], 'USA')
@@ -238,7 +278,7 @@ describe "CountrySelect" do
238
278
 
239
279
  it "accepts an array for formatter + custom formatter" do
240
280
  ::CountrySelect::FORMATS[:with_alpha3] = lambda do |country|
241
- ["#{country.name} (#{country.alpha2})", country.alpha3]
281
+ ["#{country.iso_short_name} (#{country.alpha2})", country.alpha3]
242
282
  end
243
283
 
244
284
  tag = options_for_select([['United States of America (US)', 'USA']], 'USA')
@@ -249,7 +289,7 @@ describe "CountrySelect" do
249
289
 
250
290
  it "marks priority countries as selected only once" do
251
291
  ::CountrySelect::FORMATS[:with_alpha3] = lambda do |country|
252
- [country.name, country.alpha3]
292
+ [country.iso_short_name, country.alpha3]
253
293
  end
254
294
 
255
295
  tag = options_for_select([['United States of America', 'USA']], 'USA')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: country_select
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Penner
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-20 00:00:00.000000000 Z
11
+ date: 2022-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '5'
19
+ version: '7.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '5'
26
+ version: '7.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '13'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '13'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -66,50 +66,36 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3'
69
- - !ruby/object:Gem::Dependency
70
- name: wwtd
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
69
  - !ruby/object:Gem::Dependency
84
70
  name: countries
85
71
  requirement: !ruby/object:Gem::Requirement
86
72
  requirements:
87
73
  - - "~>"
88
74
  - !ruby/object:Gem::Version
89
- version: '2.0'
75
+ version: '5.0'
90
76
  type: :runtime
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
80
  - - "~>"
95
81
  - !ruby/object:Gem::Version
96
- version: '2.0'
82
+ version: '5.0'
97
83
  - !ruby/object:Gem::Dependency
98
84
  name: sort_alphabetical
99
85
  requirement: !ruby/object:Gem::Requirement
100
86
  requirements:
101
87
  - - "~>"
102
88
  - !ruby/object:Gem::Version
103
- version: '1.0'
89
+ version: '1.1'
104
90
  type: :runtime
105
91
  prerelease: false
106
92
  version_requirements: !ruby/object:Gem::Requirement
107
93
  requirements:
108
94
  - - "~>"
109
95
  - !ruby/object:Gem::Version
110
- version: '1.0'
111
- description: Provides a simple helper to get an HTML select list of countries. The
112
- list of countries comes from the ISO 3166 standard. While it is a relatively neutral
96
+ version: '1.1'
97
+ description: Provides a simple helper to get an HTML select list of countries. The
98
+ list of countries comes from the ISO 3166 standard. While it is a relatively neutral
113
99
  source of country names, it will still offend some users.
114
100
  email:
115
101
  - stefan.penner@gmail.com
@@ -117,9 +103,10 @@ executables: []
117
103
  extensions: []
118
104
  extra_rdoc_files: []
119
105
  files:
106
+ - ".github/workflows/build.yml"
107
+ - ".github/workflows/codeql-analysis.yml"
120
108
  - ".gitignore"
121
109
  - ".rspec"
122
- - ".travis.yml"
123
110
  - CHANGELOG.md
124
111
  - Gemfile
125
112
  - Gemfile.lock
@@ -128,34 +115,33 @@ files:
128
115
  - Rakefile
129
116
  - UPGRADING.md
130
117
  - country_select.gemspec
131
- - gemfiles/actionpack.edge.gemfile
132
- - gemfiles/actionpack.edge.gemfile.lock
133
- - gemfiles/actionpack3.2.gemfile
134
- - gemfiles/actionpack3.2.gemfile.lock
135
- - gemfiles/actionpack4.0.gemfile
136
- - gemfiles/actionpack4.0.gemfile.lock
137
- - gemfiles/actionpack4.1.gemfile
138
- - gemfiles/actionpack4.1.gemfile.lock
139
- - gemfiles/actionpack4.2.gemfile
140
- - gemfiles/actionpack4.2.gemfile.lock
141
- - gemfiles/actionpack5.0.gemfile
142
- - gemfiles/actionpack5.0.gemfile.lock
143
- - gemfiles/actionpack5.1.gemfile
144
- - gemfiles/actionpack5.1.gemfile.lock
118
+ - gemfiles/actionpack-5.2.gemfile
119
+ - gemfiles/actionpack-5.2.gemfile.lock
120
+ - gemfiles/actionpack-6.0.gemfile
121
+ - gemfiles/actionpack-6.0.gemfile.lock
122
+ - gemfiles/actionpack-6.1.gemfile
123
+ - gemfiles/actionpack-6.1.gemfile.lock
124
+ - gemfiles/actionpack-7.0.gemfile
125
+ - gemfiles/actionpack-7.0.gemfile.lock
126
+ - gemfiles/actionpack-head.gemfile
127
+ - gemfiles/actionpack-head.gemfile.lock
145
128
  - lib/country_select.rb
146
129
  - lib/country_select/country_select_helper.rb
130
+ - lib/country_select/defaults.rb
147
131
  - lib/country_select/formats.rb
148
- - lib/country_select/rails3/country_select_helper.rb
149
132
  - lib/country_select/tag_helper.rb
150
133
  - lib/country_select/version.rb
151
134
  - lib/country_select_without_sort_alphabetical.rb
152
135
  - spec/country_select_spec.rb
153
136
  - spec/spec_helper.rb
154
- homepage: https://github.com/stefanpenner/country_select
137
+ homepage: https://github.com/countries/country_select
155
138
  licenses:
156
139
  - MIT
157
- metadata: {}
158
- post_install_message:
140
+ metadata:
141
+ bug_tracker_uri: http://github.com/countries/country_select/issues
142
+ changelog_uri: https://github.com/countries/country_select/blob/master/CHANGELOG.md
143
+ source_code_uri: https://github.com/countries/country_select
144
+ post_install_message:
159
145
  rdoc_options: []
160
146
  require_paths:
161
147
  - lib
@@ -163,16 +149,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
163
149
  requirements:
164
150
  - - ">="
165
151
  - !ruby/object:Gem::Version
166
- version: '2'
152
+ version: '2.7'
167
153
  required_rubygems_version: !ruby/object:Gem::Requirement
168
154
  requirements:
169
155
  - - ">="
170
156
  - !ruby/object:Gem::Version
171
157
  version: '0'
172
158
  requirements: []
173
- rubyforge_project: country_select
174
- rubygems_version: 2.6.13
175
- signing_key:
159
+ rubygems_version: 3.3.7
160
+ signing_key:
176
161
  specification_version: 4
177
162
  summary: Country Select Plugin
178
163
  test_files:
data/.travis.yml DELETED
@@ -1,35 +0,0 @@
1
- sudo: false
2
- cache: bundler
3
- language: ruby
4
- script: "bundle exec rspec"
5
- rvm:
6
- - 2.0
7
- - 2.1
8
- - 2.2
9
- - 2.3
10
- - 2.4
11
- - ruby-head
12
- gemfile:
13
- - gemfiles/actionpack3.2.gemfile
14
- - gemfiles/actionpack4.0.gemfile
15
- - gemfiles/actionpack4.1.gemfile
16
- - gemfiles/actionpack4.2.gemfile
17
- - gemfiles/actionpack5.0.gemfile
18
- - gemfiles/actionpack5.1.gemfile
19
- - gemfiles/actionpack.edge.gemfile
20
- matrix:
21
- allow_failures:
22
- - rvm: ruby-head
23
- exclude:
24
- - rvm: 2.0
25
- gemfile: gemfiles/actionpack.edge.gemfile
26
- - rvm: 2.0
27
- gemfile: gemfiles/actionpack5.0.gemfile
28
- - rvm: 2.0
29
- gemfile: gemfiles/actionpack5.1.gemfile
30
- - rvm: 2.1
31
- gemfile: gemfiles/actionpack.edge.gemfile
32
- - rvm: 2.1
33
- gemfile: gemfiles/actionpack5.0.gemfile
34
- - rvm: 2.1
35
- gemfile: gemfiles/actionpack5.1.gemfile
@@ -1,313 +0,0 @@
1
- GIT
2
- remote: https://github.com/rails/rails.git
3
- revision: 30767f980faa2d7a0531774ddf040471db74a23b
4
- specs:
5
- actionpack (5.2.0.alpha)
6
- actionview (= 5.2.0.alpha)
7
- activesupport (= 5.2.0.alpha)
8
- rack (~> 2.0)
9
- rack-test (>= 0.6.3)
10
- rails-dom-testing (~> 2.0)
11
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
12
- actionview (5.2.0.alpha)
13
- activesupport (= 5.2.0.alpha)
14
- builder (~> 3.1)
15
- erubi (~> 1.4)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
18
- activesupport (5.2.0.alpha)
19
- concurrent-ruby (~> 1.0, >= 1.0.2)
20
- i18n (~> 0.7)
21
- minitest (~> 5.1)
22
- tzinfo (~> 1.1)
23
-
24
- PATH
25
- remote: ..
26
- specs:
27
- country_select (3.1.1)
28
- countries (~> 2.0)
29
- sort_alphabetical (~> 1.0)
30
-
31
- GEM
32
- remote: https://rubygems.org/
33
- specs:
34
- builder (3.2.3)
35
- coderay (1.1.2)
36
- concurrent-ruby (1.0.5)
37
- countries (2.1.2)
38
- i18n_data (~> 0.8.0)
39
- money (~> 6.9)
40
- sixarm_ruby_unaccent (~> 1.1)
41
- unicode_utils (~> 1.4)
42
- diff-lcs (1.3)
43
- erubi (1.6.1)
44
- ffi2-generators (0.1.1)
45
- i18n (0.8.6)
46
- i18n_data (0.8.0)
47
- loofah (2.0.3)
48
- nokogiri (>= 1.5.9)
49
- method_source (0.8.2)
50
- mini_portile2 (2.3.0)
51
- minitest (5.10.3)
52
- money (6.9.0)
53
- i18n (>= 0.6.4, < 0.9)
54
- nokogiri (1.8.1)
55
- mini_portile2 (~> 2.3.0)
56
- pry (0.10.4)
57
- coderay (~> 1.1.0)
58
- method_source (~> 0.8.1)
59
- slop (~> 3.4)
60
- psych (2.2.4)
61
- racc (1.4.14)
62
- rack (2.0.3)
63
- rack-test (0.7.0)
64
- rack (>= 1.0, < 3)
65
- rails-dom-testing (2.0.3)
66
- activesupport (>= 4.2.0)
67
- nokogiri (>= 1.6)
68
- rails-html-sanitizer (1.0.3)
69
- loofah (~> 2.0)
70
- rake (12.1.0)
71
- rspec (3.6.0)
72
- rspec-core (~> 3.6.0)
73
- rspec-expectations (~> 3.6.0)
74
- rspec-mocks (~> 3.6.0)
75
- rspec-core (3.6.0)
76
- rspec-support (~> 3.6.0)
77
- rspec-expectations (3.6.0)
78
- diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.6.0)
80
- rspec-mocks (3.6.0)
81
- diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.6.0)
83
- rspec-support (3.6.0)
84
- rubysl (2.2.0)
85
- rubysl-abbrev (~> 2.0)
86
- rubysl-base64 (~> 2.0)
87
- rubysl-benchmark (~> 2.0)
88
- rubysl-bigdecimal (~> 2.0)
89
- rubysl-cgi (~> 2.0)
90
- rubysl-cgi-session (~> 2.0)
91
- rubysl-cmath (~> 2.0)
92
- rubysl-complex (~> 2.0)
93
- rubysl-continuation (~> 2.0)
94
- rubysl-coverage (~> 2.0)
95
- rubysl-csv (~> 2.0)
96
- rubysl-curses (~> 2.0)
97
- rubysl-date (~> 2.0)
98
- rubysl-delegate (~> 2.0)
99
- rubysl-digest (~> 2.0)
100
- rubysl-drb (~> 2.0)
101
- rubysl-e2mmap (~> 2.0)
102
- rubysl-english (~> 2.0)
103
- rubysl-enumerator (~> 2.0)
104
- rubysl-erb (~> 2.0)
105
- rubysl-etc (~> 2.0)
106
- rubysl-expect (~> 2.0)
107
- rubysl-fcntl (~> 2.0)
108
- rubysl-fiber (~> 2.0)
109
- rubysl-fileutils (~> 2.0)
110
- rubysl-find (~> 2.0)
111
- rubysl-forwardable (~> 2.0)
112
- rubysl-getoptlong (~> 2.0)
113
- rubysl-gserver (~> 2.0)
114
- rubysl-io-console (~> 2.0)
115
- rubysl-io-nonblock (~> 2.0)
116
- rubysl-io-wait (~> 2.0)
117
- rubysl-ipaddr (~> 2.0)
118
- rubysl-irb (~> 2.1)
119
- rubysl-logger (~> 2.0)
120
- rubysl-mathn (~> 2.0)
121
- rubysl-matrix (~> 2.0)
122
- rubysl-mkmf (~> 2.0)
123
- rubysl-monitor (~> 2.0)
124
- rubysl-mutex_m (~> 2.0)
125
- rubysl-net-ftp (~> 2.0)
126
- rubysl-net-http (~> 2.0)
127
- rubysl-net-imap (~> 2.0)
128
- rubysl-net-pop (~> 2.0)
129
- rubysl-net-protocol (~> 2.0)
130
- rubysl-net-smtp (~> 2.0)
131
- rubysl-net-telnet (~> 2.0)
132
- rubysl-nkf (~> 2.0)
133
- rubysl-observer (~> 2.0)
134
- rubysl-open-uri (~> 2.0)
135
- rubysl-open3 (~> 2.0)
136
- rubysl-openssl (~> 2.0)
137
- rubysl-optparse (~> 2.0)
138
- rubysl-ostruct (~> 2.0)
139
- rubysl-pathname (~> 2.0)
140
- rubysl-prettyprint (~> 2.0)
141
- rubysl-prime (~> 2.0)
142
- rubysl-profile (~> 2.0)
143
- rubysl-profiler (~> 2.0)
144
- rubysl-pstore (~> 2.0)
145
- rubysl-pty (~> 2.0)
146
- rubysl-rational (~> 2.0)
147
- rubysl-resolv (~> 2.0)
148
- rubysl-rexml (~> 2.0)
149
- rubysl-rinda (~> 2.0)
150
- rubysl-rss (~> 2.0)
151
- rubysl-scanf (~> 2.0)
152
- rubysl-securerandom (~> 2.0)
153
- rubysl-set (~> 2.0)
154
- rubysl-shellwords (~> 2.0)
155
- rubysl-singleton (~> 2.0)
156
- rubysl-socket (~> 2.0)
157
- rubysl-stringio (~> 2.0)
158
- rubysl-strscan (~> 2.0)
159
- rubysl-sync (~> 2.0)
160
- rubysl-syslog (~> 2.0)
161
- rubysl-tempfile (~> 2.0)
162
- rubysl-thread (~> 2.0)
163
- rubysl-thwait (~> 2.0)
164
- rubysl-time (~> 2.0)
165
- rubysl-timeout (~> 2.0)
166
- rubysl-tmpdir (~> 2.0)
167
- rubysl-tsort (~> 2.0)
168
- rubysl-un (~> 2.0)
169
- rubysl-unicode_normalize (~> 2.0)
170
- rubysl-uri (~> 2.0)
171
- rubysl-weakref (~> 2.0)
172
- rubysl-webrick (~> 2.0)
173
- rubysl-xmlrpc (~> 2.0)
174
- rubysl-yaml (~> 2.0)
175
- rubysl-zlib (~> 2.0)
176
- rubysl-abbrev (2.0.4)
177
- rubysl-base64 (2.0.0)
178
- rubysl-benchmark (2.0.1)
179
- rubysl-bigdecimal (2.0.2)
180
- rubysl-cgi (2.0.1)
181
- rubysl-cgi-session (2.1.0)
182
- rubysl-cmath (2.0.0)
183
- rubysl-complex (2.0.0)
184
- rubysl-continuation (2.0.0)
185
- rubysl-coverage (2.1)
186
- rubysl-csv (2.0.2)
187
- rubysl-english (~> 2.0)
188
- rubysl-curses (2.0.1)
189
- rubysl-date (2.0.9)
190
- rubysl-delegate (2.0.1)
191
- rubysl-digest (2.0.8)
192
- rubysl-drb (2.0.1)
193
- rubysl-e2mmap (2.0.0)
194
- rubysl-english (2.0.0)
195
- rubysl-enumerator (2.0.0)
196
- rubysl-erb (2.0.2)
197
- rubysl-etc (2.0.3)
198
- ffi2-generators (~> 0.1)
199
- rubysl-expect (2.0.0)
200
- rubysl-fcntl (2.0.4)
201
- ffi2-generators (~> 0.1)
202
- rubysl-fiber (2.0.0)
203
- rubysl-fileutils (2.0.3)
204
- rubysl-find (2.0.1)
205
- rubysl-forwardable (2.0.1)
206
- rubysl-getoptlong (2.0.0)
207
- rubysl-gserver (2.0.0)
208
- rubysl-socket (~> 2.0)
209
- rubysl-thread (~> 2.0)
210
- rubysl-io-console (2.0.0)
211
- rubysl-io-nonblock (2.0.0)
212
- rubysl-io-wait (2.0.0)
213
- rubysl-ipaddr (2.0.0)
214
- rubysl-irb (2.1.1)
215
- rubysl-e2mmap (~> 2.0)
216
- rubysl-mathn (~> 2.0)
217
- rubysl-thread (~> 2.0)
218
- rubysl-logger (2.1.0)
219
- rubysl-mathn (2.0.0)
220
- rubysl-matrix (2.1.0)
221
- rubysl-e2mmap (~> 2.0)
222
- rubysl-mkmf (2.1)
223
- rubysl-fileutils (~> 2.0)
224
- rubysl-shellwords (~> 2.0)
225
- rubysl-monitor (2.0.0)
226
- rubysl-mutex_m (2.0.0)
227
- rubysl-net-ftp (2.0.1)
228
- rubysl-net-http (2.0.4)
229
- rubysl-cgi (~> 2.0)
230
- rubysl-erb (~> 2.0)
231
- rubysl-singleton (~> 2.0)
232
- rubysl-net-imap (2.0.1)
233
- rubysl-net-pop (2.0.1)
234
- rubysl-net-protocol (2.0.1)
235
- rubysl-net-smtp (2.0.1)
236
- rubysl-net-telnet (2.0.0)
237
- rubysl-nkf (2.0.1)
238
- rubysl-observer (2.0.0)
239
- rubysl-open-uri (2.0.0)
240
- rubysl-open3 (2.0.0)
241
- rubysl-openssl (2.9)
242
- rubysl-optparse (2.0.1)
243
- rubysl-shellwords (~> 2.0)
244
- rubysl-ostruct (2.1.0)
245
- rubysl-pathname (2.3)
246
- rubysl-prettyprint (2.0.3)
247
- rubysl-prime (2.0.1)
248
- rubysl-profile (2.0.0)
249
- rubysl-profiler (2.1)
250
- rubysl-pstore (2.0.0)
251
- rubysl-pty (2.0.3)
252
- rubysl-rational (2.0.1)
253
- rubysl-resolv (2.1.2)
254
- rubysl-rexml (2.0.4)
255
- rubysl-rinda (2.0.1)
256
- rubysl-rss (2.0.0)
257
- rubysl-scanf (2.0.0)
258
- rubysl-securerandom (2.0.0)
259
- rubysl-set (2.0.1)
260
- rubysl-shellwords (2.0.0)
261
- rubysl-singleton (2.0.0)
262
- rubysl-socket (2.2.1)
263
- rubysl-fcntl (~> 2.0)
264
- rubysl-stringio (2.1.0)
265
- rubysl-strscan (2.0.0)
266
- rubysl-sync (2.0.0)
267
- rubysl-syslog (2.1.0)
268
- ffi2-generators (~> 0.1)
269
- rubysl-tempfile (2.0.1)
270
- rubysl-thread (2.0.3)
271
- rubysl-thwait (2.0.0)
272
- rubysl-time (2.0.3)
273
- rubysl-timeout (2.0.0)
274
- rubysl-tmpdir (2.0.1)
275
- rubysl-tsort (2.0.1)
276
- rubysl-un (2.0.0)
277
- rubysl-fileutils (~> 2.0)
278
- rubysl-optparse (~> 2.0)
279
- rubysl-unicode_normalize (2.0)
280
- rubysl-uri (2.0.0)
281
- rubysl-weakref (2.0.0)
282
- rubysl-webrick (2.0.0)
283
- rubysl-xmlrpc (2.0.0)
284
- rubysl-yaml (2.1.0)
285
- rubysl-zlib (2.0.1)
286
- sixarm_ruby_unaccent (1.2.0)
287
- slop (3.6.0)
288
- sort_alphabetical (1.1.0)
289
- unicode_utils (>= 1.2.2)
290
- thread_safe (0.3.6)
291
- tzinfo (1.2.3)
292
- thread_safe (~> 0.1)
293
- unicode_utils (1.4.0)
294
- wwtd (1.3.0)
295
-
296
- PLATFORMS
297
- ruby
298
-
299
- DEPENDENCIES
300
- actionpack!
301
- actionview!
302
- activesupport!
303
- country_select!
304
- pry (~> 0)
305
- psych
306
- racc
307
- rake
308
- rspec (~> 3)
309
- rubysl (~> 2.0)
310
- wwtd
311
-
312
- BUNDLED WITH
313
- 1.15.4
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec :path => "../"
4
-
5
- gem "actionpack", "~> 3.2.17"
6
-
7
- platforms :rbx do
8
- gem "racc"
9
- gem "rubysl", "~> 2.0"
10
- gem "psych"
11
- end