phoney 0.0.3

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/spec/spec.opts ADDED
@@ -0,0 +1,4 @@
1
+ --colour
2
+ --format progress
3
+ --loadby mtime
4
+ --reverse
@@ -0,0 +1,6 @@
1
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
2
+
3
+ require 'rubygems'
4
+
5
+ require 'spec'
6
+ require 'phoney'
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phoney
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Jan Habermann
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-14 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: Ruby library that parses a phone number and automatically formats it correctly, depending on the country/locale you set.
17
+ email: jan@habermann24.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README.rdoc
24
+ files:
25
+ - .gitignore
26
+ - LICENCE
27
+ - README.rdoc
28
+ - Rakefile
29
+ - lib/data/regions.yml
30
+ - lib/phoney.rb
31
+ - lib/phoney/base.rb
32
+ - lib/phoney/parser.rb
33
+ - lib/phoney/region.rb
34
+ - lib/phoney/utils.rb
35
+ - lib/phoney/version.rb
36
+ - phoney.gemspec
37
+ - spec/parser/br_spec.rb
38
+ - spec/parser/de_spec.rb
39
+ - spec/parser/us_spec.rb
40
+ - spec/phone_number_spec.rb
41
+ - spec/spec.opts
42
+ - spec/spec_helper.rb
43
+ has_rdoc: true
44
+ homepage: http://github.com/habermann24/phoney
45
+ licenses: []
46
+
47
+ post_install_message:
48
+ rdoc_options:
49
+ - --charset=UTF-8
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ version:
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: "0"
63
+ version:
64
+ requirements: []
65
+
66
+ rubyforge_project:
67
+ rubygems_version: 1.3.5
68
+ signing_key:
69
+ specification_version: 3
70
+ summary: Ruby library that formats phone numbers.
71
+ test_files:
72
+ - spec/parser/br_spec.rb
73
+ - spec/parser/de_spec.rb
74
+ - spec/parser/us_spec.rb
75
+ - spec/phone_number_spec.rb
76
+ - spec/spec_helper.rb