forked from browserstack/BigQuery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigquery.gemspec
25 lines (22 loc) · 1.02 KB
/
bigquery.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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "big_query/version"
Gem::Specification.new do |s|
s.name = "bigquery"
s.version = BigQuery::VERSION
s.authors = ["Adam Bronte", "Andres Bravo"]
s.email = ["[email protected]", "[email protected]"]
s.description = "This library is a wrapper around the google-api-client ruby gem.
It's meant to make calls to BigQuery easier and streamlined."
s.require_paths = ["lib"]
s.summary = "A nice wrapper for Google Big Query"
s.homepage = "https://github.com/abronte/BigQuery"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.add_dependency "google-api-client", "~> 0.9.3"
s.add_dependency "googleauth", "~> 0.5.0"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "pry-byebug"
end