import_contacts 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/import_contacts.gemspec +24 -0
- data/lib/import_contacts/version.rb +3 -0
- data/lib/import_contacts.rb +5 -0
- metadata +79 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "import_contacts/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "import_contacts"
|
7
|
+
s.version = ImportContacts::VERSION
|
8
|
+
s.authors = ["李骥平"]
|
9
|
+
s.email = ["lijiping@demohour.com"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = %q{支持gmail, hotmail, sina(sina.cn, sina.com), netease(163,126,yeah.net)...}
|
12
|
+
s.description = %q{用户输入邮件地址和密码可以导出相应的地址簿,支持gmail, hotmail, sina(sina.cn, sina.com), netease(163,126,yeah.net)...}
|
13
|
+
|
14
|
+
s.rubyforge_project = "import_contacts"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# specify any dependencies here; for example:
|
22
|
+
# s.add_development_dependency "rspec"
|
23
|
+
# s.add_runtime_dependency "rest-client"
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: import_contacts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- !binary |
|
14
|
+
5p2O6aql5bmz
|
15
|
+
|
16
|
+
autorequire:
|
17
|
+
bindir: bin
|
18
|
+
cert_chain: []
|
19
|
+
|
20
|
+
date: 2011-11-18 00:00:00 Z
|
21
|
+
dependencies: []
|
22
|
+
|
23
|
+
description: !binary |
|
24
|
+
55So5oi36L6T5YWl6YKu5Lu25Zyw5Z2A5ZKM5a+G56CB5Y+v5Lul5a+85Ye6
|
25
|
+
55u45bqU55qE5Zyw5Z2A57C/77yM5pSv5oyBZ21haWwsIGhvdG1haWwsIHNp
|
26
|
+
bmEoc2luYS5jbiwgc2luYS5jb20pLCBuZXRlYXNlKDE2MywxMjYseWVhaC5u
|
27
|
+
ZXQpLi4u
|
28
|
+
|
29
|
+
email:
|
30
|
+
- lijiping@demohour.com
|
31
|
+
executables: []
|
32
|
+
|
33
|
+
extensions: []
|
34
|
+
|
35
|
+
extra_rdoc_files: []
|
36
|
+
|
37
|
+
files:
|
38
|
+
- .gitignore
|
39
|
+
- Gemfile
|
40
|
+
- Rakefile
|
41
|
+
- import_contacts.gemspec
|
42
|
+
- lib/import_contacts.rb
|
43
|
+
- lib/import_contacts/version.rb
|
44
|
+
homepage: ""
|
45
|
+
licenses: []
|
46
|
+
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
hash: 3
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
hash: 3
|
67
|
+
segments:
|
68
|
+
- 0
|
69
|
+
version: "0"
|
70
|
+
requirements: []
|
71
|
+
|
72
|
+
rubyforge_project: import_contacts
|
73
|
+
rubygems_version: 1.8.11
|
74
|
+
signing_key:
|
75
|
+
specification_version: 3
|
76
|
+
summary: "\xE6\x94\xAF\xE6\x8C\x81gmail, hotmail, sina(sina.cn, sina.com), netease(163,126,yeah.net)..."
|
77
|
+
test_files: []
|
78
|
+
|
79
|
+
has_rdoc:
|