foco-contacts 1.2.18
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 +10 -0
- data/README.rdoc +68 -0
- data/Rakefile +41 -0
- data/examples/grab_contacts.rb +12 -0
- data/lib/contacts.rb +18 -0
- data/lib/contacts/aol.rb +157 -0
- data/lib/contacts/base.rb +249 -0
- data/lib/contacts/gmail.rb +45 -0
- data/lib/contacts/gmx.rb +63 -0
- data/lib/contacts/hotmail.rb +92 -0
- data/lib/contacts/inbox_lt.rb +90 -0
- data/lib/contacts/json_picker.rb +16 -0
- data/lib/contacts/mailru.rb +69 -0
- data/lib/contacts/onelt.rb +78 -0
- data/lib/contacts/plaxo.rb +130 -0
- data/lib/contacts/seznam.rb +78 -0
- data/lib/contacts/tonline_de.rb +79 -0
- data/lib/contacts/web_de.rb +79 -0
- data/lib/contacts/yahoo.rb +106 -0
- metadata +118 -0
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: foco-contacts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.18
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Lucas Carlson
|
9
|
+
- Brad Imbierowicz
|
10
|
+
- Wong Liang Zan
|
11
|
+
- Mateusz Konikowski
|
12
|
+
- Laurynas Butkus
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
date: 2012-11-13 00:00:00.000000000 Z
|
17
|
+
dependencies:
|
18
|
+
- !ruby/object:Gem::Dependency
|
19
|
+
name: json
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
none: false
|
22
|
+
requirements:
|
23
|
+
- - ~>
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.7.0
|
26
|
+
type: :runtime
|
27
|
+
prerelease: false
|
28
|
+
version_requirements: !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.7.0
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: gdata_19
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 1.1.3
|
42
|
+
type: :runtime
|
43
|
+
prerelease: false
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ~>
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 1.1.3
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: nokogiri
|
52
|
+
requirement: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ~>
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.5.0
|
58
|
+
type: :runtime
|
59
|
+
prerelease: false
|
60
|
+
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ~>
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 1.5.0
|
66
|
+
description: A universal interface to grab contact list information from Yahoo, AOL,
|
67
|
+
Gmail, Hotmail, Plaxo, GMX.net, Web.de, inbox.lt, seznam.cz, t-online.de. Now supporting
|
68
|
+
Ruby 1.9.
|
69
|
+
email: zan@liangzan.net
|
70
|
+
executables: []
|
71
|
+
extensions: []
|
72
|
+
extra_rdoc_files: []
|
73
|
+
files:
|
74
|
+
- lib/contacts/aol.rb
|
75
|
+
- lib/contacts/base.rb
|
76
|
+
- lib/contacts/gmail.rb
|
77
|
+
- lib/contacts/gmx.rb
|
78
|
+
- lib/contacts/hotmail.rb
|
79
|
+
- lib/contacts/inbox_lt.rb
|
80
|
+
- lib/contacts/json_picker.rb
|
81
|
+
- lib/contacts/mailru.rb
|
82
|
+
- lib/contacts/onelt.rb
|
83
|
+
- lib/contacts/plaxo.rb
|
84
|
+
- lib/contacts/seznam.rb
|
85
|
+
- lib/contacts/tonline_de.rb
|
86
|
+
- lib/contacts/web_de.rb
|
87
|
+
- lib/contacts/yahoo.rb
|
88
|
+
- lib/contacts.rb
|
89
|
+
- examples/grab_contacts.rb
|
90
|
+
- LICENSE
|
91
|
+
- README.rdoc
|
92
|
+
- Rakefile
|
93
|
+
homepage: http://github.com/liangzan/contacts
|
94
|
+
licenses: []
|
95
|
+
post_install_message:
|
96
|
+
rdoc_options: []
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
none: false
|
101
|
+
requirements:
|
102
|
+
- - ! '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ! '>='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
requirements: []
|
112
|
+
rubyforge_project:
|
113
|
+
rubygems_version: 1.8.24
|
114
|
+
signing_key:
|
115
|
+
specification_version: 3
|
116
|
+
summary: grab contacts from Yahoo, AOL, Gmail, Hotmail, Plaxo, GMX.net, Web.de, inbox.lt,
|
117
|
+
seznam.cz, t-online.de
|
118
|
+
test_files: []
|