-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgaapi.gemspec
More file actions
36 lines (33 loc) · 1.48 KB
/
gaapi.gemspec
File metadata and controls
36 lines (33 loc) · 1.48 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
34
35
36
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "gaapi/version"
Gem::Specification.new do |s|
s.name = "gaapi"
s.version = GAAPI::VERSION
s.summary = "Query Google Analytics from the command line."
s.description = <<-DESCRIPTION
Submit queries expressed in JSON to Google Analytics. Can be run
from unattended scripts, batch jobs, etc.
DESCRIPTION
s.add_development_dependency "chandler"
s.add_development_dependency "minitest"
s.add_development_dependency "webmock"
s.add_runtime_dependency "google-api-client", "~> 0.19"
s.add_runtime_dependency "googleauth"
s.authors = ["Larry Reid", "Phil Carrillo"]
s.email = "larry.reid@weenhanceit.com"
s.executables << "gaapi"
s.files = Dir.glob("{bin,lib}/**/*") + %w(CHANGELOG.md LICENSE README.md)
s.homepage = "https://github.com/weenhanceit/gaapi"
s.license = "MIT"
s.metadata = {
# "bug_tracker_uri" => "https://example.com/user/bestgemever/issues",
# "changelog_uri" => "https://example.com/user/bestgemever/CHANGELOG.md",
# "documentation_uri" => "https://www.example.info/gems/bestgemever/0.0.1",
# "homepage_uri" => "https://bestgemever.example.io",
# "mailing_list_uri" => "https://groups.example.com/bestgemever",
"source_code_uri" => "https://github.com/weenhanceit/gaapi"
# "wiki_uri" => "https://example.com/user/bestgemever/wiki"
}
end