country_select 1.2.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -1
  3. data/.rspec +1 -0
  4. data/.travis.yml +35 -11
  5. data/CHANGELOG.md +74 -1
  6. data/Gemfile +6 -1
  7. data/Gemfile.lock +300 -0
  8. data/README.md +138 -25
  9. data/Rakefile +3 -17
  10. data/UPGRADING.md +69 -0
  11. data/country_select.gemspec +11 -9
  12. data/gemfiles/actionpack.edge.gemfile +15 -0
  13. data/gemfiles/actionpack.edge.gemfile.lock +310 -0
  14. data/gemfiles/actionpack3.2.gemfile +8 -4
  15. data/gemfiles/actionpack3.2.gemfile.lock +265 -39
  16. data/gemfiles/actionpack4.0.gemfile +7 -3
  17. data/gemfiles/actionpack4.0.gemfile.lock +260 -36
  18. data/gemfiles/actionpack4.1.gemfile +11 -0
  19. data/gemfiles/actionpack4.1.gemfile.lock +290 -0
  20. data/gemfiles/actionpack4.2.gemfile +14 -0
  21. data/gemfiles/actionpack4.2.gemfile.lock +306 -0
  22. data/gemfiles/actionpack5.0.gemfile +12 -0
  23. data/gemfiles/actionpack5.0.gemfile.lock +311 -0
  24. data/gemfiles/actionpack5.1.gemfile +12 -0
  25. data/gemfiles/actionpack5.1.gemfile.lock +311 -0
  26. data/gemfiles/actionpack5.2.gemfile +12 -0
  27. data/gemfiles/actionpack5.2.gemfile.lock +312 -0
  28. data/lib/country_select.rb +10 -118
  29. data/lib/country_select/country_select_helper.rb +38 -0
  30. data/lib/country_select/formats.rb +7 -0
  31. data/lib/country_select/rails3/country_select_helper.rb +39 -0
  32. data/lib/country_select/tag_helper.rb +118 -0
  33. data/lib/country_select/version.rb +1 -1
  34. data/lib/country_select_without_sort_alphabetical.rb +13 -0
  35. data/spec/country_select_spec.rb +239 -111
  36. data/spec/spec_helper.rb +85 -7
  37. metadata +88 -42
  38. data/Appraisals +0 -19
  39. data/gemfiles/actionpack3.0.gemfile +0 -7
  40. data/gemfiles/actionpack3.0.gemfile.lock +0 -64
  41. data/gemfiles/actionpack3.1.gemfile +0 -7
  42. data/gemfiles/actionpack3.1.gemfile.lock +0 -72
  43. data/lib/country_select/countries.rb +0 -256
@@ -1,7 +1,11 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "https://rubygems.org"
4
2
 
5
- gem "actionpack", "~> 3.2.0"
3
+ gemspec :path => "../"
4
+
5
+ gem "actionpack", "~> 3.2.17"
6
6
 
7
- gemspec :path=>"../"
7
+ platforms :rbx do
8
+ gem "racc"
9
+ gem "rubysl", "~> 2.0"
10
+ gem "psych"
11
+ end
@@ -1,14 +1,16 @@
1
1
  PATH
2
- remote: /Users/scudco/projects/country_select
2
+ remote: ..
3
3
  specs:
4
- country_select (1.1.3)
4
+ country_select (4.0.0)
5
+ countries (~> 3.0)
6
+ sort_alphabetical (~> 1.0)
5
7
 
6
8
  GEM
7
9
  remote: https://rubygems.org/
8
10
  specs:
9
- actionpack (3.2.13)
10
- activemodel (= 3.2.13)
11
- activesupport (= 3.2.13)
11
+ actionpack (3.2.22.5)
12
+ activemodel (= 3.2.22.5)
13
+ activesupport (= 3.2.22.5)
12
14
  builder (~> 3.0.0)
13
15
  erubis (~> 2.7.0)
14
16
  journey (~> 1.0.4)
@@ -16,56 +18,280 @@ GEM
16
18
  rack-cache (~> 1.2)
17
19
  rack-test (~> 0.6.1)
18
20
  sprockets (~> 2.2.1)
19
- activemodel (3.2.13)
20
- activesupport (= 3.2.13)
21
+ activemodel (3.2.22.5)
22
+ activesupport (= 3.2.22.5)
21
23
  builder (~> 3.0.0)
22
- activesupport (3.2.13)
23
- i18n (= 0.6.1)
24
+ activesupport (3.2.22.5)
25
+ i18n (~> 0.6, >= 0.6.4)
24
26
  multi_json (~> 1.0)
25
- appraisal (0.5.2)
26
- bundler
27
- rake
28
27
  builder (3.0.4)
29
- coderay (1.0.9)
30
- diff-lcs (1.2.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)
31
34
  erubis (2.7.0)
32
- hike (1.2.2)
33
- i18n (0.6.1)
35
+ ffi2-generators (0.1.1)
36
+ hike (1.2.3)
37
+ i18n (0.8.6)
38
+ i18n_data (0.8.0)
34
39
  journey (1.0.4)
35
- method_source (0.8.1)
36
- multi_json (1.7.3)
37
- pry (0.9.12.2)
38
- coderay (~> 1.0.5)
39
- method_source (~> 0.8)
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)
40
45
  slop (~> 3.4)
41
- rack (1.4.5)
42
- rack-cache (1.2)
46
+ psych (2.2.4)
47
+ racc (1.4.14)
48
+ rack (1.4.7)
49
+ rack-cache (1.7.0)
43
50
  rack (>= 0.4)
44
- rack-test (0.6.2)
51
+ rack-test (0.6.3)
45
52
  rack (>= 1.0)
46
- rake (10.0.4)
47
- rspec (2.13.0)
48
- rspec-core (~> 2.13.0)
49
- rspec-expectations (~> 2.13.0)
50
- rspec-mocks (~> 2.13.0)
51
- rspec-core (2.13.1)
52
- rspec-expectations (2.13.0)
53
- diff-lcs (>= 1.1.3, < 2.0)
54
- rspec-mocks (2.13.1)
55
- slop (3.4.5)
56
- sprockets (2.2.2)
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)
57
274
  hike (~> 1.2)
58
275
  multi_json (~> 1.0)
59
276
  rack (~> 1.0)
60
277
  tilt (~> 1.1, != 1.3.0)
61
278
  tilt (1.4.1)
279
+ unicode_utils (1.4.0)
280
+ wwtd (1.3.0)
62
281
 
63
282
  PLATFORMS
64
283
  ruby
65
284
 
66
285
  DEPENDENCIES
67
- actionpack (~> 3.2.0)
68
- appraisal
286
+ actionpack (~> 3.2.17)
69
287
  country_select!
70
- pry
71
- rspec
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
@@ -1,7 +1,11 @@
1
- # This file was generated by Appraisal
2
-
3
1
  source "https://rubygems.org"
4
2
 
3
+ gemspec :path => "../"
4
+
5
5
  gem "actionpack", "~> 4.0.0"
6
6
 
7
- gemspec :path=>"../"
7
+ platforms :rbx do
8
+ gem "racc"
9
+ gem "rubysl", "~> 2.0"
10
+ gem "psych"
11
+ end
@@ -1,62 +1,286 @@
1
1
  PATH
2
- remote: /Users/scudco/projects/country_select
2
+ remote: ..
3
3
  specs:
4
- country_select (1.1.3)
4
+ country_select (4.0.0)
5
+ countries (~> 3.0)
6
+ sort_alphabetical (~> 1.0)
5
7
 
6
8
  GEM
7
9
  remote: https://rubygems.org/
8
10
  specs:
9
- actionpack (4.0.0)
10
- activesupport (= 4.0.0)
11
+ actionpack (4.0.13)
12
+ activesupport (= 4.0.13)
11
13
  builder (~> 3.1.0)
12
14
  erubis (~> 2.7.0)
13
15
  rack (~> 1.5.2)
14
16
  rack-test (~> 0.6.2)
15
- activesupport (4.0.0)
16
- i18n (~> 0.6, >= 0.6.4)
17
+ activesupport (4.0.13)
18
+ i18n (~> 0.6, >= 0.6.9)
17
19
  minitest (~> 4.2)
18
20
  multi_json (~> 1.3)
19
21
  thread_safe (~> 0.1)
20
22
  tzinfo (~> 0.3.37)
21
- appraisal (0.5.2)
22
- bundler
23
- rake
24
- atomic (1.1.10)
25
23
  builder (3.1.4)
26
- coderay (1.0.9)
27
- diff-lcs (1.2.4)
24
+ coderay (1.1.1)
25
+ countries (3.0.0)
26
+ i18n_data (~> 0.8.0)
27
+ sixarm_ruby_unaccent (~> 1.1)
28
+ unicode_utils (~> 1.4)
29
+ diff-lcs (1.3)
28
30
  erubis (2.7.0)
29
- i18n (0.6.4)
30
- method_source (0.8.1)
31
+ ffi2-generators (0.1.1)
32
+ i18n (0.8.6)
33
+ i18n_data (0.8.0)
34
+ method_source (0.8.2)
31
35
  minitest (4.7.5)
32
- multi_json (1.7.7)
33
- pry (0.9.12.2)
34
- coderay (~> 1.0.5)
35
- method_source (~> 0.8)
36
+ multi_json (1.12.1)
37
+ pry (0.10.4)
38
+ coderay (~> 1.1.0)
39
+ method_source (~> 0.8.1)
36
40
  slop (~> 3.4)
37
- rack (1.5.2)
38
- rack-test (0.6.2)
41
+ psych (2.2.4)
42
+ racc (1.4.14)
43
+ rack (1.5.5)
44
+ rack-test (0.6.3)
39
45
  rack (>= 1.0)
40
- rake (10.1.0)
41
- rspec (2.13.0)
42
- rspec-core (~> 2.13.0)
43
- rspec-expectations (~> 2.13.0)
44
- rspec-mocks (~> 2.13.0)
45
- rspec-core (2.13.1)
46
- rspec-expectations (2.13.0)
47
- diff-lcs (>= 1.1.3, < 2.0)
48
- rspec-mocks (2.13.1)
49
- slop (3.4.5)
50
- thread_safe (0.1.0)
51
- atomic
52
- tzinfo (0.3.37)
46
+ rake (12.0.0)
47
+ rspec (3.6.0)
48
+ rspec-core (~> 3.6.0)
49
+ rspec-expectations (~> 3.6.0)
50
+ rspec-mocks (~> 3.6.0)
51
+ rspec-core (3.6.0)
52
+ rspec-support (~> 3.6.0)
53
+ rspec-expectations (3.6.0)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.6.0)
56
+ rspec-mocks (3.6.0)
57
+ diff-lcs (>= 1.2.0, < 2.0)
58
+ rspec-support (~> 3.6.0)
59
+ rspec-support (3.6.0)
60
+ rubysl (2.2.0)
61
+ rubysl-abbrev (~> 2.0)
62
+ rubysl-base64 (~> 2.0)
63
+ rubysl-benchmark (~> 2.0)
64
+ rubysl-bigdecimal (~> 2.0)
65
+ rubysl-cgi (~> 2.0)
66
+ rubysl-cgi-session (~> 2.0)
67
+ rubysl-cmath (~> 2.0)
68
+ rubysl-complex (~> 2.0)
69
+ rubysl-continuation (~> 2.0)
70
+ rubysl-coverage (~> 2.0)
71
+ rubysl-csv (~> 2.0)
72
+ rubysl-curses (~> 2.0)
73
+ rubysl-date (~> 2.0)
74
+ rubysl-delegate (~> 2.0)
75
+ rubysl-digest (~> 2.0)
76
+ rubysl-drb (~> 2.0)
77
+ rubysl-e2mmap (~> 2.0)
78
+ rubysl-english (~> 2.0)
79
+ rubysl-enumerator (~> 2.0)
80
+ rubysl-erb (~> 2.0)
81
+ rubysl-etc (~> 2.0)
82
+ rubysl-expect (~> 2.0)
83
+ rubysl-fcntl (~> 2.0)
84
+ rubysl-fiber (~> 2.0)
85
+ rubysl-fileutils (~> 2.0)
86
+ rubysl-find (~> 2.0)
87
+ rubysl-forwardable (~> 2.0)
88
+ rubysl-getoptlong (~> 2.0)
89
+ rubysl-gserver (~> 2.0)
90
+ rubysl-io-console (~> 2.0)
91
+ rubysl-io-nonblock (~> 2.0)
92
+ rubysl-io-wait (~> 2.0)
93
+ rubysl-ipaddr (~> 2.0)
94
+ rubysl-irb (~> 2.1)
95
+ rubysl-logger (~> 2.0)
96
+ rubysl-mathn (~> 2.0)
97
+ rubysl-matrix (~> 2.0)
98
+ rubysl-mkmf (~> 2.0)
99
+ rubysl-monitor (~> 2.0)
100
+ rubysl-mutex_m (~> 2.0)
101
+ rubysl-net-ftp (~> 2.0)
102
+ rubysl-net-http (~> 2.0)
103
+ rubysl-net-imap (~> 2.0)
104
+ rubysl-net-pop (~> 2.0)
105
+ rubysl-net-protocol (~> 2.0)
106
+ rubysl-net-smtp (~> 2.0)
107
+ rubysl-net-telnet (~> 2.0)
108
+ rubysl-nkf (~> 2.0)
109
+ rubysl-observer (~> 2.0)
110
+ rubysl-open-uri (~> 2.0)
111
+ rubysl-open3 (~> 2.0)
112
+ rubysl-openssl (~> 2.0)
113
+ rubysl-optparse (~> 2.0)
114
+ rubysl-ostruct (~> 2.0)
115
+ rubysl-pathname (~> 2.0)
116
+ rubysl-prettyprint (~> 2.0)
117
+ rubysl-prime (~> 2.0)
118
+ rubysl-profile (~> 2.0)
119
+ rubysl-profiler (~> 2.0)
120
+ rubysl-pstore (~> 2.0)
121
+ rubysl-pty (~> 2.0)
122
+ rubysl-rational (~> 2.0)
123
+ rubysl-resolv (~> 2.0)
124
+ rubysl-rexml (~> 2.0)
125
+ rubysl-rinda (~> 2.0)
126
+ rubysl-rss (~> 2.0)
127
+ rubysl-scanf (~> 2.0)
128
+ rubysl-securerandom (~> 2.0)
129
+ rubysl-set (~> 2.0)
130
+ rubysl-shellwords (~> 2.0)
131
+ rubysl-singleton (~> 2.0)
132
+ rubysl-socket (~> 2.0)
133
+ rubysl-stringio (~> 2.0)
134
+ rubysl-strscan (~> 2.0)
135
+ rubysl-sync (~> 2.0)
136
+ rubysl-syslog (~> 2.0)
137
+ rubysl-tempfile (~> 2.0)
138
+ rubysl-thread (~> 2.0)
139
+ rubysl-thwait (~> 2.0)
140
+ rubysl-time (~> 2.0)
141
+ rubysl-timeout (~> 2.0)
142
+ rubysl-tmpdir (~> 2.0)
143
+ rubysl-tsort (~> 2.0)
144
+ rubysl-un (~> 2.0)
145
+ rubysl-unicode_normalize (~> 2.0)
146
+ rubysl-uri (~> 2.0)
147
+ rubysl-weakref (~> 2.0)
148
+ rubysl-webrick (~> 2.0)
149
+ rubysl-xmlrpc (~> 2.0)
150
+ rubysl-yaml (~> 2.0)
151
+ rubysl-zlib (~> 2.0)
152
+ rubysl-abbrev (2.0.4)
153
+ rubysl-base64 (2.0.0)
154
+ rubysl-benchmark (2.0.1)
155
+ rubysl-bigdecimal (2.0.2)
156
+ rubysl-cgi (2.0.1)
157
+ rubysl-cgi-session (2.1.0)
158
+ rubysl-cmath (2.0.0)
159
+ rubysl-complex (2.0.0)
160
+ rubysl-continuation (2.0.0)
161
+ rubysl-coverage (2.1)
162
+ rubysl-csv (2.0.2)
163
+ rubysl-english (~> 2.0)
164
+ rubysl-curses (2.0.1)
165
+ rubysl-date (2.0.9)
166
+ rubysl-delegate (2.0.1)
167
+ rubysl-digest (2.0.8)
168
+ rubysl-drb (2.0.1)
169
+ rubysl-e2mmap (2.0.0)
170
+ rubysl-english (2.0.0)
171
+ rubysl-enumerator (2.0.0)
172
+ rubysl-erb (2.0.2)
173
+ rubysl-etc (2.0.3)
174
+ ffi2-generators (~> 0.1)
175
+ rubysl-expect (2.0.0)
176
+ rubysl-fcntl (2.0.4)
177
+ ffi2-generators (~> 0.1)
178
+ rubysl-fiber (2.0.0)
179
+ rubysl-fileutils (2.0.3)
180
+ rubysl-find (2.0.1)
181
+ rubysl-forwardable (2.0.1)
182
+ rubysl-getoptlong (2.0.0)
183
+ rubysl-gserver (2.0.0)
184
+ rubysl-socket (~> 2.0)
185
+ rubysl-thread (~> 2.0)
186
+ rubysl-io-console (2.0.0)
187
+ rubysl-io-nonblock (2.0.0)
188
+ rubysl-io-wait (2.0.0)
189
+ rubysl-ipaddr (2.0.0)
190
+ rubysl-irb (2.1.1)
191
+ rubysl-e2mmap (~> 2.0)
192
+ rubysl-mathn (~> 2.0)
193
+ rubysl-thread (~> 2.0)
194
+ rubysl-logger (2.1.0)
195
+ rubysl-mathn (2.0.0)
196
+ rubysl-matrix (2.1.0)
197
+ rubysl-e2mmap (~> 2.0)
198
+ rubysl-mkmf (2.1)
199
+ rubysl-fileutils (~> 2.0)
200
+ rubysl-shellwords (~> 2.0)
201
+ rubysl-monitor (2.0.0)
202
+ rubysl-mutex_m (2.0.0)
203
+ rubysl-net-ftp (2.0.1)
204
+ rubysl-net-http (2.0.4)
205
+ rubysl-cgi (~> 2.0)
206
+ rubysl-erb (~> 2.0)
207
+ rubysl-singleton (~> 2.0)
208
+ rubysl-net-imap (2.0.1)
209
+ rubysl-net-pop (2.0.1)
210
+ rubysl-net-protocol (2.0.1)
211
+ rubysl-net-smtp (2.0.1)
212
+ rubysl-net-telnet (2.0.0)
213
+ rubysl-nkf (2.0.1)
214
+ rubysl-observer (2.0.0)
215
+ rubysl-open-uri (2.0.0)
216
+ rubysl-open3 (2.0.0)
217
+ rubysl-openssl (2.9)
218
+ rubysl-optparse (2.0.1)
219
+ rubysl-shellwords (~> 2.0)
220
+ rubysl-ostruct (2.1.0)
221
+ rubysl-pathname (2.3)
222
+ rubysl-prettyprint (2.0.3)
223
+ rubysl-prime (2.0.1)
224
+ rubysl-profile (2.0.0)
225
+ rubysl-profiler (2.1)
226
+ rubysl-pstore (2.0.0)
227
+ rubysl-pty (2.0.3)
228
+ rubysl-rational (2.0.1)
229
+ rubysl-resolv (2.1.2)
230
+ rubysl-rexml (2.0.4)
231
+ rubysl-rinda (2.0.1)
232
+ rubysl-rss (2.0.0)
233
+ rubysl-scanf (2.0.0)
234
+ rubysl-securerandom (2.0.0)
235
+ rubysl-set (2.0.1)
236
+ rubysl-shellwords (2.0.0)
237
+ rubysl-singleton (2.0.0)
238
+ rubysl-socket (2.2.1)
239
+ rubysl-fcntl (~> 2.0)
240
+ rubysl-stringio (2.1.0)
241
+ rubysl-strscan (2.0.0)
242
+ rubysl-sync (2.0.0)
243
+ rubysl-syslog (2.1.0)
244
+ ffi2-generators (~> 0.1)
245
+ rubysl-tempfile (2.0.1)
246
+ rubysl-thread (2.0.3)
247
+ rubysl-thwait (2.0.0)
248
+ rubysl-time (2.0.3)
249
+ rubysl-timeout (2.0.0)
250
+ rubysl-tmpdir (2.0.1)
251
+ rubysl-tsort (2.0.1)
252
+ rubysl-un (2.0.0)
253
+ rubysl-fileutils (~> 2.0)
254
+ rubysl-optparse (~> 2.0)
255
+ rubysl-unicode_normalize (2.0)
256
+ rubysl-uri (2.0.0)
257
+ rubysl-weakref (2.0.0)
258
+ rubysl-webrick (2.0.0)
259
+ rubysl-xmlrpc (2.0.0)
260
+ rubysl-yaml (2.1.0)
261
+ rubysl-zlib (2.0.1)
262
+ sixarm_ruby_unaccent (1.2.0)
263
+ slop (3.6.0)
264
+ sort_alphabetical (1.1.0)
265
+ unicode_utils (>= 1.2.2)
266
+ thread_safe (0.3.6)
267
+ tzinfo (0.3.53)
268
+ unicode_utils (1.4.0)
269
+ wwtd (1.3.0)
53
270
 
54
271
  PLATFORMS
55
272
  ruby
56
273
 
57
274
  DEPENDENCIES
58
275
  actionpack (~> 4.0.0)
59
- appraisal
60
276
  country_select!
61
- pry
62
- rspec
277
+ pry (~> 0)
278
+ psych
279
+ racc
280
+ rake
281
+ rspec (~> 3)
282
+ rubysl (~> 2.0)
283
+ wwtd
284
+
285
+ BUNDLED WITH
286
+ 1.17.1