sundawg_contacts 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +18 -0
- data/MIT-LICENSE +20 -0
- data/Manifest +30 -0
- data/README.rdoc +47 -0
- data/Rakefile +68 -0
- data/lib/config/contacts.yml +10 -0
- data/lib/contacts.rb +46 -0
- data/lib/contacts/flickr.rb +133 -0
- data/lib/contacts/google.rb +353 -0
- data/lib/contacts/version.rb +9 -0
- data/lib/contacts/windows_live.rb +164 -0
- data/lib/contacts/yahoo.rb +242 -0
- data/spec/contact_spec.rb +41 -0
- data/spec/feeds/contacts.yml +10 -0
- data/spec/feeds/flickr/auth.getFrob.xml +4 -0
- data/spec/feeds/flickr/auth.getToken.xml +5 -0
- data/spec/feeds/google-many.xml +48 -0
- data/spec/feeds/google-single.xml +46 -0
- data/spec/feeds/wl_contacts.xml +29 -0
- data/spec/feeds/yh_contacts.txt +119 -0
- data/spec/feeds/yh_credential.xml +28 -0
- data/spec/flickr/auth_spec.rb +80 -0
- data/spec/gmail/auth_spec.rb +70 -0
- data/spec/gmail/fetching_spec.rb +196 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +84 -0
- data/spec/windows_live/windows_live_spec.rb +34 -0
- data/spec/yahoo/yahoo_spec.rb +83 -0
- data/sundawg_contacts.gemspec +33 -0
- data/vendor/windows_live_login.rb +1156 -0
- metadata +119 -0
metadata
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sundawg_contacts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Christopher Sun
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-13 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: fakeweb
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 2
|
30
|
+
- 7
|
31
|
+
version: 1.2.7
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
34
|
+
description: Project fork of Mislav Contacts to support signed GData protocol.
|
35
|
+
email: christopher.sun@gmail.com
|
36
|
+
executables: []
|
37
|
+
|
38
|
+
extensions: []
|
39
|
+
|
40
|
+
extra_rdoc_files:
|
41
|
+
- LICENSE
|
42
|
+
- README.rdoc
|
43
|
+
- lib/config/contacts.yml
|
44
|
+
- lib/contacts.rb
|
45
|
+
- lib/contacts/flickr.rb
|
46
|
+
- lib/contacts/google.rb
|
47
|
+
- lib/contacts/version.rb
|
48
|
+
- lib/contacts/windows_live.rb
|
49
|
+
- lib/contacts/yahoo.rb
|
50
|
+
files:
|
51
|
+
- LICENSE
|
52
|
+
- MIT-LICENSE
|
53
|
+
- Manifest
|
54
|
+
- README.rdoc
|
55
|
+
- Rakefile
|
56
|
+
- lib/config/contacts.yml
|
57
|
+
- lib/contacts.rb
|
58
|
+
- lib/contacts/flickr.rb
|
59
|
+
- lib/contacts/google.rb
|
60
|
+
- lib/contacts/version.rb
|
61
|
+
- lib/contacts/windows_live.rb
|
62
|
+
- lib/contacts/yahoo.rb
|
63
|
+
- spec/contact_spec.rb
|
64
|
+
- spec/feeds/contacts.yml
|
65
|
+
- spec/feeds/flickr/auth.getFrob.xml
|
66
|
+
- spec/feeds/flickr/auth.getToken.xml
|
67
|
+
- spec/feeds/google-many.xml
|
68
|
+
- spec/feeds/google-single.xml
|
69
|
+
- spec/feeds/wl_contacts.xml
|
70
|
+
- spec/feeds/yh_contacts.txt
|
71
|
+
- spec/feeds/yh_credential.xml
|
72
|
+
- spec/flickr/auth_spec.rb
|
73
|
+
- spec/gmail/auth_spec.rb
|
74
|
+
- spec/gmail/fetching_spec.rb
|
75
|
+
- spec/rcov.opts
|
76
|
+
- spec/spec.opts
|
77
|
+
- spec/spec_helper.rb
|
78
|
+
- spec/windows_live/windows_live_spec.rb
|
79
|
+
- spec/yahoo/yahoo_spec.rb
|
80
|
+
- vendor/windows_live_login.rb
|
81
|
+
- sundawg_contacts.gemspec
|
82
|
+
has_rdoc: true
|
83
|
+
homepage: http://github.com/SunDawg/contacts
|
84
|
+
licenses: []
|
85
|
+
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options:
|
88
|
+
- --line-numbers
|
89
|
+
- --inline-source
|
90
|
+
- --title
|
91
|
+
- Sundawg_contacts
|
92
|
+
- --main
|
93
|
+
- README.rdoc
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
segments:
|
101
|
+
- 0
|
102
|
+
version: "0"
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
requirements:
|
105
|
+
- - ">="
|
106
|
+
- !ruby/object:Gem::Version
|
107
|
+
segments:
|
108
|
+
- 1
|
109
|
+
- 2
|
110
|
+
version: "1.2"
|
111
|
+
requirements: []
|
112
|
+
|
113
|
+
rubyforge_project: sundawg_contacts
|
114
|
+
rubygems_version: 1.3.6
|
115
|
+
signing_key:
|
116
|
+
specification_version: 3
|
117
|
+
summary: Project fork of Mislav Contacts to support signed GData protocol.
|
118
|
+
test_files: []
|
119
|
+
|