-
Notifications
You must be signed in to change notification settings - Fork 4
/
goo_drive.gemspec
27 lines (22 loc) · 966 Bytes
/
goo_drive.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'goo_drive/version'
Gem::Specification.new do |spec|
spec.name = 'goo_drive'
spec.version = GooDrive::VERSION
spec.date = '2013-07-22'
spec.summary = "A simple gem for processing documents to html with google drive"
spec.description = "A simple gem for processing documents to html with google drive"
spec.authors = ["Seth Wolfwood"]
spec.email = '[email protected]'
spec.homepage = 'https://github.com/sethwoodworth/rGooDrive'
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ["lib"]
spec.license = "GPL"
spec.add_dependency "google-api-client"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rake"
end