country_currency 0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA512:
3
+ metadata.gz: 8cc502aed9b616106b60d001f5531dae19e07282aeb8beaad9867ceab5e27f283b6fce3491a0cd12c14b9b8fd7969f77751ae0b8c2097ab18a4c074011c93663
4
+ data.tar.gz: 4480b9b7de243a0a93620f59cdb1bb3b541b948bf62a88d99dc529223c6eefda8adf567589d5476eb59ee7fc57d851b2e6de458ea00336d747aaece707ec10fd
5
+ SHA1:
6
+ metadata.gz: ac36250cd36d45f60f414e821602937fa5c76bf8
7
+ data.tar.gz: f60747b35c4fa5e637cc1ee5fb7c25da8e1e7852
data/.travis.yml ADDED
@@ -0,0 +1,20 @@
1
+ language: ruby
2
+ bundler_args: --without development
3
+ rvm:
4
+ - 2.3.0
5
+ - 2.2.4
6
+ - 2.1
7
+ - 2.0.0
8
+ - 1.9.3
9
+ - ruby-head
10
+ - ree
11
+ - jruby-19mode
12
+ - jruby-head
13
+ matrix:
14
+ allow_failures:
15
+ - rvm: ruby-head
16
+ - rvm: jruby-head
17
+ - rvm: ree
18
+ notifications:
19
+ recipients:
20
+ - alexrabarts@gmail.com
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## 0.1.0 - 2018-04-20
2
+
3
+ * Initial release
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in wispro_frontend.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,27 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ country_currency (0.1.0)
5
+ rake (~> 12)
6
+ tzinfo (~> 1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ power_assert (1.1.1)
12
+ rake (12.3.1)
13
+ test-unit (3.2.7)
14
+ power_assert
15
+ thread_safe (0.3.6)
16
+ tzinfo (1.2.5)
17
+ thread_safe (~> 0.1)
18
+
19
+ PLATFORMS
20
+ ruby
21
+
22
+ DEPENDENCIES
23
+ country_currency!
24
+ test-unit (~> 3.2)
25
+
26
+ BUNDLED WITH
27
+ 1.16.1
data/Manifest.txt ADDED
@@ -0,0 +1,17 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ country_currency.gemspec
6
+ lib/country_currency.rb
7
+ lib/country_currency/code.rb
8
+ lib/country_currency/calling.rb
9
+ lib/country_currency/continent.rb
10
+ lib/country_currency/iso_3166_1.rb
11
+ lib/country_currency/iso_4217.rb
12
+ lib/country_currency/country_currency.rb
13
+ rakelib/cultivate.rake
14
+ rakelib/iso_3116_1.rake
15
+ rakelib/iso_3166_1.rb
16
+ rakelib/iso_3166_1.rb.erb
17
+ test/test_country_currency.rb
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # CountryCurrency
2
+
3
+ ## DESCRIPTION:
4
+
5
+ Provides ISO codes, names and currencies for countries.
6
+
7
+ ## USE:
8
+ ```ruby
9
+ # Search by country (Argentina)
10
+ country = CountryCurrency.find('AR') # Alpha2
11
+ country = CountryCurrency.find('ARG') # Alpha3
12
+ country = CountryCurrency.find('Argentina') # Iso name
13
+
14
+ # Attributes
15
+ country.currency # => "ARS"
16
+ country.currency_symbol # => "$"
17
+ country.alpha2 # => "AR"
18
+ country.alpha3 # => "ARS"
19
+ country.calling # => "+54" phone number prefix
20
+
21
+ # Search by country (United States)
22
+ country = CountryCurrency.find('US') # Alpha2
23
+ country = CountryCurrency.find('USA') # Alpha3
24
+ country = CountryCurrency.find('United States') # Iso name
25
+
26
+ # Attributes
27
+ country.currency # => "USD"
28
+ country.currency_symbol # => "u$d"
29
+ country.alpha2 # => "US"
30
+ country.alpha3 # => "USA"
31
+ country.calling # => "+1" phone number prefix
32
+
33
+ ```
34
+
35
+ ## console:
36
+ `$ rake console`
37
+
38
+ ## test:
39
+ `$ rake test`
data/Rakefile ADDED
@@ -0,0 +1,19 @@
1
+ require 'rake'
2
+ require './lib/country_currency.rb'
3
+ require 'rake/testtask'
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << 'lib' << 'test'
7
+ t.pattern = 'test/**/*_test.rb'
8
+ t.verbose = false
9
+ end
10
+
11
+ task :default => :test
12
+
13
+ desc 'Run a console'
14
+ task :console do
15
+ require './lib/country_currency'
16
+ require 'irb'
17
+ ARGV.clear
18
+ IRB.start
19
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.7.8
@@ -0,0 +1,24 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'country_currency/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'country_currency'
7
+ s.version = CountryCurrency::VERSION
8
+ s.authors = ['Néstor Coppi']
9
+ s.email = 'nestorcoppi@gmail.com'
10
+
11
+ s.description = 'ISO country code and currency library'
12
+ s.summary = 'Provides ISO 3166-1 country codes/names and ISO 4217 currencies.'
13
+ s.homepage = 'http://github.com/sequre/country_currency'
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
18
+ s.require_paths = ['lib']
19
+ s.license = 'MIT'
20
+
21
+ s.add_dependency 'rake', '~> 12'
22
+ s.add_dependency 'tzinfo', '~> 1'
23
+ s.add_development_dependency 'test-unit', '~> 3.2'
24
+ end
@@ -0,0 +1,10 @@
1
+ dir = File.dirname(__FILE__)
2
+ $LOAD_PATH << dir unless $LOAD_PATH.include?(dir)
3
+
4
+ require 'country_currency/code'
5
+ require 'country_currency/iso_3166_1'
6
+ require 'country_currency/iso_13616_1'
7
+ require 'country_currency/iso_4217'
8
+ require 'country_currency/calling'
9
+ require 'country_currency/continent'
10
+ require 'country_currency/country_currency'
@@ -0,0 +1,751 @@
1
+ module CountryCurrency
2
+ class Code
3
+ class GBR < Code #:nodoc:
4
+ self.calling = '+44'
5
+ end
6
+ class FJI < Code #:nodoc:
7
+ self.calling = '+679'
8
+ end
9
+ class BLM < Code #:nodoc:
10
+ self.calling = '+590'
11
+ end
12
+ class RUS < Code #:nodoc:
13
+ self.calling = '+7'
14
+ end
15
+ class JOR < Code #:nodoc:
16
+ self.calling = '+962'
17
+ end
18
+ class GEO < Code #:nodoc:
19
+ self.calling = '+995'
20
+ end
21
+ class ATF < Code #:nodoc:
22
+ self.calling = '+689'
23
+ end
24
+ class ECU < Code #:nodoc:
25
+ self.calling = '+593'
26
+ end
27
+ class TWN < Code #:nodoc:
28
+ self.calling = '+886'
29
+ end
30
+ class ZWE < Code #:nodoc:
31
+ self.calling = '+263'
32
+ end
33
+ class ATG < Code #:nodoc:
34
+ self.calling = '+268'
35
+ end
36
+ class IDN < Code #:nodoc:
37
+ self.calling = '+62'
38
+ end
39
+ class BOL < Code #:nodoc:
40
+ self.calling = '+591'
41
+ end
42
+ class NPL < Code #:nodoc:
43
+ self.calling = '+977'
44
+ end
45
+ class DEU < Code #:nodoc:
46
+ self.calling = '+49'
47
+ end
48
+ class MLT < Code #:nodoc:
49
+ self.calling = '+356'
50
+ end
51
+ class TGO < Code #:nodoc:
52
+ self.calling = '+228'
53
+ end
54
+ class SRB < Code #:nodoc:
55
+ self.calling = '+381'
56
+ end
57
+ class TJK < Code #:nodoc:
58
+ self.calling = '+992'
59
+ end
60
+ class REU < Code #:nodoc:
61
+ self.calling = '+262'
62
+ end
63
+ class DNK < Code #:nodoc:
64
+ self.calling = '+45'
65
+ end
66
+ class LAO < Code #:nodoc:
67
+ self.calling = '+856'
68
+ end
69
+ class POL < Code #:nodoc:
70
+ self.calling = '+48'
71
+ end
72
+ class BLR < Code #:nodoc:
73
+ self.calling = '+375'
74
+ end
75
+ class PRI < Code #:nodoc:
76
+ self.calling = '+787'
77
+ end
78
+ class GAB < Code #:nodoc:
79
+ self.calling = '+241'
80
+ end
81
+ class TCA < Code #:nodoc:
82
+ self.calling = '+649'
83
+ end
84
+ class NIC < Code #:nodoc:
85
+ self.calling = '+505'
86
+ end
87
+ class RWA < Code #:nodoc:
88
+ self.calling = '+250'
89
+ end
90
+ class SYR < Code #:nodoc:
91
+ self.calling = '+963'
92
+ end
93
+ class URY < Code #:nodoc:
94
+ self.calling = '+598'
95
+ end
96
+ class NCL < Code #:nodoc:
97
+ self.calling = '+687'
98
+ end
99
+ class VCT < Code #:nodoc:
100
+ self.calling = '+784'
101
+ end
102
+ class PRK < Code #:nodoc:
103
+ self.calling = '+850'
104
+ end
105
+ class ZMB < Code #:nodoc:
106
+ self.calling = '+260'
107
+ end
108
+ class MKD < Code #:nodoc:
109
+ self.calling = '+389'
110
+ end
111
+ class CUW < Code #:nodoc:
112
+ self.calling = '+599'
113
+ end
114
+ class SXM < Code #:nodoc:
115
+ self.calling = '+599'
116
+ end
117
+ class SSD < Code #:nodoc:
118
+ self.calling = '+211'
119
+ end
120
+ class BES < Code #:nodoc:
121
+ self.calling = '+599'
122
+ end
123
+ class AZE < Code #:nodoc:
124
+ self.calling = '+994'
125
+ end
126
+ class BRN < Code #:nodoc:
127
+ self.calling = '+673'
128
+ end
129
+ class CMR < Code #:nodoc:
130
+ self.calling = '+237'
131
+ end
132
+ class ERI < Code #:nodoc:
133
+ self.calling = '+291'
134
+ end
135
+ class TCD < Code #:nodoc:
136
+ self.calling = '+235'
137
+ end
138
+ class DZA < Code #:nodoc:
139
+ self.calling = '+213'
140
+ end
141
+ class CCK < Code #:nodoc:
142
+ self.calling = '+891'
143
+ end
144
+ class NFK < Code #:nodoc:
145
+ self.calling = '+672'
146
+ end
147
+ class SOM < Code #:nodoc:
148
+ self.calling = '+252'
149
+ end
150
+ class GUY < Code #:nodoc:
151
+ self.calling = '+592'
152
+ end
153
+ class MRT < Code #:nodoc:
154
+ self.calling = '+222'
155
+ end
156
+ class NLD < Code #:nodoc:
157
+ self.calling = '+31'
158
+ end
159
+ class PLW < Code #:nodoc:
160
+ self.calling = '+680'
161
+ end
162
+ class VIR < Code #:nodoc:
163
+ self.calling = '+340'
164
+ end
165
+ class BEL < Code #:nodoc:
166
+ self.calling = '+32'
167
+ end
168
+ class MHL < Code #:nodoc:
169
+ self.calling = '+692'
170
+ end
171
+ class UKR < Code #:nodoc:
172
+ self.calling = '+380'
173
+ end
174
+ class UGA < Code #:nodoc:
175
+ self.calling = '+256'
176
+ end
177
+ class LTU < Code #:nodoc:
178
+ self.calling = '+370'
179
+ end
180
+ class MNE < Code #:nodoc:
181
+ self.calling = '+382'
182
+ end
183
+ class BLZ < Code #:nodoc:
184
+ self.calling = '+501'
185
+ end
186
+ class MOZ < Code #:nodoc:
187
+ self.calling = '+258'
188
+ end
189
+ class MUS < Code #:nodoc:
190
+ self.calling = '+230'
191
+ end
192
+ class IMN < Code #:nodoc:
193
+ self.calling = '+44'
194
+ end
195
+ class DMA < Code #:nodoc:
196
+ self.calling = '+767'
197
+ end
198
+ class BEN < Code #:nodoc:
199
+ self.calling = '+229'
200
+ end
201
+ class SLV < Code #:nodoc:
202
+ self.calling = '+503'
203
+ end
204
+ class LCA < Code #:nodoc:
205
+ self.calling = '+758'
206
+ end
207
+ class GNQ < Code #:nodoc:
208
+ self.calling = '+240'
209
+ end
210
+ class MNG < Code #:nodoc:
211
+ self.calling = '+976'
212
+ end
213
+ class UZB < Code #:nodoc:
214
+ self.calling = '+998'
215
+ end
216
+ class CPV < Code #:nodoc:
217
+ self.calling = '+238'
218
+ end
219
+ class JEY < Code #:nodoc:
220
+ self.calling = '+44'
221
+ end
222
+ class KIR < Code #:nodoc:
223
+ self.calling = '+686'
224
+ end
225
+ class PRT < Code #:nodoc:
226
+ self.calling = '+351'
227
+ end
228
+ class MAC < Code #:nodoc:
229
+ self.calling = '+853'
230
+ end
231
+ class AGO < Code #:nodoc:
232
+ self.calling = '+244'
233
+ end
234
+ class FSM < Code #:nodoc:
235
+ self.calling = '+691'
236
+ end
237
+ class PHL < Code #:nodoc:
238
+ self.calling = '+63'
239
+ end
240
+ class LVA < Code #:nodoc:
241
+ self.calling = '+371'
242
+ end
243
+ class COD < Code #:nodoc:
244
+ self.calling = '+243'
245
+ end
246
+ class CYM < Code #:nodoc:
247
+ self.calling = '+345'
248
+ end
249
+ class MDA < Code #:nodoc:
250
+ self.calling = '+373'
251
+ end
252
+ class DJI < Code #:nodoc:
253
+ self.calling = '+253'
254
+ end
255
+ class PER < Code #:nodoc:
256
+ self.calling = '+51'
257
+ end
258
+ class MAF < Code #:nodoc:
259
+ self.calling = '+590'
260
+ end
261
+ class GTM < Code #:nodoc:
262
+ self.calling = '+502'
263
+ end
264
+ class ISL < Code #:nodoc:
265
+ self.calling = '+354'
266
+ end
267
+ class PNG < Code #:nodoc:
268
+ self.calling = '+675'
269
+ end
270
+ class SEN < Code #:nodoc:
271
+ self.calling = '+221'
272
+ end
273
+ class GMB < Code #:nodoc:
274
+ self.calling = '+220'
275
+ end
276
+ class JAM < Code #:nodoc:
277
+ self.calling = '+876'
278
+ end
279
+ class COG < Code #:nodoc:
280
+ self.calling = '+242'
281
+ end
282
+ class CYP < Code #:nodoc:
283
+ self.calling = '+357'
284
+ end
285
+ class PRY < Code #:nodoc:
286
+ self.calling = '+595'
287
+ end
288
+ class MEX < Code #:nodoc:
289
+ self.calling = '+52'
290
+ end
291
+ class WSM < Code #:nodoc:
292
+ self.calling = '+685'
293
+ end
294
+ class BHR < Code #:nodoc:
295
+ self.calling = '+973'
296
+ end
297
+ class HUN < Code #:nodoc:
298
+ self.calling = '+36'
299
+ end
300
+ class BHS < Code #:nodoc:
301
+ self.calling = '+242'
302
+ end
303
+ class SUR < Code #:nodoc:
304
+ self.calling = '+597'
305
+ end
306
+ class OMN < Code #:nodoc:
307
+ self.calling = '+968'
308
+ end
309
+ class CUB < Code #:nodoc:
310
+ self.calling = '+53'
311
+ end
312
+ class KOR < Code #:nodoc:
313
+ self.calling = '+82'
314
+ end
315
+ class MDG < Code #:nodoc:
316
+ self.calling = '+261'
317
+ end
318
+ class FRA < Code #:nodoc:
319
+ self.calling = '+33'
320
+ end
321
+ class SHN < Code #:nodoc:
322
+ self.calling = '+290'
323
+ end
324
+ class MNP < Code #:nodoc:
325
+ self.calling = '+670'
326
+ end
327
+ class NIU < Code #:nodoc:
328
+ self.calling = '+683'
329
+ end
330
+ class BWA < Code #:nodoc:
331
+ self.calling = '+267'
332
+ end
333
+ class VEN < Code #:nodoc:
334
+ self.calling = '+58'
335
+ end
336
+ class HKG < Code #:nodoc:
337
+ self.calling = '+852'
338
+ end
339
+ class HND < Code #:nodoc:
340
+ self.calling = '+504'
341
+ end
342
+ class COK < Code #:nodoc:
343
+ self.calling = '+682'
344
+ end
345
+ class ISR < Code #:nodoc:
346
+ self.calling = '+972'
347
+ end
348
+ class FIN < Code #:nodoc:
349
+ self.calling = '+358'
350
+ end
351
+ class AIA < Code #:nodoc:
352
+ self.calling = '+264'
353
+ end
354
+ class KNA < Code #:nodoc:
355
+ self.calling = '+869'
356
+ end
357
+ class LIE < Code #:nodoc:
358
+ self.calling = '+423'
359
+ end
360
+ class FLK < Code #:nodoc:
361
+ self.calling = '+500'
362
+ end
363
+ class HRV < Code #:nodoc:
364
+ self.calling = '+385'
365
+ end
366
+ class COL < Code #:nodoc:
367
+ self.calling = '+57'
368
+ end
369
+ class CRI < Code #:nodoc:
370
+ self.calling = '+506'
371
+ end
372
+ class WLF < Code #:nodoc:
373
+ self.calling = '+681'
374
+ end
375
+ class BGD < Code #:nodoc:
376
+ self.calling = '+880'
377
+ end
378
+ class LSO < Code #:nodoc:
379
+ self.calling = '+266'
380
+ end
381
+ class MWI < Code #:nodoc:
382
+ self.calling = '+265'
383
+ end
384
+ class COM < Code #:nodoc:
385
+ self.calling = '+269'
386
+ end
387
+ class UMI < Code #:nodoc:
388
+ self.calling = '+1'
389
+ end
390
+ class USA < Code #:nodoc:
391
+ self.calling = '+1'
392
+ end
393
+ class KEN < Code #:nodoc:
394
+ self.calling = '+254'
395
+ end
396
+ class AFG < Code #:nodoc:
397
+ self.calling = '+93'
398
+ end
399
+ class ASM < Code #:nodoc:
400
+ self.calling = '+684'
401
+ end
402
+ class CIV < Code #:nodoc:
403
+ self.calling = '+225'
404
+ end
405
+ class NOR < Code #:nodoc:
406
+ self.calling = '+47'
407
+ end
408
+ class PAK < Code #:nodoc:
409
+ self.calling = '+92'
410
+ end
411
+ class YEM < Code #:nodoc:
412
+ self.calling = '+967'
413
+ end
414
+ class VUT < Code #:nodoc:
415
+ self.calling = '+678'
416
+ end
417
+ class ALA < Code #:nodoc:
418
+ self.calling = '+358'
419
+ end
420
+ class BDI < Code #:nodoc:
421
+ self.calling = '+257'
422
+ end
423
+ class MAR < Code #:nodoc:
424
+ self.calling = '+212'
425
+ end
426
+ class ALB < Code #:nodoc:
427
+ self.calling = '+355'
428
+ end
429
+ class KHM < Code #:nodoc:
430
+ self.calling = '+855'
431
+ end
432
+ class ETH < Code #:nodoc:
433
+ self.calling = '+251'
434
+ end
435
+ class PAN < Code #:nodoc:
436
+ self.calling = '+507'
437
+ end
438
+ class CHE < Code #:nodoc:
439
+ self.calling = '+41'
440
+ end
441
+ class MTQ < Code #:nodoc:
442
+ self.calling = '+596'
443
+ end
444
+ class BTN < Code #:nodoc:
445
+ self.calling = '+975'
446
+ end
447
+ class THA < Code #:nodoc:
448
+ self.calling = '+66'
449
+ end
450
+ class SWE < Code #:nodoc:
451
+ self.calling = '+46'
452
+ end
453
+ class TON < Code #:nodoc:
454
+ self.calling = '+676'
455
+ end
456
+ class VNM < Code #:nodoc:
457
+ self.calling = '+84'
458
+ end
459
+ class GGY < Code #:nodoc:
460
+ self.calling = '+1481'
461
+ end
462
+ class TLS < Code #:nodoc:
463
+ self.calling = '+670'
464
+ end
465
+ class NRU < Code #:nodoc:
466
+ self.calling = '+674'
467
+ end
468
+ class VGB < Code #:nodoc:
469
+ self.calling = '+284'
470
+ end
471
+ class GIB < Code #:nodoc:
472
+ self.calling = '+350'
473
+ end
474
+ class NER < Code #:nodoc:
475
+ self.calling = '+277'
476
+ end
477
+ class HTI < Code #:nodoc:
478
+ self.calling = '+509'
479
+ end
480
+ class MDV < Code #:nodoc:
481
+ self.calling = '+960'
482
+ end
483
+ class FRO < Code #:nodoc:
484
+ self.calling = '+298'
485
+ end
486
+ class CHL < Code #:nodoc:
487
+ self.calling = '+56'
488
+ end
489
+ class SDN < Code #:nodoc:
490
+ self.calling = '+249'
491
+ end
492
+ class IRL < Code #:nodoc:
493
+ self.calling = '+353'
494
+ end
495
+ class ARE < Code #:nodoc:
496
+ self.calling = '+971'
497
+ end
498
+ class CHN < Code #:nodoc:
499
+ self.calling = '+86'
500
+ end
501
+ class STP < Code #:nodoc:
502
+ self.calling = '+239'
503
+ end
504
+ class JPN < Code #:nodoc:
505
+ self.calling = '+81'
506
+ end
507
+ class TUN < Code #:nodoc:
508
+ self.calling = '+216'
509
+ end
510
+ class BGR < Code #:nodoc:
511
+ self.calling = '+359'
512
+ end
513
+ class IRN < Code #:nodoc:
514
+ self.calling = '+98'
515
+ end
516
+ class ARG < Code #:nodoc:
517
+ self.calling = '+54'
518
+ end
519
+ class CXR < Code #:nodoc:
520
+ self.calling = '+61'
521
+ end
522
+ class IOT < Code #:nodoc:
523
+ self.calling = '+246'
524
+ end
525
+ class SAU < Code #:nodoc:
526
+ self.calling = '+966'
527
+ end
528
+ class NGA < Code #:nodoc:
529
+ self.calling = '+234'
530
+ end
531
+ class HMD < Code #:nodoc:
532
+ self.calling = '+61'
533
+ end
534
+ class IRQ < Code #:nodoc:
535
+ self.calling = '+964'
536
+ end
537
+ class BFA < Code #:nodoc:
538
+ self.calling = '+226'
539
+ end
540
+ class TUR < Code #:nodoc:
541
+ self.calling = '+90'
542
+ end
543
+ class MMR < Code #:nodoc:
544
+ self.calling = '+95'
545
+ end
546
+ class PSE < Code #:nodoc:
547
+ self.calling = '+970'
548
+ end
549
+ class SGP < Code #:nodoc:
550
+ self.calling = '+65'
551
+ end
552
+ class CAF < Code #:nodoc:
553
+ self.calling = '+236'
554
+ end
555
+ class LKA < Code #:nodoc:
556
+ self.calling = '+94'
557
+ end
558
+ class SJM < Code #:nodoc:
559
+ self.calling = '+47'
560
+ end
561
+ class IND < Code #:nodoc:
562
+ self.calling = '+91'
563
+ end
564
+ class VAT < Code #:nodoc:
565
+ self.calling = '+379'
566
+ end
567
+ class LBN < Code #:nodoc:
568
+ self.calling = '+961'
569
+ end
570
+ class TKL < Code #:nodoc:
571
+ self.calling = '+690'
572
+ end
573
+ class GIN < Code #:nodoc:
574
+ self.calling = '+225'
575
+ end
576
+ class NAM < Code #:nodoc:
577
+ self.calling = '+264'
578
+ end
579
+ class SGS < Code #:nodoc:
580
+ self.calling = '+500'
581
+ end
582
+ class ARM < Code #:nodoc:
583
+ self.calling = '+374'
584
+ end
585
+ class GRC < Code #:nodoc:
586
+ self.calling = '+30'
587
+ end
588
+ class TUV < Code #:nodoc:
589
+ self.calling = '+688'
590
+ end
591
+ class TKM < Code #:nodoc:
592
+ self.calling = '+993'
593
+ end
594
+ class GRD < Code #:nodoc:
595
+ self.calling = '+473'
596
+ end
597
+ class DOM < Code #:nodoc:
598
+ self.calling = '+809'
599
+ end
600
+ class ESH < Code #:nodoc:
601
+ self.calling = '+212'
602
+ end
603
+ class LBR < Code #:nodoc:
604
+ self.calling = '+231'
605
+ end
606
+ class MCO < Code #:nodoc:
607
+ self.calling = '+377'
608
+ end
609
+ class ITA < Code #:nodoc:
610
+ self.calling = '+39'
611
+ end
612
+ class BMU < Code #:nodoc:
613
+ self.calling = '+441'
614
+ end
615
+ class EGY < Code #:nodoc:
616
+ self.calling = '+20'
617
+ end
618
+ class PYF < Code #:nodoc:
619
+ self.calling = '+689'
620
+ end
621
+ class CAN < Code #:nodoc:
622
+ self.calling = '+1'
623
+ end
624
+ class MSR < Code #:nodoc:
625
+ self.calling = '+664'
626
+ end
627
+ class SWZ < Code #:nodoc:
628
+ self.calling = '+268'
629
+ end
630
+ class CZE < Code #:nodoc:
631
+ self.calling = '+420'
632
+ end
633
+ class GLP < Code #:nodoc:
634
+ self.calling = '+590'
635
+ end
636
+ class SPM < Code #:nodoc:
637
+ self.calling = '+508'
638
+ end
639
+ class SYC < Code #:nodoc:
640
+ self.calling = '+248'
641
+ end
642
+ class PCN < Code #:nodoc:
643
+ self.calling = '+872'
644
+ end
645
+ class SMR < Code #:nodoc:
646
+ self.calling = '+378'
647
+ end
648
+ class GUF < Code #:nodoc:
649
+ self.calling = '+594'
650
+ end
651
+ class TZA < Code #:nodoc:
652
+ self.calling = '+255'
653
+ end
654
+ class GHA < Code #:nodoc:
655
+ self.calling = '+233'
656
+ end
657
+ class AND < Code #:nodoc:
658
+ self.calling = '+376'
659
+ end
660
+ class BIH < Code #:nodoc:
661
+ self.calling = '+387'
662
+ end
663
+ class KAZ < Code #:nodoc:
664
+ self.calling = '+7'
665
+ end
666
+ class KWT < Code #:nodoc:
667
+ self.calling = '+965'
668
+ end
669
+ class MLI < Code #:nodoc:
670
+ self.calling = '+223'
671
+ end
672
+ class NZL < Code #:nodoc:
673
+ self.calling = '+64'
674
+ end
675
+ class GRL < Code #:nodoc:
676
+ self.calling = '+299'
677
+ end
678
+ class AUS < Code #:nodoc:
679
+ self.calling = '+61'
680
+ end
681
+ class LBY < Code #:nodoc:
682
+ self.calling = '+218'
683
+ end
684
+ class ROU < Code #:nodoc:
685
+ self.calling = '+40'
686
+ end
687
+ class ABW < Code #:nodoc:
688
+ self.calling = '+297'
689
+ end
690
+ class ESP < Code #:nodoc:
691
+ self.calling = '+34'
692
+ end
693
+ class SLB < Code #:nodoc:
694
+ self.calling = '+677'
695
+ end
696
+ class LUX < Code #:nodoc:
697
+ self.calling = '+352'
698
+ end
699
+ class AUT < Code #:nodoc:
700
+ self.calling = '+43'
701
+ end
702
+ class BRA < Code #:nodoc:
703
+ self.calling = '+55'
704
+ end
705
+ class SVK < Code #:nodoc:
706
+ self.calling = '+421'
707
+ end
708
+ class QAT < Code #:nodoc:
709
+ self.calling = '+974'
710
+ end
711
+ class ATA < Code #:nodoc:
712
+ self.calling = '+672'
713
+ end
714
+ class ZAF < Code #:nodoc:
715
+ self.calling = '+27'
716
+ end
717
+ class BRB < Code #:nodoc:
718
+ self.calling = '+246'
719
+ end
720
+ class GUM < Code #:nodoc:
721
+ self.calling = '+671'
722
+ end
723
+ class MYS < Code #:nodoc:
724
+ self.calling = '+60'
725
+ end
726
+ class TTO < Code #:nodoc:
727
+ self.calling = '+868'
728
+ end
729
+ class SLE < Code #:nodoc:
730
+ self.calling = '+232'
731
+ end
732
+ class SVN < Code #:nodoc:
733
+ self.calling = '+386'
734
+ end
735
+ class BVT < Code #:nodoc:
736
+ self.calling = '+47'
737
+ end
738
+ class MYT < Code #:nodoc:
739
+ self.calling = '+262'
740
+ end
741
+ class KGZ < Code #:nodoc:
742
+ self.calling = '+996'
743
+ end
744
+ class EST < Code #:nodoc:
745
+ self.calling = '+372'
746
+ end
747
+ class GNB < Code #:nodoc:
748
+ self.calling = '+245'
749
+ end
750
+ end # end Code
751
+ end # CountryCurrency