country_select 4.0.0 → 5.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec :path => "../"
4
+
5
+ gem "railties", "~> 6.1.0"
6
+ gem "actionpack", "~> 6.1.0"
@@ -0,0 +1,107 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ country_select (5.0.1)
5
+ countries (~> 3.0)
6
+ sort_alphabetical (~> 1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (6.1.3)
12
+ actionview (= 6.1.3)
13
+ activesupport (= 6.1.3)
14
+ rack (~> 2.0, >= 2.0.9)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
+ actionview (6.1.3)
19
+ activesupport (= 6.1.3)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
+ activesupport (6.1.3)
25
+ concurrent-ruby (~> 1.0, >= 1.0.2)
26
+ i18n (>= 1.6, < 2)
27
+ minitest (>= 5.1)
28
+ tzinfo (~> 2.0)
29
+ zeitwerk (~> 2.3)
30
+ builder (3.2.4)
31
+ coderay (1.1.3)
32
+ concurrent-ruby (1.1.8)
33
+ countries (3.0.1)
34
+ i18n_data (~> 0.10.0)
35
+ sixarm_ruby_unaccent (~> 1.1)
36
+ unicode_utils (~> 1.4)
37
+ crass (1.0.6)
38
+ diff-lcs (1.4.4)
39
+ erubi (1.10.0)
40
+ i18n (1.8.9)
41
+ concurrent-ruby (~> 1.0)
42
+ i18n_data (0.10.0)
43
+ loofah (2.9.0)
44
+ crass (~> 1.0.2)
45
+ nokogiri (>= 1.5.9)
46
+ method_source (1.0.0)
47
+ mini_portile2 (2.5.0)
48
+ minitest (5.14.4)
49
+ nokogiri (1.11.1)
50
+ mini_portile2 (~> 2.5.0)
51
+ racc (~> 1.4)
52
+ pry (0.14.0)
53
+ coderay (~> 1.1)
54
+ method_source (~> 1.0)
55
+ racc (1.5.2)
56
+ rack (2.2.3)
57
+ rack-test (1.1.0)
58
+ rack (>= 1.0, < 3)
59
+ rails-dom-testing (2.0.3)
60
+ activesupport (>= 4.2.0)
61
+ nokogiri (>= 1.6)
62
+ rails-html-sanitizer (1.3.0)
63
+ loofah (~> 2.3)
64
+ railties (6.1.3)
65
+ actionpack (= 6.1.3)
66
+ activesupport (= 6.1.3)
67
+ method_source
68
+ rake (>= 0.8.7)
69
+ thor (~> 1.0)
70
+ rake (13.0.3)
71
+ rspec (3.10.0)
72
+ rspec-core (~> 3.10.0)
73
+ rspec-expectations (~> 3.10.0)
74
+ rspec-mocks (~> 3.10.0)
75
+ rspec-core (3.10.1)
76
+ rspec-support (~> 3.10.0)
77
+ rspec-expectations (3.10.1)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.10.0)
80
+ rspec-mocks (3.10.2)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.10.0)
83
+ rspec-support (3.10.2)
84
+ sixarm_ruby_unaccent (1.2.0)
85
+ sort_alphabetical (1.1.0)
86
+ unicode_utils (>= 1.2.2)
87
+ thor (1.1.0)
88
+ tzinfo (2.0.4)
89
+ concurrent-ruby (~> 1.0)
90
+ unicode_utils (1.4.0)
91
+ wwtd (1.4.1)
92
+ zeitwerk (2.4.2)
93
+
94
+ PLATFORMS
95
+ ruby
96
+
97
+ DEPENDENCIES
98
+ actionpack (~> 6.1.0)
99
+ country_select!
100
+ pry (~> 0)
101
+ railties (~> 6.1.0)
102
+ rake (~> 13)
103
+ rspec (~> 3)
104
+ wwtd (~> 1)
105
+
106
+ BUNDLED WITH
107
+ 2.2.13
@@ -6,9 +6,4 @@ require 'sort_alphabetical'
6
6
  require 'country_select/version'
7
7
  require 'country_select/formats'
8
8
  require 'country_select/tag_helper'
9
-
10
- if defined?(ActionView::Helpers::Tags::Base)
11
- require 'country_select/country_select_helper'
12
- else
13
- require 'country_select/rails3/country_select_helper'
14
- end
9
+ require 'country_select/country_select_helper'
@@ -2,6 +2,8 @@ module CountrySelect
2
2
  FORMATS = {}
3
3
 
4
4
  FORMATS[:default] = lambda do |country|
5
- country.translations[I18n.locale.to_s] || country.name
5
+ # Need to use :[] specifically, not :dig, because country.translations is a
6
+ # ISO3166::Translations object, which overrides :[] to support i18n locale fallbacks
7
+ country.translations&.send(:[], I18n.locale.to_s) || country.name
6
8
  end
7
9
  end
@@ -3,7 +3,7 @@ module CountrySelect
3
3
  module TagHelper
4
4
  def country_option_tags
5
5
  # In Rails 5.2+, `value` accepts no arguments and must also be called
6
- # called with parens to avoid the local variable of the same name
6
+ # with parens to avoid the local variable of the same name
7
7
  # https://github.com/rails/rails/pull/29791
8
8
  selected_option = @options.fetch(:selected) do
9
9
  if self.method(:value).arity == 0
@@ -1,3 +1,3 @@
1
1
  module CountrySelect
2
- VERSION = '4.0.0'
2
+ VERSION = '5.0.1'
3
3
  end
@@ -5,9 +5,4 @@ require 'countries'
5
5
  require 'country_select/version'
6
6
  require 'country_select/formats'
7
7
  require 'country_select/tag_helper'
8
-
9
- if defined?(ActionView::Helpers::Tags::Base)
10
- require 'country_select/country_select_helper'
11
- else
12
- require 'country_select/rails3/country_select_helper'
13
- end
8
+ require 'country_select/country_select_helper'
@@ -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)
@@ -183,7 +199,14 @@ describe "CountrySelect" do
183
199
  end
184
200
 
185
201
  it "supports the include_blank option" do
186
- tag = '<option value=""></option>'
202
+ # Rails 6.1 more closely follows the HTML spec for
203
+ # empty option tags.
204
+ # https://github.com/rails/rails/pull/39808
205
+ tag = if ActionView::VERSION::STRING >= '6.1'
206
+ '<option value="" label=" "></option>'
207
+ else
208
+ '<option value=""></option>'
209
+ end
187
210
  t = builder.country_select(:country_code, include_blank: true)
188
211
  expect(t).to include(tag)
189
212
  end
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: 4.0.0
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Penner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-20 00:00:00.000000000 Z
11
+ date: 2021-03-08 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: '6.1'
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: '6.1'
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
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: wwtd
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '1'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: '1'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: countries
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -100,16 +100,16 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '1.0'
103
+ version: '1.1'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !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
110
+ version: '1.1'
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
113
113
  source of country names, it will still offend some users.
114
114
  email:
115
115
  - stefan.penner@gmail.com
@@ -130,24 +130,15 @@ files:
130
130
  - country_select.gemspec
131
131
  - gemfiles/actionpack.edge.gemfile
132
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
145
133
  - gemfiles/actionpack5.2.gemfile
146
134
  - gemfiles/actionpack5.2.gemfile.lock
135
+ - gemfiles/actionpack6.0.gemfile
136
+ - gemfiles/actionpack6.0.gemfile.lock
137
+ - gemfiles/actionpack6.1.gemfile
138
+ - gemfiles/actionpack6.1.gemfile.lock
147
139
  - lib/country_select.rb
148
140
  - lib/country_select/country_select_helper.rb
149
141
  - lib/country_select/formats.rb
150
- - lib/country_select/rails3/country_select_helper.rb
151
142
  - lib/country_select/tag_helper.rb
152
143
  - lib/country_select/version.rb
153
144
  - lib/country_select_without_sort_alphabetical.rb
@@ -165,15 +156,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
156
  requirements:
166
157
  - - ">="
167
158
  - !ruby/object:Gem::Version
168
- version: '2'
159
+ version: '2.5'
169
160
  required_rubygems_version: !ruby/object:Gem::Requirement
170
161
  requirements:
171
162
  - - ">="
172
163
  - !ruby/object:Gem::Version
173
164
  version: '0'
174
165
  requirements: []
175
- rubyforge_project: country_select
176
- rubygems_version: 2.7.6
166
+ rubygems_version: 3.2.13
177
167
  signing_key:
178
168
  specification_version: 4
179
169
  summary: Country Select Plugin
@@ -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
@@ -1,297 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- country_select (4.0.0)
5
- countries (~> 3.0)
6
- sort_alphabetical (~> 1.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (3.2.22.5)
12
- activemodel (= 3.2.22.5)
13
- activesupport (= 3.2.22.5)
14
- builder (~> 3.0.0)
15
- erubis (~> 2.7.0)
16
- journey (~> 1.0.4)
17
- rack (~> 1.4.5)
18
- rack-cache (~> 1.2)
19
- rack-test (~> 0.6.1)
20
- sprockets (~> 2.2.1)
21
- activemodel (3.2.22.5)
22
- activesupport (= 3.2.22.5)
23
- builder (~> 3.0.0)
24
- activesupport (3.2.22.5)
25
- i18n (~> 0.6, >= 0.6.4)
26
- multi_json (~> 1.0)
27
- builder (3.0.4)
28
- coderay (1.1.1)
29
- countries (3.0.0)
30
- i18n_data (~> 0.8.0)
31
- sixarm_ruby_unaccent (~> 1.1)
32
- unicode_utils (~> 1.4)
33
- diff-lcs (1.3)
34
- erubis (2.7.0)
35
- ffi2-generators (0.1.1)
36
- hike (1.2.3)
37
- i18n (0.8.6)
38
- i18n_data (0.8.0)
39
- journey (1.0.4)
40
- method_source (0.8.2)
41
- multi_json (1.12.1)
42
- pry (0.10.4)
43
- coderay (~> 1.1.0)
44
- method_source (~> 0.8.1)
45
- slop (~> 3.4)
46
- psych (2.2.4)
47
- racc (1.4.14)
48
- rack (1.4.7)
49
- rack-cache (1.7.0)
50
- rack (>= 0.4)
51
- rack-test (0.6.3)
52
- rack (>= 1.0)
53
- rake (12.0.0)
54
- rspec (3.6.0)
55
- rspec-core (~> 3.6.0)
56
- rspec-expectations (~> 3.6.0)
57
- rspec-mocks (~> 3.6.0)
58
- rspec-core (3.6.0)
59
- rspec-support (~> 3.6.0)
60
- rspec-expectations (3.6.0)
61
- diff-lcs (>= 1.2.0, < 2.0)
62
- rspec-support (~> 3.6.0)
63
- rspec-mocks (3.6.0)
64
- diff-lcs (>= 1.2.0, < 2.0)
65
- rspec-support (~> 3.6.0)
66
- rspec-support (3.6.0)
67
- rubysl (2.2.0)
68
- rubysl-abbrev (~> 2.0)
69
- rubysl-base64 (~> 2.0)
70
- rubysl-benchmark (~> 2.0)
71
- rubysl-bigdecimal (~> 2.0)
72
- rubysl-cgi (~> 2.0)
73
- rubysl-cgi-session (~> 2.0)
74
- rubysl-cmath (~> 2.0)
75
- rubysl-complex (~> 2.0)
76
- rubysl-continuation (~> 2.0)
77
- rubysl-coverage (~> 2.0)
78
- rubysl-csv (~> 2.0)
79
- rubysl-curses (~> 2.0)
80
- rubysl-date (~> 2.0)
81
- rubysl-delegate (~> 2.0)
82
- rubysl-digest (~> 2.0)
83
- rubysl-drb (~> 2.0)
84
- rubysl-e2mmap (~> 2.0)
85
- rubysl-english (~> 2.0)
86
- rubysl-enumerator (~> 2.0)
87
- rubysl-erb (~> 2.0)
88
- rubysl-etc (~> 2.0)
89
- rubysl-expect (~> 2.0)
90
- rubysl-fcntl (~> 2.0)
91
- rubysl-fiber (~> 2.0)
92
- rubysl-fileutils (~> 2.0)
93
- rubysl-find (~> 2.0)
94
- rubysl-forwardable (~> 2.0)
95
- rubysl-getoptlong (~> 2.0)
96
- rubysl-gserver (~> 2.0)
97
- rubysl-io-console (~> 2.0)
98
- rubysl-io-nonblock (~> 2.0)
99
- rubysl-io-wait (~> 2.0)
100
- rubysl-ipaddr (~> 2.0)
101
- rubysl-irb (~> 2.1)
102
- rubysl-logger (~> 2.0)
103
- rubysl-mathn (~> 2.0)
104
- rubysl-matrix (~> 2.0)
105
- rubysl-mkmf (~> 2.0)
106
- rubysl-monitor (~> 2.0)
107
- rubysl-mutex_m (~> 2.0)
108
- rubysl-net-ftp (~> 2.0)
109
- rubysl-net-http (~> 2.0)
110
- rubysl-net-imap (~> 2.0)
111
- rubysl-net-pop (~> 2.0)
112
- rubysl-net-protocol (~> 2.0)
113
- rubysl-net-smtp (~> 2.0)
114
- rubysl-net-telnet (~> 2.0)
115
- rubysl-nkf (~> 2.0)
116
- rubysl-observer (~> 2.0)
117
- rubysl-open-uri (~> 2.0)
118
- rubysl-open3 (~> 2.0)
119
- rubysl-openssl (~> 2.0)
120
- rubysl-optparse (~> 2.0)
121
- rubysl-ostruct (~> 2.0)
122
- rubysl-pathname (~> 2.0)
123
- rubysl-prettyprint (~> 2.0)
124
- rubysl-prime (~> 2.0)
125
- rubysl-profile (~> 2.0)
126
- rubysl-profiler (~> 2.0)
127
- rubysl-pstore (~> 2.0)
128
- rubysl-pty (~> 2.0)
129
- rubysl-rational (~> 2.0)
130
- rubysl-resolv (~> 2.0)
131
- rubysl-rexml (~> 2.0)
132
- rubysl-rinda (~> 2.0)
133
- rubysl-rss (~> 2.0)
134
- rubysl-scanf (~> 2.0)
135
- rubysl-securerandom (~> 2.0)
136
- rubysl-set (~> 2.0)
137
- rubysl-shellwords (~> 2.0)
138
- rubysl-singleton (~> 2.0)
139
- rubysl-socket (~> 2.0)
140
- rubysl-stringio (~> 2.0)
141
- rubysl-strscan (~> 2.0)
142
- rubysl-sync (~> 2.0)
143
- rubysl-syslog (~> 2.0)
144
- rubysl-tempfile (~> 2.0)
145
- rubysl-thread (~> 2.0)
146
- rubysl-thwait (~> 2.0)
147
- rubysl-time (~> 2.0)
148
- rubysl-timeout (~> 2.0)
149
- rubysl-tmpdir (~> 2.0)
150
- rubysl-tsort (~> 2.0)
151
- rubysl-un (~> 2.0)
152
- rubysl-unicode_normalize (~> 2.0)
153
- rubysl-uri (~> 2.0)
154
- rubysl-weakref (~> 2.0)
155
- rubysl-webrick (~> 2.0)
156
- rubysl-xmlrpc (~> 2.0)
157
- rubysl-yaml (~> 2.0)
158
- rubysl-zlib (~> 2.0)
159
- rubysl-abbrev (2.0.4)
160
- rubysl-base64 (2.0.0)
161
- rubysl-benchmark (2.0.1)
162
- rubysl-bigdecimal (2.0.2)
163
- rubysl-cgi (2.0.1)
164
- rubysl-cgi-session (2.1.0)
165
- rubysl-cmath (2.0.0)
166
- rubysl-complex (2.0.0)
167
- rubysl-continuation (2.0.0)
168
- rubysl-coverage (2.1)
169
- rubysl-csv (2.0.2)
170
- rubysl-english (~> 2.0)
171
- rubysl-curses (2.0.1)
172
- rubysl-date (2.0.9)
173
- rubysl-delegate (2.0.1)
174
- rubysl-digest (2.0.8)
175
- rubysl-drb (2.0.1)
176
- rubysl-e2mmap (2.0.0)
177
- rubysl-english (2.0.0)
178
- rubysl-enumerator (2.0.0)
179
- rubysl-erb (2.0.2)
180
- rubysl-etc (2.0.3)
181
- ffi2-generators (~> 0.1)
182
- rubysl-expect (2.0.0)
183
- rubysl-fcntl (2.0.4)
184
- ffi2-generators (~> 0.1)
185
- rubysl-fiber (2.0.0)
186
- rubysl-fileutils (2.0.3)
187
- rubysl-find (2.0.1)
188
- rubysl-forwardable (2.0.1)
189
- rubysl-getoptlong (2.0.0)
190
- rubysl-gserver (2.0.0)
191
- rubysl-socket (~> 2.0)
192
- rubysl-thread (~> 2.0)
193
- rubysl-io-console (2.0.0)
194
- rubysl-io-nonblock (2.0.0)
195
- rubysl-io-wait (2.0.0)
196
- rubysl-ipaddr (2.0.0)
197
- rubysl-irb (2.1.1)
198
- rubysl-e2mmap (~> 2.0)
199
- rubysl-mathn (~> 2.0)
200
- rubysl-thread (~> 2.0)
201
- rubysl-logger (2.1.0)
202
- rubysl-mathn (2.0.0)
203
- rubysl-matrix (2.1.0)
204
- rubysl-e2mmap (~> 2.0)
205
- rubysl-mkmf (2.1)
206
- rubysl-fileutils (~> 2.0)
207
- rubysl-shellwords (~> 2.0)
208
- rubysl-monitor (2.0.0)
209
- rubysl-mutex_m (2.0.0)
210
- rubysl-net-ftp (2.0.1)
211
- rubysl-net-http (2.0.4)
212
- rubysl-cgi (~> 2.0)
213
- rubysl-erb (~> 2.0)
214
- rubysl-singleton (~> 2.0)
215
- rubysl-net-imap (2.0.1)
216
- rubysl-net-pop (2.0.1)
217
- rubysl-net-protocol (2.0.1)
218
- rubysl-net-smtp (2.0.1)
219
- rubysl-net-telnet (2.0.0)
220
- rubysl-nkf (2.0.1)
221
- rubysl-observer (2.0.0)
222
- rubysl-open-uri (2.0.0)
223
- rubysl-open3 (2.0.0)
224
- rubysl-openssl (2.9)
225
- rubysl-optparse (2.0.1)
226
- rubysl-shellwords (~> 2.0)
227
- rubysl-ostruct (2.1.0)
228
- rubysl-pathname (2.3)
229
- rubysl-prettyprint (2.0.3)
230
- rubysl-prime (2.0.1)
231
- rubysl-profile (2.0.0)
232
- rubysl-profiler (2.1)
233
- rubysl-pstore (2.0.0)
234
- rubysl-pty (2.0.3)
235
- rubysl-rational (2.0.1)
236
- rubysl-resolv (2.1.2)
237
- rubysl-rexml (2.0.4)
238
- rubysl-rinda (2.0.1)
239
- rubysl-rss (2.0.0)
240
- rubysl-scanf (2.0.0)
241
- rubysl-securerandom (2.0.0)
242
- rubysl-set (2.0.1)
243
- rubysl-shellwords (2.0.0)
244
- rubysl-singleton (2.0.0)
245
- rubysl-socket (2.2.1)
246
- rubysl-fcntl (~> 2.0)
247
- rubysl-stringio (2.1.0)
248
- rubysl-strscan (2.0.0)
249
- rubysl-sync (2.0.0)
250
- rubysl-syslog (2.1.0)
251
- ffi2-generators (~> 0.1)
252
- rubysl-tempfile (2.0.1)
253
- rubysl-thread (2.0.3)
254
- rubysl-thwait (2.0.0)
255
- rubysl-time (2.0.3)
256
- rubysl-timeout (2.0.0)
257
- rubysl-tmpdir (2.0.1)
258
- rubysl-tsort (2.0.1)
259
- rubysl-un (2.0.0)
260
- rubysl-fileutils (~> 2.0)
261
- rubysl-optparse (~> 2.0)
262
- rubysl-unicode_normalize (2.0)
263
- rubysl-uri (2.0.0)
264
- rubysl-weakref (2.0.0)
265
- rubysl-webrick (2.0.0)
266
- rubysl-xmlrpc (2.0.0)
267
- rubysl-yaml (2.1.0)
268
- rubysl-zlib (2.0.1)
269
- sixarm_ruby_unaccent (1.2.0)
270
- slop (3.6.0)
271
- sort_alphabetical (1.1.0)
272
- unicode_utils (>= 1.2.2)
273
- sprockets (2.2.3)
274
- hike (~> 1.2)
275
- multi_json (~> 1.0)
276
- rack (~> 1.0)
277
- tilt (~> 1.1, != 1.3.0)
278
- tilt (1.4.1)
279
- unicode_utils (1.4.0)
280
- wwtd (1.3.0)
281
-
282
- PLATFORMS
283
- ruby
284
-
285
- DEPENDENCIES
286
- actionpack (~> 3.2.17)
287
- country_select!
288
- pry (~> 0)
289
- psych
290
- racc
291
- rake
292
- rspec (~> 3)
293
- rubysl (~> 2.0)
294
- wwtd
295
-
296
- BUNDLED WITH
297
- 1.17.1