forked from uniiverse/google-contacts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
google-contacts.gemspec
27 lines (21 loc) · 1 KB
/
google-contacts.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require "google-contacts/version"
Gem::Specification.new do |s|
s.name = "google-contacts"
s.version = GContacts::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Zachary Anker"]
s.email = ["zach.anker@gmail.com"]
s.homepage = "http://github.com/Placester/google-contacts"
s.summary = "Google Contacts (v3) library"
s.description = "Helps manage both the importing and exporting of Google Contacts (v3) data"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "google-contacts"
s.add_runtime_dependency "nokogiri", "~>1.5.0"
s.add_runtime_dependency "nori", "~>1.1.0"
s.add_runtime_dependency "jruby-openssl", "~>0.7.0" if RUBY_PLATFORM == "java"
s.add_development_dependency "rspec", "~>2.8.0"
s.add_development_dependency "guard-rspec", "~>0.6.0"
s.files = Dir.glob("lib/**/*") + %w[GPL-LICENSE MIT-LICENSE README.md CHANGELOG.md Rakefile]
s.require_path = "lib"
end