-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsheetq.gemspec
More file actions
33 lines (28 loc) · 1.14 KB
/
sheetq.gemspec
File metadata and controls
33 lines (28 loc) · 1.14 KB
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
28
29
30
31
32
33
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
git = File.expand_path('../.git', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "sheetq/version"
Gem::Specification.new do |spec|
spec.name = "sheetq"
spec.version = Sheetq::VERSION
spec.authors = ["Yoshinari Nomura"]
spec.email = ["nom@quickhack.net"]
spec.summary = %q{Google spread sheet CLI client.}
spec.description = %q{Google spread sheet CLI client.}
spec.homepage = "https://github.com/yoshinari-nomura/sheetq"
spec.license = "MIT"
spec.files = if Dir.exist?(git)
`git ls-files -z`.split("\x0")
else
Dir['**/*']
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency "clian", '~> 0.5.0'
spec.add_runtime_dependency 'google-apis-sheets_v4', '~> 0.39.0'
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end