-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbigquery-client.gemspec
More file actions
25 lines (20 loc) · 939 Bytes
/
bigquery-client.gemspec
File metadata and controls
25 lines (20 loc) · 939 Bytes
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bigquery-client/version'
Gem::Specification.new do |spec|
spec.name = 'bigquery-client'
spec.version = BigQuery::Client::VERSION
spec.authors = ['Tsukuru Tanimichi']
spec.email = ['ttanimichi@hotmail.com']
spec.summary = 'A Ruby interface to the BigQuery API.'
spec.homepage = 'https://github.com/ttanimichi/bigquery-client'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.0.0'
spec.add_runtime_dependency 'google-api-client', '~> 0.8.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'bundler'
end