country_select 2.5.2 → 3.0.0

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
  SHA1:
3
- metadata.gz: 1dea784fe1d78c8a7b7d35502636b0de1b64879e
4
- data.tar.gz: ca5c6e5be03c82625ae7396a126759b456e5d04f
3
+ metadata.gz: 025e605430365a2ed7487f33c32d38369133b215
4
+ data.tar.gz: f368ff7295998c59f96837685163c05776263d83
5
5
  SHA512:
6
- metadata.gz: df7361d081db570f9195f0bd04e079a3ddd82a2083bfafb7fe1c9b2c6c20462b986001d17e551b54707a0bf02c5dbef98a178f6a32348b6650160df9e0b8c818
7
- data.tar.gz: 1019eeb1f5d5b9b323bed52bb37253a330829ad09093649b86291b070f67a27efd55406dfbd23f889f246638b923e57d86b0bb51bc087a0cdbab30e9c55de450
6
+ metadata.gz: 80c11a66e83d8ae22df1d81cc9e25ba6108814e394aba2c5d10ead28cbd32f837cdfa8a6c49735a2100d1a6c036bbd74e5595451b0d145234b01e046c36a00a9
7
+ data.tar.gz: c3dfea28c3c2c17b75d3c77ad7ad9f02335d946bb4c184f2f789f3425cee04de9c461e17f736d6d6832981587ace7aa68b40e1c2b7cbe8bb42b7fe6a62f9c75e
@@ -3,11 +3,10 @@ cache: bundler
3
3
  language: ruby
4
4
  script: "bundle exec rspec"
5
5
  rvm:
6
- - 1.9.3
7
6
  - 2.0.0
8
- - 2.1.5
9
- - 2.2.1
10
- - jruby-19mode
7
+ - 2.1.10
8
+ - 2.2.6
9
+ - 2.3.2
11
10
  - jruby-head
12
11
  - rbx-2
13
12
  - ruby-head
@@ -16,6 +15,7 @@ gemfile:
16
15
  - gemfiles/actionpack4.0.gemfile
17
16
  - gemfiles/actionpack4.1.gemfile
18
17
  - gemfiles/actionpack4.2.gemfile
18
+ - gemfiles/actionpack5.0.gemfile
19
19
  - gemfiles/actionpack.edge.gemfile
20
20
  matrix:
21
21
  allow_failures:
@@ -23,9 +23,15 @@ matrix:
23
23
  - rvm: jruby-head
24
24
  - rvm: rbx-2
25
25
  exclude:
26
- - rvm: 1.9.3
26
+ - rvm: 2.0.0
27
27
  gemfile: gemfiles/actionpack.edge.gemfile
28
28
  - rvm: 2.0.0
29
+ gemfile: gemfiles/actionpack5.0.gemfile
30
+ - rvm: 2.1.10
29
31
  gemfile: gemfiles/actionpack.edge.gemfile
30
- - rvm: jruby-19mode
32
+ - rvm: 2.1.10
33
+ gemfile: gemfiles/actionpack5.0.gemfile
34
+ - rvm: rbx-2
31
35
  gemfile: gemfiles/actionpack.edge.gemfile
36
+ - rvm: rbx-2
37
+ gemfile: gemfiles/actionpack5.0.gemfile
@@ -1,3 +1,8 @@
1
+ ## 3.0.0
2
+
3
+ * #138 - Upgrade to Countries 2.0
4
+ * #136 - Drop support for Ruby 1.9.3 as countries 2.0 no longer supports it
5
+
1
6
  ## 2.5.2 2015-11-10
2
7
 
3
8
  * #127 - Fix multi-selects - @jjballano
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- country_select (2.5.1)
5
- countries (~> 1.2.0)
4
+ country_select (3.0.0.alpha1)
5
+ countries (~> 2.0)
6
6
  sort_alphabetical (~> 1.0)
7
7
 
8
8
  GEM
@@ -26,10 +26,10 @@ GEM
26
26
  multi_json (~> 1.0)
27
27
  builder (3.0.4)
28
28
  coderay (1.1.0)
29
- countries (1.2.1)
30
- currencies (~> 0.4.2)
29
+ countries (2.0.2)
31
30
  i18n_data (~> 0.7.0)
32
- currencies (0.4.2)
31
+ money (~> 6.7)
32
+ unicode_utils (~> 1.4)
33
33
  diff-lcs (1.2.5)
34
34
  erubis (2.7.0)
35
35
  ffi2-generators (0.1.1)
@@ -38,6 +38,9 @@ GEM
38
38
  i18n_data (0.7.0)
39
39
  journey (1.0.4)
40
40
  method_source (0.8.2)
41
+ money (6.7.1)
42
+ i18n (>= 0.6.4, <= 0.7.0)
43
+ sixarm_ruby_unaccent (>= 1.1.1, < 2)
41
44
  multi_json (1.11.2)
42
45
  pry (0.10.1)
43
46
  coderay (~> 1.1.0)
@@ -263,8 +266,9 @@ GEM
263
266
  rubysl-xmlrpc (2.0.0)
264
267
  rubysl-yaml (2.1.0)
265
268
  rubysl-zlib (2.0.1)
269
+ sixarm_ruby_unaccent (1.1.1)
266
270
  slop (3.6.0)
267
- sort_alphabetical (1.0.2)
271
+ sort_alphabetical (1.1.0)
268
272
  unicode_utils (>= 1.2.2)
269
273
  sprockets (2.2.3)
270
274
  hike (~> 1.2)
@@ -290,4 +294,4 @@ DEPENDENCIES
290
294
  wwtd
291
295
 
292
296
  BUNDLED WITH
293
- 1.10.6
297
+ 1.13.6
@@ -19,12 +19,14 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ['lib']
21
21
 
22
+ s.required_ruby_version = '>= 2'
23
+
22
24
  s.add_development_dependency 'actionpack', '~> 3'
23
25
  s.add_development_dependency 'pry', '~> 0'
24
26
  s.add_development_dependency 'rake'
25
27
  s.add_development_dependency 'rspec', '~> 3'
26
28
  s.add_development_dependency 'wwtd'
27
29
 
28
- s.add_dependency 'countries', '~> 1.2.0'
30
+ s.add_dependency 'countries', '~> 2.0'
29
31
  s.add_dependency 'sort_alphabetical', '~> 1.0'
30
32
  end
@@ -1,87 +1,87 @@
1
1
  GIT
2
2
  remote: https://github.com/rails/rails.git
3
- revision: 186418724c6da41caeb0fd304894bcfcc154b8bb
3
+ revision: bce3d1f8c01a125ef56d82967cb23daa258bb58d
4
4
  specs:
5
- actionpack (5.0.0.alpha)
6
- actionview (= 5.0.0.alpha)
7
- activesupport (= 5.0.0.alpha)
8
- rack (~> 1.6)
9
- rack-test (~> 0.6.2)
10
- rails-dom-testing (~> 1.0, >= 1.0.5)
11
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
12
- actionview (5.0.0.alpha)
13
- activesupport (= 5.0.0.alpha)
5
+ actionpack (5.1.0.alpha)
6
+ actionview (= 5.1.0.alpha)
7
+ activesupport (= 5.1.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.1.0.alpha)
13
+ activesupport (= 5.1.0.alpha)
14
14
  builder (~> 3.1)
15
15
  erubis (~> 2.7.0)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
18
- activesupport (5.0.0.alpha)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
+ activesupport (5.1.0.alpha)
19
+ concurrent-ruby (~> 1.0, >= 1.0.2)
19
20
  i18n (~> 0.7)
20
- json (~> 1.7, >= 1.7.7)
21
21
  minitest (~> 5.1)
22
- thread_safe (~> 0.3, >= 0.3.4)
23
22
  tzinfo (~> 1.1)
24
23
 
25
24
  PATH
26
25
  remote: ../
27
26
  specs:
28
- country_select (2.5.1)
29
- countries (~> 1.2.0)
27
+ country_select (3.0.0.alpha1)
28
+ countries (~> 2.0)
30
29
  sort_alphabetical (~> 1.0)
31
30
 
32
31
  GEM
33
32
  remote: https://rubygems.org/
34
33
  specs:
35
34
  builder (3.2.2)
36
- coderay (1.1.0)
37
- countries (1.2.1)
38
- currencies (~> 0.4.2)
35
+ coderay (1.1.1)
36
+ concurrent-ruby (1.0.2)
37
+ countries (2.0.1)
39
38
  i18n_data (~> 0.7.0)
40
- currencies (0.4.2)
39
+ money (~> 6.0)
40
+ unicode_utils (~> 1.4)
41
41
  diff-lcs (1.2.5)
42
42
  erubis (2.7.0)
43
43
  ffi2-generators (0.1.1)
44
44
  i18n (0.7.0)
45
45
  i18n_data (0.7.0)
46
- json (1.8.2)
47
- loofah (2.0.1)
46
+ loofah (2.0.3)
48
47
  nokogiri (>= 1.5.9)
49
48
  method_source (0.8.2)
50
- mini_portile (0.6.2)
51
- minitest (5.5.1)
52
- nokogiri (1.6.6.2)
53
- mini_portile (~> 0.6.0)
54
- pry (0.10.1)
49
+ mini_portile2 (2.1.0)
50
+ minitest (5.9.1)
51
+ money (6.7.1)
52
+ i18n (>= 0.6.4, <= 0.7.0)
53
+ sixarm_ruby_unaccent (>= 1.1.1, < 2)
54
+ nokogiri (1.6.8.1)
55
+ mini_portile2 (~> 2.1.0)
56
+ pry (0.10.4)
55
57
  coderay (~> 1.1.0)
56
58
  method_source (~> 0.8.1)
57
59
  slop (~> 3.4)
58
- psych (2.0.12)
59
- racc (1.4.12)
60
- rack (1.6.0)
60
+ psych (2.2.0)
61
+ racc (1.4.14)
62
+ rack (2.0.1)
61
63
  rack-test (0.6.3)
62
64
  rack (>= 1.0)
63
- rails-deprecated_sanitizer (1.0.3)
64
- activesupport (>= 4.2.0.alpha)
65
- rails-dom-testing (1.0.5)
66
- activesupport (>= 4.2.0.beta, < 5.0)
65
+ rails-dom-testing (2.0.1)
66
+ activesupport (>= 4.2.0, < 6.0)
67
67
  nokogiri (~> 1.6.0)
68
- rails-deprecated_sanitizer (>= 1.0.1)
69
- rails-html-sanitizer (1.0.1)
68
+ rails-html-sanitizer (1.0.3)
70
69
  loofah (~> 2.0)
71
- rake (10.4.2)
72
- rspec (3.1.0)
73
- rspec-core (~> 3.1.0)
74
- rspec-expectations (~> 3.1.0)
75
- rspec-mocks (~> 3.1.0)
76
- rspec-core (3.1.7)
77
- rspec-support (~> 3.1.0)
78
- rspec-expectations (3.1.2)
70
+ rake (11.3.0)
71
+ rspec (3.5.0)
72
+ rspec-core (~> 3.5.0)
73
+ rspec-expectations (~> 3.5.0)
74
+ rspec-mocks (~> 3.5.0)
75
+ rspec-core (3.5.4)
76
+ rspec-support (~> 3.5.0)
77
+ rspec-expectations (3.5.0)
79
78
  diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.1.0)
81
- rspec-mocks (3.1.3)
82
- rspec-support (~> 3.1.0)
83
- rspec-support (3.1.2)
84
- rubysl (2.1.0)
79
+ rspec-support (~> 3.5.0)
80
+ rspec-mocks (3.5.0)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.5.0)
83
+ rspec-support (3.5.0)
84
+ rubysl (2.2.0)
85
85
  rubysl-abbrev (~> 2.0)
86
86
  rubysl-base64 (~> 2.0)
87
87
  rubysl-benchmark (~> 2.0)
@@ -166,6 +166,7 @@ GEM
166
166
  rubysl-tmpdir (~> 2.0)
167
167
  rubysl-tsort (~> 2.0)
168
168
  rubysl-un (~> 2.0)
169
+ rubysl-unicode_normalize (~> 2.0)
169
170
  rubysl-uri (~> 2.0)
170
171
  rubysl-weakref (~> 2.0)
171
172
  rubysl-webrick (~> 2.0)
@@ -177,17 +178,17 @@ GEM
177
178
  rubysl-benchmark (2.0.1)
178
179
  rubysl-bigdecimal (2.0.2)
179
180
  rubysl-cgi (2.0.1)
180
- rubysl-cgi-session (2.0.1)
181
+ rubysl-cgi-session (2.1.0)
181
182
  rubysl-cmath (2.0.0)
182
183
  rubysl-complex (2.0.0)
183
184
  rubysl-continuation (2.0.0)
184
- rubysl-coverage (2.0.3)
185
+ rubysl-coverage (2.1)
185
186
  rubysl-csv (2.0.2)
186
187
  rubysl-english (~> 2.0)
187
188
  rubysl-curses (2.0.1)
188
189
  rubysl-date (2.0.9)
189
190
  rubysl-delegate (2.0.1)
190
- rubysl-digest (2.0.3)
191
+ rubysl-digest (2.0.8)
191
192
  rubysl-drb (2.0.1)
192
193
  rubysl-e2mmap (2.0.0)
193
194
  rubysl-english (2.0.0)
@@ -218,7 +219,7 @@ GEM
218
219
  rubysl-mathn (2.0.0)
219
220
  rubysl-matrix (2.1.0)
220
221
  rubysl-e2mmap (~> 2.0)
221
- rubysl-mkmf (2.0.1)
222
+ rubysl-mkmf (2.1)
222
223
  rubysl-fileutils (~> 2.0)
223
224
  rubysl-shellwords (~> 2.0)
224
225
  rubysl-monitor (2.0.0)
@@ -237,19 +238,19 @@ GEM
237
238
  rubysl-observer (2.0.0)
238
239
  rubysl-open-uri (2.0.0)
239
240
  rubysl-open3 (2.0.0)
240
- rubysl-openssl (2.2.1)
241
+ rubysl-openssl (2.9)
241
242
  rubysl-optparse (2.0.1)
242
243
  rubysl-shellwords (~> 2.0)
243
- rubysl-ostruct (2.0.4)
244
- rubysl-pathname (2.1.0)
244
+ rubysl-ostruct (2.1.0)
245
+ rubysl-pathname (2.3)
245
246
  rubysl-prettyprint (2.0.3)
246
247
  rubysl-prime (2.0.1)
247
248
  rubysl-profile (2.0.0)
248
- rubysl-profiler (2.0.1)
249
+ rubysl-profiler (2.1)
249
250
  rubysl-pstore (2.0.0)
250
251
  rubysl-pty (2.0.3)
251
252
  rubysl-rational (2.0.1)
252
- rubysl-resolv (2.1.0)
253
+ rubysl-resolv (2.1.2)
253
254
  rubysl-rexml (2.0.4)
254
255
  rubysl-rinda (2.0.1)
255
256
  rubysl-rss (2.0.0)
@@ -258,14 +259,15 @@ GEM
258
259
  rubysl-set (2.0.1)
259
260
  rubysl-shellwords (2.0.0)
260
261
  rubysl-singleton (2.0.0)
261
- rubysl-socket (2.0.1)
262
- rubysl-stringio (2.0.0)
262
+ rubysl-socket (2.2)
263
+ rubysl-fcntl (~> 2.0)
264
+ rubysl-stringio (2.1.0)
263
265
  rubysl-strscan (2.0.0)
264
266
  rubysl-sync (2.0.0)
265
267
  rubysl-syslog (2.1.0)
266
268
  ffi2-generators (~> 0.1)
267
269
  rubysl-tempfile (2.0.1)
268
- rubysl-thread (2.0.2)
270
+ rubysl-thread (2.0.3)
269
271
  rubysl-thwait (2.0.0)
270
272
  rubysl-time (2.0.3)
271
273
  rubysl-timeout (2.0.0)
@@ -274,20 +276,22 @@ GEM
274
276
  rubysl-un (2.0.0)
275
277
  rubysl-fileutils (~> 2.0)
276
278
  rubysl-optparse (~> 2.0)
279
+ rubysl-unicode_normalize (2.0)
277
280
  rubysl-uri (2.0.0)
278
281
  rubysl-weakref (2.0.0)
279
282
  rubysl-webrick (2.0.0)
280
283
  rubysl-xmlrpc (2.0.0)
281
284
  rubysl-yaml (2.1.0)
282
285
  rubysl-zlib (2.0.1)
286
+ sixarm_ruby_unaccent (1.1.1)
283
287
  slop (3.6.0)
284
288
  sort_alphabetical (1.0.2)
285
289
  unicode_utils (>= 1.2.2)
286
- thread_safe (0.3.4)
290
+ thread_safe (0.3.5)
287
291
  tzinfo (1.2.2)
288
292
  thread_safe (~> 0.1)
289
293
  unicode_utils (1.4.0)
290
- wwtd (0.7.0)
294
+ wwtd (1.3.0)
291
295
 
292
296
  PLATFORMS
293
297
  ruby
@@ -306,4 +310,4 @@ DEPENDENCIES
306
310
  wwtd
307
311
 
308
312
  BUNDLED WITH
309
- 1.10.6
313
+ 1.13.6
@@ -1,16 +1,16 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- country_select (2.5.1)
5
- countries (~> 1.2.0)
4
+ country_select (3.0.0.alpha1)
5
+ countries (~> 2.0)
6
6
  sort_alphabetical (~> 1.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (3.2.22)
12
- activemodel (= 3.2.22)
13
- activesupport (= 3.2.22)
11
+ actionpack (3.2.22.5)
12
+ activemodel (= 3.2.22.5)
13
+ activesupport (= 3.2.22.5)
14
14
  builder (~> 3.0.0)
15
15
  erubis (~> 2.7.0)
16
16
  journey (~> 1.0.4)
@@ -18,18 +18,18 @@ GEM
18
18
  rack-cache (~> 1.2)
19
19
  rack-test (~> 0.6.1)
20
20
  sprockets (~> 2.2.1)
21
- activemodel (3.2.22)
22
- activesupport (= 3.2.22)
21
+ activemodel (3.2.22.5)
22
+ activesupport (= 3.2.22.5)
23
23
  builder (~> 3.0.0)
24
- activesupport (3.2.22)
24
+ activesupport (3.2.22.5)
25
25
  i18n (~> 0.6, >= 0.6.4)
26
26
  multi_json (~> 1.0)
27
27
  builder (3.0.4)
28
- coderay (1.1.0)
29
- countries (1.2.1)
30
- currencies (~> 0.4.2)
28
+ coderay (1.1.1)
29
+ countries (2.0.1)
31
30
  i18n_data (~> 0.7.0)
32
- currencies (0.4.2)
31
+ money (~> 6.0)
32
+ unicode_utils (~> 1.4)
33
33
  diff-lcs (1.2.5)
34
34
  erubis (2.7.0)
35
35
  ffi2-generators (0.1.1)
@@ -38,33 +38,36 @@ GEM
38
38
  i18n_data (0.7.0)
39
39
  journey (1.0.4)
40
40
  method_source (0.8.2)
41
- multi_json (1.11.2)
42
- pry (0.10.3)
41
+ money (6.7.1)
42
+ i18n (>= 0.6.4, <= 0.7.0)
43
+ sixarm_ruby_unaccent (>= 1.1.1, < 2)
44
+ multi_json (1.12.1)
45
+ pry (0.10.4)
43
46
  coderay (~> 1.1.0)
44
47
  method_source (~> 0.8.1)
45
48
  slop (~> 3.4)
46
- psych (2.0.15)
47
- racc (1.4.13)
49
+ psych (2.2.0)
50
+ racc (1.4.14)
48
51
  rack (1.4.7)
49
- rack-cache (1.5.1)
52
+ rack-cache (1.6.1)
50
53
  rack (>= 0.4)
51
54
  rack-test (0.6.3)
52
55
  rack (>= 1.0)
53
- rake (10.4.2)
54
- rspec (3.3.0)
55
- rspec-core (~> 3.3.0)
56
- rspec-expectations (~> 3.3.0)
57
- rspec-mocks (~> 3.3.0)
58
- rspec-core (3.3.2)
59
- rspec-support (~> 3.3.0)
60
- rspec-expectations (3.3.1)
56
+ rake (11.3.0)
57
+ rspec (3.5.0)
58
+ rspec-core (~> 3.5.0)
59
+ rspec-expectations (~> 3.5.0)
60
+ rspec-mocks (~> 3.5.0)
61
+ rspec-core (3.5.4)
62
+ rspec-support (~> 3.5.0)
63
+ rspec-expectations (3.5.0)
61
64
  diff-lcs (>= 1.2.0, < 2.0)
62
- rspec-support (~> 3.3.0)
63
- rspec-mocks (3.3.2)
65
+ rspec-support (~> 3.5.0)
66
+ rspec-mocks (3.5.0)
64
67
  diff-lcs (>= 1.2.0, < 2.0)
65
- rspec-support (~> 3.3.0)
66
- rspec-support (3.3.0)
67
- rubysl (2.1.0)
68
+ rspec-support (~> 3.5.0)
69
+ rspec-support (3.5.0)
70
+ rubysl (2.2.0)
68
71
  rubysl-abbrev (~> 2.0)
69
72
  rubysl-base64 (~> 2.0)
70
73
  rubysl-benchmark (~> 2.0)
@@ -149,6 +152,7 @@ GEM
149
152
  rubysl-tmpdir (~> 2.0)
150
153
  rubysl-tsort (~> 2.0)
151
154
  rubysl-un (~> 2.0)
155
+ rubysl-unicode_normalize (~> 2.0)
152
156
  rubysl-uri (~> 2.0)
153
157
  rubysl-weakref (~> 2.0)
154
158
  rubysl-webrick (~> 2.0)
@@ -160,11 +164,11 @@ GEM
160
164
  rubysl-benchmark (2.0.1)
161
165
  rubysl-bigdecimal (2.0.2)
162
166
  rubysl-cgi (2.0.1)
163
- rubysl-cgi-session (2.0.1)
167
+ rubysl-cgi-session (2.1.0)
164
168
  rubysl-cmath (2.0.0)
165
169
  rubysl-complex (2.0.0)
166
170
  rubysl-continuation (2.0.0)
167
- rubysl-coverage (2.0.3)
171
+ rubysl-coverage (2.1)
168
172
  rubysl-csv (2.0.2)
169
173
  rubysl-english (~> 2.0)
170
174
  rubysl-curses (2.0.1)
@@ -201,7 +205,7 @@ GEM
201
205
  rubysl-mathn (2.0.0)
202
206
  rubysl-matrix (2.1.0)
203
207
  rubysl-e2mmap (~> 2.0)
204
- rubysl-mkmf (2.0.1)
208
+ rubysl-mkmf (2.1)
205
209
  rubysl-fileutils (~> 2.0)
206
210
  rubysl-shellwords (~> 2.0)
207
211
  rubysl-monitor (2.0.0)
@@ -220,15 +224,15 @@ GEM
220
224
  rubysl-observer (2.0.0)
221
225
  rubysl-open-uri (2.0.0)
222
226
  rubysl-open3 (2.0.0)
223
- rubysl-openssl (2.3.1)
227
+ rubysl-openssl (2.9)
224
228
  rubysl-optparse (2.0.1)
225
229
  rubysl-shellwords (~> 2.0)
226
- rubysl-ostruct (2.0.4)
227
- rubysl-pathname (2.1.0)
230
+ rubysl-ostruct (2.1.0)
231
+ rubysl-pathname (2.3)
228
232
  rubysl-prettyprint (2.0.3)
229
233
  rubysl-prime (2.0.1)
230
234
  rubysl-profile (2.0.0)
231
- rubysl-profiler (2.0.1)
235
+ rubysl-profiler (2.1)
232
236
  rubysl-pstore (2.0.0)
233
237
  rubysl-pty (2.0.3)
234
238
  rubysl-rational (2.0.1)
@@ -241,8 +245,9 @@ GEM
241
245
  rubysl-set (2.0.1)
242
246
  rubysl-shellwords (2.0.0)
243
247
  rubysl-singleton (2.0.0)
244
- rubysl-socket (2.0.1)
245
- rubysl-stringio (2.0.0)
248
+ rubysl-socket (2.2)
249
+ rubysl-fcntl (~> 2.0)
250
+ rubysl-stringio (2.1.0)
246
251
  rubysl-strscan (2.0.0)
247
252
  rubysl-sync (2.0.0)
248
253
  rubysl-syslog (2.1.0)
@@ -257,12 +262,14 @@ GEM
257
262
  rubysl-un (2.0.0)
258
263
  rubysl-fileutils (~> 2.0)
259
264
  rubysl-optparse (~> 2.0)
265
+ rubysl-unicode_normalize (2.0)
260
266
  rubysl-uri (2.0.0)
261
267
  rubysl-weakref (2.0.0)
262
268
  rubysl-webrick (2.0.0)
263
269
  rubysl-xmlrpc (2.0.0)
264
270
  rubysl-yaml (2.1.0)
265
271
  rubysl-zlib (2.0.1)
272
+ sixarm_ruby_unaccent (1.1.1)
266
273
  slop (3.6.0)
267
274
  sort_alphabetical (1.0.2)
268
275
  unicode_utils (>= 1.2.2)
@@ -273,7 +280,7 @@ GEM
273
280
  tilt (~> 1.1, != 1.3.0)
274
281
  tilt (1.4.1)
275
282
  unicode_utils (1.4.0)
276
- wwtd (1.1.1)
283
+ wwtd (1.3.0)
277
284
 
278
285
  PLATFORMS
279
286
  ruby
@@ -290,4 +297,4 @@ DEPENDENCIES
290
297
  wwtd
291
298
 
292
299
  BUNDLED WITH
293
- 1.10.6
300
+ 1.13.6