country_select 1.1.3 → 2.5.2

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.
@@ -1,24 +1,30 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "country_select/version"
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'country_select/version'
4
4
 
5
5
  Gem::Specification.new do |s|
6
- s.name = "country_select"
6
+ s.name = 'country_select'
7
7
  s.version = CountrySelect::VERSION
8
- s.authors = ["Stefan Penner"]
9
- s.email = ["stefan.penner@gmail.com"]
10
- s.homepage = ""
8
+ s.licenses = ['MIT']
9
+ s.authors = ['Stefan Penner']
10
+ s.email = ['stefan.penner@gmail.com']
11
+ s.homepage = 'https://github.com/stefanpenner/country_select'
11
12
  s.summary = %q{Country Select Plugin}
12
13
  s.description = %q{Provides a simple helper to get an HTML select list of countries. The list of countries comes from the ISO 3166 standard. While it is a relatively neutral source of country names, it will still offend some users.}
13
14
 
14
- s.rubyforge_project = "country_select"
15
+ s.rubyforge_project = 'country_select'
15
16
 
16
17
  s.files = `git ls-files`.split("\n")
17
18
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
- s.require_paths = ["lib"]
20
+ s.require_paths = ['lib']
20
21
 
21
- # specify any dependencies here; for example:
22
- # s.add_development_dependency "rspec"
23
- # s.add_runtime_dependency "rest-client"
22
+ s.add_development_dependency 'actionpack', '~> 3'
23
+ s.add_development_dependency 'pry', '~> 0'
24
+ s.add_development_dependency 'rake'
25
+ s.add_development_dependency 'rspec', '~> 3'
26
+ s.add_development_dependency 'wwtd'
27
+
28
+ s.add_dependency 'countries', '~> 1.2.0'
29
+ s.add_dependency 'sort_alphabetical', '~> 1.0'
24
30
  end
@@ -0,0 +1,15 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec :path => "../"
4
+
5
+ git "https://github.com/rails/rails.git" do
6
+ gem "actionpack"
7
+ gem "actionview"
8
+ gem "activesupport"
9
+ end
10
+
11
+ platforms :rbx do
12
+ gem "racc"
13
+ gem "rubysl", "~> 2.0"
14
+ gem "psych"
15
+ end
@@ -0,0 +1,309 @@
1
+ GIT
2
+ remote: https://github.com/rails/rails.git
3
+ revision: 186418724c6da41caeb0fd304894bcfcc154b8bb
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)
14
+ builder (~> 3.1)
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)
19
+ i18n (~> 0.7)
20
+ json (~> 1.7, >= 1.7.7)
21
+ minitest (~> 5.1)
22
+ thread_safe (~> 0.3, >= 0.3.4)
23
+ tzinfo (~> 1.1)
24
+
25
+ PATH
26
+ remote: ../
27
+ specs:
28
+ country_select (2.5.1)
29
+ countries (~> 1.2.0)
30
+ sort_alphabetical (~> 1.0)
31
+
32
+ GEM
33
+ remote: https://rubygems.org/
34
+ specs:
35
+ builder (3.2.2)
36
+ coderay (1.1.0)
37
+ countries (1.2.1)
38
+ currencies (~> 0.4.2)
39
+ i18n_data (~> 0.7.0)
40
+ currencies (0.4.2)
41
+ diff-lcs (1.2.5)
42
+ erubis (2.7.0)
43
+ ffi2-generators (0.1.1)
44
+ i18n (0.7.0)
45
+ i18n_data (0.7.0)
46
+ json (1.8.2)
47
+ loofah (2.0.1)
48
+ nokogiri (>= 1.5.9)
49
+ 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)
55
+ coderay (~> 1.1.0)
56
+ method_source (~> 0.8.1)
57
+ slop (~> 3.4)
58
+ psych (2.0.12)
59
+ racc (1.4.12)
60
+ rack (1.6.0)
61
+ rack-test (0.6.3)
62
+ 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)
67
+ nokogiri (~> 1.6.0)
68
+ rails-deprecated_sanitizer (>= 1.0.1)
69
+ rails-html-sanitizer (1.0.1)
70
+ 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)
79
+ 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)
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-uri (~> 2.0)
170
+ rubysl-weakref (~> 2.0)
171
+ rubysl-webrick (~> 2.0)
172
+ rubysl-xmlrpc (~> 2.0)
173
+ rubysl-yaml (~> 2.0)
174
+ rubysl-zlib (~> 2.0)
175
+ rubysl-abbrev (2.0.4)
176
+ rubysl-base64 (2.0.0)
177
+ rubysl-benchmark (2.0.1)
178
+ rubysl-bigdecimal (2.0.2)
179
+ rubysl-cgi (2.0.1)
180
+ rubysl-cgi-session (2.0.1)
181
+ rubysl-cmath (2.0.0)
182
+ rubysl-complex (2.0.0)
183
+ rubysl-continuation (2.0.0)
184
+ rubysl-coverage (2.0.3)
185
+ rubysl-csv (2.0.2)
186
+ rubysl-english (~> 2.0)
187
+ rubysl-curses (2.0.1)
188
+ rubysl-date (2.0.9)
189
+ rubysl-delegate (2.0.1)
190
+ rubysl-digest (2.0.3)
191
+ rubysl-drb (2.0.1)
192
+ rubysl-e2mmap (2.0.0)
193
+ rubysl-english (2.0.0)
194
+ rubysl-enumerator (2.0.0)
195
+ rubysl-erb (2.0.2)
196
+ rubysl-etc (2.0.3)
197
+ ffi2-generators (~> 0.1)
198
+ rubysl-expect (2.0.0)
199
+ rubysl-fcntl (2.0.4)
200
+ ffi2-generators (~> 0.1)
201
+ rubysl-fiber (2.0.0)
202
+ rubysl-fileutils (2.0.3)
203
+ rubysl-find (2.0.1)
204
+ rubysl-forwardable (2.0.1)
205
+ rubysl-getoptlong (2.0.0)
206
+ rubysl-gserver (2.0.0)
207
+ rubysl-socket (~> 2.0)
208
+ rubysl-thread (~> 2.0)
209
+ rubysl-io-console (2.0.0)
210
+ rubysl-io-nonblock (2.0.0)
211
+ rubysl-io-wait (2.0.0)
212
+ rubysl-ipaddr (2.0.0)
213
+ rubysl-irb (2.1.1)
214
+ rubysl-e2mmap (~> 2.0)
215
+ rubysl-mathn (~> 2.0)
216
+ rubysl-thread (~> 2.0)
217
+ rubysl-logger (2.1.0)
218
+ rubysl-mathn (2.0.0)
219
+ rubysl-matrix (2.1.0)
220
+ rubysl-e2mmap (~> 2.0)
221
+ rubysl-mkmf (2.0.1)
222
+ rubysl-fileutils (~> 2.0)
223
+ rubysl-shellwords (~> 2.0)
224
+ rubysl-monitor (2.0.0)
225
+ rubysl-mutex_m (2.0.0)
226
+ rubysl-net-ftp (2.0.1)
227
+ rubysl-net-http (2.0.4)
228
+ rubysl-cgi (~> 2.0)
229
+ rubysl-erb (~> 2.0)
230
+ rubysl-singleton (~> 2.0)
231
+ rubysl-net-imap (2.0.1)
232
+ rubysl-net-pop (2.0.1)
233
+ rubysl-net-protocol (2.0.1)
234
+ rubysl-net-smtp (2.0.1)
235
+ rubysl-net-telnet (2.0.0)
236
+ rubysl-nkf (2.0.1)
237
+ rubysl-observer (2.0.0)
238
+ rubysl-open-uri (2.0.0)
239
+ rubysl-open3 (2.0.0)
240
+ rubysl-openssl (2.2.1)
241
+ rubysl-optparse (2.0.1)
242
+ rubysl-shellwords (~> 2.0)
243
+ rubysl-ostruct (2.0.4)
244
+ rubysl-pathname (2.1.0)
245
+ rubysl-prettyprint (2.0.3)
246
+ rubysl-prime (2.0.1)
247
+ rubysl-profile (2.0.0)
248
+ rubysl-profiler (2.0.1)
249
+ rubysl-pstore (2.0.0)
250
+ rubysl-pty (2.0.3)
251
+ rubysl-rational (2.0.1)
252
+ rubysl-resolv (2.1.0)
253
+ rubysl-rexml (2.0.4)
254
+ rubysl-rinda (2.0.1)
255
+ rubysl-rss (2.0.0)
256
+ rubysl-scanf (2.0.0)
257
+ rubysl-securerandom (2.0.0)
258
+ rubysl-set (2.0.1)
259
+ rubysl-shellwords (2.0.0)
260
+ rubysl-singleton (2.0.0)
261
+ rubysl-socket (2.0.1)
262
+ rubysl-stringio (2.0.0)
263
+ rubysl-strscan (2.0.0)
264
+ rubysl-sync (2.0.0)
265
+ rubysl-syslog (2.1.0)
266
+ ffi2-generators (~> 0.1)
267
+ rubysl-tempfile (2.0.1)
268
+ rubysl-thread (2.0.2)
269
+ rubysl-thwait (2.0.0)
270
+ rubysl-time (2.0.3)
271
+ rubysl-timeout (2.0.0)
272
+ rubysl-tmpdir (2.0.1)
273
+ rubysl-tsort (2.0.1)
274
+ rubysl-un (2.0.0)
275
+ rubysl-fileutils (~> 2.0)
276
+ rubysl-optparse (~> 2.0)
277
+ rubysl-uri (2.0.0)
278
+ rubysl-weakref (2.0.0)
279
+ rubysl-webrick (2.0.0)
280
+ rubysl-xmlrpc (2.0.0)
281
+ rubysl-yaml (2.1.0)
282
+ rubysl-zlib (2.0.1)
283
+ slop (3.6.0)
284
+ sort_alphabetical (1.0.2)
285
+ unicode_utils (>= 1.2.2)
286
+ thread_safe (0.3.4)
287
+ tzinfo (1.2.2)
288
+ thread_safe (~> 0.1)
289
+ unicode_utils (1.4.0)
290
+ wwtd (0.7.0)
291
+
292
+ PLATFORMS
293
+ ruby
294
+
295
+ DEPENDENCIES
296
+ actionpack!
297
+ actionview!
298
+ activesupport!
299
+ country_select!
300
+ pry (~> 0)
301
+ psych
302
+ racc
303
+ rake
304
+ rspec (~> 3)
305
+ rubysl (~> 2.0)
306
+ wwtd
307
+
308
+ BUNDLED WITH
309
+ 1.10.6
@@ -0,0 +1,11 @@
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
@@ -0,0 +1,293 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ country_select (2.5.1)
5
+ countries (~> 1.2.0)
6
+ sort_alphabetical (~> 1.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (3.2.22)
12
+ activemodel (= 3.2.22)
13
+ activesupport (= 3.2.22)
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)
22
+ activesupport (= 3.2.22)
23
+ builder (~> 3.0.0)
24
+ activesupport (3.2.22)
25
+ i18n (~> 0.6, >= 0.6.4)
26
+ multi_json (~> 1.0)
27
+ builder (3.0.4)
28
+ coderay (1.1.0)
29
+ countries (1.2.1)
30
+ currencies (~> 0.4.2)
31
+ i18n_data (~> 0.7.0)
32
+ currencies (0.4.2)
33
+ diff-lcs (1.2.5)
34
+ erubis (2.7.0)
35
+ ffi2-generators (0.1.1)
36
+ hike (1.2.3)
37
+ i18n (0.7.0)
38
+ i18n_data (0.7.0)
39
+ journey (1.0.4)
40
+ method_source (0.8.2)
41
+ multi_json (1.11.2)
42
+ pry (0.10.3)
43
+ coderay (~> 1.1.0)
44
+ method_source (~> 0.8.1)
45
+ slop (~> 3.4)
46
+ psych (2.0.15)
47
+ racc (1.4.13)
48
+ rack (1.4.7)
49
+ rack-cache (1.5.1)
50
+ rack (>= 0.4)
51
+ rack-test (0.6.3)
52
+ 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)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.3.0)
63
+ rspec-mocks (3.3.2)
64
+ 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
+ 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-uri (~> 2.0)
153
+ rubysl-weakref (~> 2.0)
154
+ rubysl-webrick (~> 2.0)
155
+ rubysl-xmlrpc (~> 2.0)
156
+ rubysl-yaml (~> 2.0)
157
+ rubysl-zlib (~> 2.0)
158
+ rubysl-abbrev (2.0.4)
159
+ rubysl-base64 (2.0.0)
160
+ rubysl-benchmark (2.0.1)
161
+ rubysl-bigdecimal (2.0.2)
162
+ rubysl-cgi (2.0.1)
163
+ rubysl-cgi-session (2.0.1)
164
+ rubysl-cmath (2.0.0)
165
+ rubysl-complex (2.0.0)
166
+ rubysl-continuation (2.0.0)
167
+ rubysl-coverage (2.0.3)
168
+ rubysl-csv (2.0.2)
169
+ rubysl-english (~> 2.0)
170
+ rubysl-curses (2.0.1)
171
+ rubysl-date (2.0.9)
172
+ rubysl-delegate (2.0.1)
173
+ rubysl-digest (2.0.8)
174
+ rubysl-drb (2.0.1)
175
+ rubysl-e2mmap (2.0.0)
176
+ rubysl-english (2.0.0)
177
+ rubysl-enumerator (2.0.0)
178
+ rubysl-erb (2.0.2)
179
+ rubysl-etc (2.0.3)
180
+ ffi2-generators (~> 0.1)
181
+ rubysl-expect (2.0.0)
182
+ rubysl-fcntl (2.0.4)
183
+ ffi2-generators (~> 0.1)
184
+ rubysl-fiber (2.0.0)
185
+ rubysl-fileutils (2.0.3)
186
+ rubysl-find (2.0.1)
187
+ rubysl-forwardable (2.0.1)
188
+ rubysl-getoptlong (2.0.0)
189
+ rubysl-gserver (2.0.0)
190
+ rubysl-socket (~> 2.0)
191
+ rubysl-thread (~> 2.0)
192
+ rubysl-io-console (2.0.0)
193
+ rubysl-io-nonblock (2.0.0)
194
+ rubysl-io-wait (2.0.0)
195
+ rubysl-ipaddr (2.0.0)
196
+ rubysl-irb (2.1.1)
197
+ rubysl-e2mmap (~> 2.0)
198
+ rubysl-mathn (~> 2.0)
199
+ rubysl-thread (~> 2.0)
200
+ rubysl-logger (2.1.0)
201
+ rubysl-mathn (2.0.0)
202
+ rubysl-matrix (2.1.0)
203
+ rubysl-e2mmap (~> 2.0)
204
+ rubysl-mkmf (2.0.1)
205
+ rubysl-fileutils (~> 2.0)
206
+ rubysl-shellwords (~> 2.0)
207
+ rubysl-monitor (2.0.0)
208
+ rubysl-mutex_m (2.0.0)
209
+ rubysl-net-ftp (2.0.1)
210
+ rubysl-net-http (2.0.4)
211
+ rubysl-cgi (~> 2.0)
212
+ rubysl-erb (~> 2.0)
213
+ rubysl-singleton (~> 2.0)
214
+ rubysl-net-imap (2.0.1)
215
+ rubysl-net-pop (2.0.1)
216
+ rubysl-net-protocol (2.0.1)
217
+ rubysl-net-smtp (2.0.1)
218
+ rubysl-net-telnet (2.0.0)
219
+ rubysl-nkf (2.0.1)
220
+ rubysl-observer (2.0.0)
221
+ rubysl-open-uri (2.0.0)
222
+ rubysl-open3 (2.0.0)
223
+ rubysl-openssl (2.3.1)
224
+ rubysl-optparse (2.0.1)
225
+ rubysl-shellwords (~> 2.0)
226
+ rubysl-ostruct (2.0.4)
227
+ rubysl-pathname (2.1.0)
228
+ rubysl-prettyprint (2.0.3)
229
+ rubysl-prime (2.0.1)
230
+ rubysl-profile (2.0.0)
231
+ rubysl-profiler (2.0.1)
232
+ rubysl-pstore (2.0.0)
233
+ rubysl-pty (2.0.3)
234
+ rubysl-rational (2.0.1)
235
+ rubysl-resolv (2.1.2)
236
+ rubysl-rexml (2.0.4)
237
+ rubysl-rinda (2.0.1)
238
+ rubysl-rss (2.0.0)
239
+ rubysl-scanf (2.0.0)
240
+ rubysl-securerandom (2.0.0)
241
+ rubysl-set (2.0.1)
242
+ rubysl-shellwords (2.0.0)
243
+ rubysl-singleton (2.0.0)
244
+ rubysl-socket (2.0.1)
245
+ rubysl-stringio (2.0.0)
246
+ rubysl-strscan (2.0.0)
247
+ rubysl-sync (2.0.0)
248
+ rubysl-syslog (2.1.0)
249
+ ffi2-generators (~> 0.1)
250
+ rubysl-tempfile (2.0.1)
251
+ rubysl-thread (2.0.3)
252
+ rubysl-thwait (2.0.0)
253
+ rubysl-time (2.0.3)
254
+ rubysl-timeout (2.0.0)
255
+ rubysl-tmpdir (2.0.1)
256
+ rubysl-tsort (2.0.1)
257
+ rubysl-un (2.0.0)
258
+ rubysl-fileutils (~> 2.0)
259
+ rubysl-optparse (~> 2.0)
260
+ rubysl-uri (2.0.0)
261
+ rubysl-weakref (2.0.0)
262
+ rubysl-webrick (2.0.0)
263
+ rubysl-xmlrpc (2.0.0)
264
+ rubysl-yaml (2.1.0)
265
+ rubysl-zlib (2.0.1)
266
+ slop (3.6.0)
267
+ sort_alphabetical (1.0.2)
268
+ unicode_utils (>= 1.2.2)
269
+ sprockets (2.2.3)
270
+ hike (~> 1.2)
271
+ multi_json (~> 1.0)
272
+ rack (~> 1.0)
273
+ tilt (~> 1.1, != 1.3.0)
274
+ tilt (1.4.1)
275
+ unicode_utils (1.4.0)
276
+ wwtd (1.1.1)
277
+
278
+ PLATFORMS
279
+ ruby
280
+
281
+ DEPENDENCIES
282
+ actionpack (~> 3.2.17)
283
+ country_select!
284
+ pry (~> 0)
285
+ psych
286
+ racc
287
+ rake
288
+ rspec (~> 3)
289
+ rubysl (~> 2.0)
290
+ wwtd
291
+
292
+ BUNDLED WITH
293
+ 1.10.6
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec :path => "../"
4
+
5
+ gem "actionpack", "~> 4.0.0"
6
+
7
+ platforms :rbx do
8
+ gem "racc"
9
+ gem "rubysl", "~> 2.0"
10
+ gem "psych"
11
+ end