country_select 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- country_select (3.0.0.alpha1)
4
+ country_select (3.0.0)
5
5
  countries (~> 2.0)
6
6
  sort_alphabetical (~> 1.0)
7
7
 
@@ -23,46 +23,46 @@ GEM
23
23
  minitest (~> 5.1)
24
24
  thread_safe (~> 0.1)
25
25
  tzinfo (~> 1.1)
26
- builder (3.2.2)
26
+ builder (3.2.3)
27
27
  coderay (1.1.1)
28
- countries (2.0.1)
28
+ countries (2.0.8)
29
29
  i18n_data (~> 0.7.0)
30
- money (~> 6.0)
30
+ money (~> 6.7)
31
+ sixarm_ruby_unaccent (~> 1.1)
31
32
  unicode_utils (~> 1.4)
32
- diff-lcs (1.2.5)
33
+ diff-lcs (1.3)
33
34
  erubis (2.7.0)
34
35
  ffi2-generators (0.1.1)
35
- i18n (0.7.0)
36
+ i18n (0.8.6)
36
37
  i18n_data (0.7.0)
37
- json (1.8.3)
38
+ json (1.8.6)
38
39
  method_source (0.8.2)
39
- minitest (5.9.1)
40
- money (6.7.1)
41
- i18n (>= 0.6.4, <= 0.7.0)
42
- sixarm_ruby_unaccent (>= 1.1.1, < 2)
40
+ minitest (5.10.2)
41
+ money (6.9.0)
42
+ i18n (>= 0.6.4, < 0.9)
43
43
  pry (0.10.4)
44
44
  coderay (~> 1.1.0)
45
45
  method_source (~> 0.8.1)
46
46
  slop (~> 3.4)
47
- psych (2.2.0)
47
+ psych (2.2.4)
48
48
  racc (1.4.14)
49
49
  rack (1.5.5)
50
50
  rack-test (0.6.3)
51
51
  rack (>= 1.0)
52
- rake (11.3.0)
53
- rspec (3.5.0)
54
- rspec-core (~> 3.5.0)
55
- rspec-expectations (~> 3.5.0)
56
- rspec-mocks (~> 3.5.0)
57
- rspec-core (3.5.4)
58
- rspec-support (~> 3.5.0)
59
- rspec-expectations (3.5.0)
52
+ rake (12.0.0)
53
+ rspec (3.6.0)
54
+ rspec-core (~> 3.6.0)
55
+ rspec-expectations (~> 3.6.0)
56
+ rspec-mocks (~> 3.6.0)
57
+ rspec-core (3.6.0)
58
+ rspec-support (~> 3.6.0)
59
+ rspec-expectations (3.6.0)
60
60
  diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.5.0)
62
- rspec-mocks (3.5.0)
61
+ rspec-support (~> 3.6.0)
62
+ rspec-mocks (3.6.0)
63
63
  diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.5.0)
65
- rspec-support (3.5.0)
64
+ rspec-support (~> 3.6.0)
65
+ rspec-support (3.6.0)
66
66
  rubysl (2.2.0)
67
67
  rubysl-abbrev (~> 2.0)
68
68
  rubysl-base64 (~> 2.0)
@@ -241,7 +241,7 @@ GEM
241
241
  rubysl-set (2.0.1)
242
242
  rubysl-shellwords (2.0.0)
243
243
  rubysl-singleton (2.0.0)
244
- rubysl-socket (2.2)
244
+ rubysl-socket (2.2.1)
245
245
  rubysl-fcntl (~> 2.0)
246
246
  rubysl-stringio (2.1.0)
247
247
  rubysl-strscan (2.0.0)
@@ -265,12 +265,12 @@ GEM
265
265
  rubysl-xmlrpc (2.0.0)
266
266
  rubysl-yaml (2.1.0)
267
267
  rubysl-zlib (2.0.1)
268
- sixarm_ruby_unaccent (1.1.1)
268
+ sixarm_ruby_unaccent (1.1.2)
269
269
  slop (3.6.0)
270
- sort_alphabetical (1.0.2)
270
+ sort_alphabetical (1.1.0)
271
271
  unicode_utils (>= 1.2.2)
272
- thread_safe (0.3.5)
273
- tzinfo (1.2.2)
272
+ thread_safe (0.3.6)
273
+ tzinfo (1.2.3)
274
274
  thread_safe (~> 0.1)
275
275
  unicode_utils (1.4.0)
276
276
  wwtd (1.3.0)
@@ -290,4 +290,4 @@ DEPENDENCIES
290
290
  wwtd
291
291
 
292
292
  BUNDLED WITH
293
- 1.13.6
293
+ 1.15.1
@@ -4,6 +4,9 @@ gemspec :path => "../"
4
4
 
5
5
  gem "actionpack", "~> 4.2.0"
6
6
 
7
+ # Need to specify nokogiri to prevent rails-dom-testing from loading one incompatible with ruby < 2.1
8
+ gem "nokogiri", "~> 1.6.0"
9
+
7
10
  platforms :rbx do
8
11
  gem "racc"
9
12
  gem "rubysl", "~> 2.0"
@@ -1,85 +1,83 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- country_select (3.0.0.alpha1)
4
+ country_select (3.0.0)
5
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 (4.2.7.1)
12
- actionview (= 4.2.7.1)
13
- activesupport (= 4.2.7.1)
11
+ actionpack (4.2.9)
12
+ actionview (= 4.2.9)
13
+ activesupport (= 4.2.9)
14
14
  rack (~> 1.6)
15
15
  rack-test (~> 0.6.2)
16
16
  rails-dom-testing (~> 1.0, >= 1.0.5)
17
17
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (4.2.7.1)
19
- activesupport (= 4.2.7.1)
18
+ actionview (4.2.9)
19
+ activesupport (= 4.2.9)
20
20
  builder (~> 3.1)
21
21
  erubis (~> 2.7.0)
22
22
  rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- activesupport (4.2.7.1)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
+ activesupport (4.2.9)
25
25
  i18n (~> 0.7)
26
- json (~> 1.7, >= 1.7.7)
27
26
  minitest (~> 5.1)
28
27
  thread_safe (~> 0.3, >= 0.3.4)
29
28
  tzinfo (~> 1.1)
30
- builder (3.2.2)
29
+ builder (3.2.3)
31
30
  coderay (1.1.1)
32
- countries (2.0.1)
31
+ countries (2.0.8)
33
32
  i18n_data (~> 0.7.0)
34
- money (~> 6.0)
33
+ money (~> 6.7)
34
+ sixarm_ruby_unaccent (~> 1.1)
35
35
  unicode_utils (~> 1.4)
36
- diff-lcs (1.2.5)
36
+ diff-lcs (1.3)
37
37
  erubis (2.7.0)
38
38
  ffi2-generators (0.1.1)
39
- i18n (0.7.0)
39
+ i18n (0.8.6)
40
40
  i18n_data (0.7.0)
41
- json (1.8.3)
42
41
  loofah (2.0.3)
43
42
  nokogiri (>= 1.5.9)
44
43
  method_source (0.8.2)
45
44
  mini_portile2 (2.1.0)
46
- minitest (5.9.1)
47
- money (6.7.1)
48
- i18n (>= 0.6.4, <= 0.7.0)
49
- sixarm_ruby_unaccent (>= 1.1.1, < 2)
45
+ minitest (5.10.2)
46
+ money (6.9.0)
47
+ i18n (>= 0.6.4, < 0.9)
50
48
  nokogiri (1.6.8.1)
51
49
  mini_portile2 (~> 2.1.0)
52
50
  pry (0.10.4)
53
51
  coderay (~> 1.1.0)
54
52
  method_source (~> 0.8.1)
55
53
  slop (~> 3.4)
56
- psych (2.2.0)
54
+ psych (2.2.4)
57
55
  racc (1.4.14)
58
- rack (1.6.5)
56
+ rack (1.6.8)
59
57
  rack-test (0.6.3)
60
58
  rack (>= 1.0)
61
59
  rails-deprecated_sanitizer (1.0.3)
62
60
  activesupport (>= 4.2.0.alpha)
63
- rails-dom-testing (1.0.7)
61
+ rails-dom-testing (1.0.8)
64
62
  activesupport (>= 4.2.0.beta, < 5.0)
65
- nokogiri (~> 1.6.0)
63
+ nokogiri (~> 1.6)
66
64
  rails-deprecated_sanitizer (>= 1.0.1)
67
65
  rails-html-sanitizer (1.0.3)
68
66
  loofah (~> 2.0)
69
- rake (11.3.0)
70
- rspec (3.5.0)
71
- rspec-core (~> 3.5.0)
72
- rspec-expectations (~> 3.5.0)
73
- rspec-mocks (~> 3.5.0)
74
- rspec-core (3.5.4)
75
- rspec-support (~> 3.5.0)
76
- rspec-expectations (3.5.0)
67
+ rake (12.0.0)
68
+ rspec (3.6.0)
69
+ rspec-core (~> 3.6.0)
70
+ rspec-expectations (~> 3.6.0)
71
+ rspec-mocks (~> 3.6.0)
72
+ rspec-core (3.6.0)
73
+ rspec-support (~> 3.6.0)
74
+ rspec-expectations (3.6.0)
77
75
  diff-lcs (>= 1.2.0, < 2.0)
78
- rspec-support (~> 3.5.0)
79
- rspec-mocks (3.5.0)
76
+ rspec-support (~> 3.6.0)
77
+ rspec-mocks (3.6.0)
80
78
  diff-lcs (>= 1.2.0, < 2.0)
81
- rspec-support (~> 3.5.0)
82
- rspec-support (3.5.0)
79
+ rspec-support (~> 3.6.0)
80
+ rspec-support (3.6.0)
83
81
  rubysl (2.2.0)
84
82
  rubysl-abbrev (~> 2.0)
85
83
  rubysl-base64 (~> 2.0)
@@ -258,7 +256,7 @@ GEM
258
256
  rubysl-set (2.0.1)
259
257
  rubysl-shellwords (2.0.0)
260
258
  rubysl-singleton (2.0.0)
261
- rubysl-socket (2.2)
259
+ rubysl-socket (2.2.1)
262
260
  rubysl-fcntl (~> 2.0)
263
261
  rubysl-stringio (2.1.0)
264
262
  rubysl-strscan (2.0.0)
@@ -282,12 +280,12 @@ GEM
282
280
  rubysl-xmlrpc (2.0.0)
283
281
  rubysl-yaml (2.1.0)
284
282
  rubysl-zlib (2.0.1)
285
- sixarm_ruby_unaccent (1.1.1)
283
+ sixarm_ruby_unaccent (1.1.2)
286
284
  slop (3.6.0)
287
- sort_alphabetical (1.0.2)
285
+ sort_alphabetical (1.1.0)
288
286
  unicode_utils (>= 1.2.2)
289
- thread_safe (0.3.5)
290
- tzinfo (1.2.2)
287
+ thread_safe (0.3.6)
288
+ tzinfo (1.2.3)
291
289
  thread_safe (~> 0.1)
292
290
  unicode_utils (1.4.0)
293
291
  wwtd (1.3.0)
@@ -298,6 +296,7 @@ PLATFORMS
298
296
  DEPENDENCIES
299
297
  actionpack (~> 4.2.0)
300
298
  country_select!
299
+ nokogiri (~> 1.6.0)
301
300
  pry (~> 0)
302
301
  psych
303
302
  racc
@@ -307,4 +306,4 @@ DEPENDENCIES
307
306
  wwtd
308
307
 
309
308
  BUNDLED WITH
310
- 1.13.6
309
+ 1.15.1
@@ -1,87 +1,87 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- country_select (3.0.0.alpha1)
4
+ country_select (3.0.0)
5
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 (5.0.0.1)
12
- actionview (= 5.0.0.1)
13
- activesupport (= 5.0.0.1)
11
+ actionpack (5.0.4)
12
+ actionview (= 5.0.4)
13
+ activesupport (= 5.0.4)
14
14
  rack (~> 2.0)
15
15
  rack-test (~> 0.6.3)
16
16
  rails-dom-testing (~> 2.0)
17
17
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (5.0.0.1)
19
- activesupport (= 5.0.0.1)
18
+ actionview (5.0.4)
19
+ activesupport (= 5.0.4)
20
20
  builder (~> 3.1)
21
21
  erubis (~> 2.7.0)
22
22
  rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- activesupport (5.0.0.1)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
+ activesupport (5.0.4)
25
25
  concurrent-ruby (~> 1.0, >= 1.0.2)
26
26
  i18n (~> 0.7)
27
27
  minitest (~> 5.1)
28
28
  tzinfo (~> 1.1)
29
- builder (3.2.2)
29
+ builder (3.2.3)
30
30
  coderay (1.1.1)
31
- concurrent-ruby (1.0.2)
32
- countries (2.0.1)
31
+ concurrent-ruby (1.0.5)
32
+ countries (2.0.8)
33
33
  i18n_data (~> 0.7.0)
34
- money (~> 6.0)
34
+ money (~> 6.7)
35
+ sixarm_ruby_unaccent (~> 1.1)
35
36
  unicode_utils (~> 1.4)
36
- diff-lcs (1.2.5)
37
+ diff-lcs (1.3)
37
38
  erubis (2.7.0)
38
39
  ffi2-generators (0.1.1)
39
- i18n (0.7.0)
40
+ i18n (0.8.6)
40
41
  i18n_data (0.7.0)
41
42
  loofah (2.0.3)
42
43
  nokogiri (>= 1.5.9)
43
44
  method_source (0.8.2)
44
- mini_portile2 (2.1.0)
45
- minitest (5.9.1)
46
- money (6.7.1)
47
- i18n (>= 0.6.4, <= 0.7.0)
48
- sixarm_ruby_unaccent (>= 1.1.1, < 2)
49
- nokogiri (1.6.8.1)
50
- mini_portile2 (~> 2.1.0)
45
+ mini_portile2 (2.2.0)
46
+ minitest (5.10.2)
47
+ money (6.9.0)
48
+ i18n (>= 0.6.4, < 0.9)
49
+ nokogiri (1.8.0)
50
+ mini_portile2 (~> 2.2.0)
51
51
  pry (0.10.4)
52
52
  coderay (~> 1.1.0)
53
53
  method_source (~> 0.8.1)
54
54
  slop (~> 3.4)
55
- psych (2.2.0)
55
+ psych (2.2.4)
56
56
  racc (1.4.14)
57
- rack (2.0.1)
57
+ rack (2.0.3)
58
58
  rack-test (0.6.3)
59
59
  rack (>= 1.0)
60
- rails-dom-testing (2.0.1)
61
- activesupport (>= 4.2.0, < 6.0)
62
- nokogiri (~> 1.6.0)
60
+ rails-dom-testing (2.0.3)
61
+ activesupport (>= 4.2.0)
62
+ nokogiri (>= 1.6)
63
63
  rails-html-sanitizer (1.0.3)
64
64
  loofah (~> 2.0)
65
- railties (5.0.0.1)
66
- actionpack (= 5.0.0.1)
67
- activesupport (= 5.0.0.1)
65
+ railties (5.0.4)
66
+ actionpack (= 5.0.4)
67
+ activesupport (= 5.0.4)
68
68
  method_source
69
69
  rake (>= 0.8.7)
70
70
  thor (>= 0.18.1, < 2.0)
71
- rake (11.3.0)
72
- rspec (3.5.0)
73
- rspec-core (~> 3.5.0)
74
- rspec-expectations (~> 3.5.0)
75
- rspec-mocks (~> 3.5.0)
76
- rspec-core (3.5.4)
77
- rspec-support (~> 3.5.0)
78
- rspec-expectations (3.5.0)
71
+ rake (12.0.0)
72
+ rspec (3.6.0)
73
+ rspec-core (~> 3.6.0)
74
+ rspec-expectations (~> 3.6.0)
75
+ rspec-mocks (~> 3.6.0)
76
+ rspec-core (3.6.0)
77
+ rspec-support (~> 3.6.0)
78
+ rspec-expectations (3.6.0)
79
79
  diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.5.0)
81
- rspec-mocks (3.5.0)
80
+ rspec-support (~> 3.6.0)
81
+ rspec-mocks (3.6.0)
82
82
  diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.5.0)
84
- rspec-support (3.5.0)
83
+ rspec-support (~> 3.6.0)
84
+ rspec-support (3.6.0)
85
85
  rubysl (2.2.0)
86
86
  rubysl-abbrev (~> 2.0)
87
87
  rubysl-base64 (~> 2.0)
@@ -260,7 +260,7 @@ GEM
260
260
  rubysl-set (2.0.1)
261
261
  rubysl-shellwords (2.0.0)
262
262
  rubysl-singleton (2.0.0)
263
- rubysl-socket (2.2)
263
+ rubysl-socket (2.2.1)
264
264
  rubysl-fcntl (~> 2.0)
265
265
  rubysl-stringio (2.1.0)
266
266
  rubysl-strscan (2.0.0)
@@ -284,13 +284,13 @@ GEM
284
284
  rubysl-xmlrpc (2.0.0)
285
285
  rubysl-yaml (2.1.0)
286
286
  rubysl-zlib (2.0.1)
287
- sixarm_ruby_unaccent (1.1.1)
287
+ sixarm_ruby_unaccent (1.1.2)
288
288
  slop (3.6.0)
289
- sort_alphabetical (1.0.2)
289
+ sort_alphabetical (1.1.0)
290
290
  unicode_utils (>= 1.2.2)
291
- thor (0.19.1)
292
- thread_safe (0.3.5)
293
- tzinfo (1.2.2)
291
+ thor (0.19.4)
292
+ thread_safe (0.3.6)
293
+ tzinfo (1.2.3)
294
294
  thread_safe (~> 0.1)
295
295
  unicode_utils (1.4.0)
296
296
  wwtd (1.3.0)
@@ -311,4 +311,4 @@ DEPENDENCIES
311
311
  wwtd
312
312
 
313
313
  BUNDLED WITH
314
- 1.13.6
314
+ 1.15.1
@@ -0,0 +1,12 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec :path => "../"
4
+
5
+ gem "railties", "~> 5.1.1"
6
+ gem "actionpack", "~> 5.1.1"
7
+
8
+ platforms :rbx do
9
+ gem "racc"
10
+ gem "rubysl", "~> 2.0"
11
+ gem "psych"
12
+ end