dialable 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.
- data/LICENSE +20 -0
- data/README +33 -0
- data/README.rdoc +3 -0
- data/Rakefile +57 -0
- data/TODO +2 -0
- data/dialable.gemspec +27 -0
- data/lib/dialable.rb +167 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/dialable_spec.rb +7 -0
- data/spec/spec_helper.rb +2 -0
- data/support/make_yaml_nanpa.rb +29 -0
- data/support/nanpa.yaml +1033 -0
- metadata +79 -0
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: dialable
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Chris Horn
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-06-21 00:00:00 -04:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: A gem that provides parsing and output of phone numbers according to NANPA (North American Numbering Plan Administration) standards. If possible, time zones are populated by abbreviation as well as offset relative to the local timezone.
|
23
|
+
email: chorn@chorn.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- LICENSE
|
32
|
+
- README
|
33
|
+
- README.rdoc
|
34
|
+
- Rakefile
|
35
|
+
- TODO
|
36
|
+
- dialable.gemspec
|
37
|
+
- lib/dialable.rb
|
38
|
+
- script/destroy
|
39
|
+
- script/generate
|
40
|
+
- spec/dialable_spec.rb
|
41
|
+
- spec/spec_helper.rb
|
42
|
+
- support/make_yaml_nanpa.rb
|
43
|
+
- support/nanpa.yaml
|
44
|
+
has_rdoc: true
|
45
|
+
homepage: http://github.com/chorn/dialable
|
46
|
+
licenses: []
|
47
|
+
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
hash: 3
|
68
|
+
segments:
|
69
|
+
- 0
|
70
|
+
version: "0"
|
71
|
+
requirements: []
|
72
|
+
|
73
|
+
rubyforge_project:
|
74
|
+
rubygems_version: 1.3.7
|
75
|
+
signing_key:
|
76
|
+
specification_version: 3
|
77
|
+
summary: Provides parsing and output of phone numbers according to NANPA standards.
|
78
|
+
test_files: []
|
79
|
+
|