gaffel 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/gaffel.gemspec +14 -18
- data/lib/gaffel/version.rb +1 -1
- metadata +20 -6
data/gaffel.gemspec
CHANGED
|
@@ -3,23 +3,19 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
require "gaffel/version"
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
s.name
|
|
7
|
-
s.version
|
|
8
|
-
s.authors
|
|
9
|
-
s.email
|
|
10
|
-
s.homepage
|
|
11
|
-
s.summary
|
|
12
|
-
s.description
|
|
13
|
-
|
|
14
|
-
|
|
6
|
+
s.name = "gaffel"
|
|
7
|
+
s.version = Gaffel::VERSION
|
|
8
|
+
s.authors = ["Tilmann Bruckhaus"]
|
|
9
|
+
s.email = 'tilmann@bruckha.us'
|
|
10
|
+
s.homepage = 'http://rubygems.org/gems/gaffel'
|
|
11
|
+
s.summary = %q{Extract data from Google Analytics (GA) v3.0 API}
|
|
12
|
+
s.description = %q{Extract data from Google Analytics (GA) version 3.0 Google APIs.
|
|
13
|
+
Supports extracting 1 metric for 0 or more dimensions, with start and end dates, sorting, and max results requested per
|
|
14
|
+
API call. Provides results record-by-record via an each iterator.}
|
|
15
15
|
s.rubyforge_project = "gaffel"
|
|
16
|
-
|
|
17
|
-
s.
|
|
18
|
-
s.
|
|
19
|
-
s.
|
|
20
|
-
s.
|
|
21
|
-
|
|
22
|
-
# specify any dependencies here; for example:
|
|
23
|
-
# s.add_development_dependency "rspec"
|
|
24
|
-
# s.add_runtime_dependency "rest-client"
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
19
|
+
s.require_paths = ["lib"]
|
|
20
|
+
s.add_development_dependency "rspec"
|
|
25
21
|
end
|
data/lib/gaffel/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gaffel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,25 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-08-
|
|
13
|
-
dependencies:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
date: 2012-08-13 00:00:00.000000000Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: rspec
|
|
16
|
+
requirement: &70283750882540 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :development
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70283750882540
|
|
25
|
+
description: ! 'Extract data from Google Analytics (GA) version 3.0 Google APIs.
|
|
26
|
+
|
|
27
|
+
Supports extracting 1 metric for 0 or more dimensions, with start and end dates,
|
|
28
|
+
sorting, and max results requested per
|
|
29
|
+
|
|
30
|
+
API call. Provides results record-by-record via an each iterator.'
|
|
17
31
|
email: tilmann@bruckha.us
|
|
18
32
|
executables: []
|
|
19
33
|
extensions: []
|