-
Notifications
You must be signed in to change notification settings - Fork 2
/
google_client.gemspec
25 lines (20 loc) · 1.01 KB
/
google_client.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/google_client/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["juandebravo"]
gem.email = ["[email protected]"]
gem.summary = %q{Ease way to get access to Google API.}
gem.description = %q{This gem is a wrapper on top of the Google API that allows a developer to handle calendars, events, contacts on behalf of the user.}
gem.homepage = "http://www.github.com/juandebravo/google_client"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "google_client"
gem.require_paths = ["lib"]
gem.version = GoogleClient::VERSION
gem.add_dependency("rest-client")
gem.add_dependency("addressable")
gem.add_development_dependency("rake")
gem.add_development_dependency("rspec")
gem.add_development_dependency("webmock")
end