forked from engpro/contacts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
contacts.gemspec
14 lines (14 loc) · 911 Bytes
/
contacts.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Gem::Specification.new do |s|
s.name = "contacts"
s.version = "1.2.4"
s.date = "2010-07-06"
s.summary = "A universal interface to grab contact list information from various providers including Yahoo, AOL, Gmail, Hotmail, and Plaxo."
s.email = "[email protected]"
s.homepage = "http://github.com/cardmagic/contacts"
s.description = "A universal interface to grab contact list information from various providers including Yahoo, AOL, Gmail, Hotmail, and Plaxo."
s.authors = ["Lucas Carlson"]
s.files = ["LICENSE", "Rakefile", "README.rdoc", "examples/grab_contacts.rb", "lib/contacts.rb", "lib/contacts/base.rb", "lib/contacts/json_picker.rb", "lib/contacts/gmail.rb", "lib/contacts/aol.rb", "lib/contacts/hotmail.rb", "lib/contacts/plaxo.rb", "lib/contacts/yahoo.rb"]
s.add_dependency("json", ">= 1.1.1")
s.add_dependency('gdata-19', '>= 1.1.2')
s.add_dependency('nokogiri', '>= 1.4.0')
end