gicodewarrior-gattica 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/VERSION.yml +4 -3
  3. data/gattica.gemspec +36 -48
  4. data/lib/gattica.rb +4 -3
  5. metadata +46 -78
  6. data/.gitignore +0 -4
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5f5f37f5bfbdeb0cfb588cf18dc37b8e47a4495e
4
+ data.tar.gz: fb30cc83bb8521cbe300503491ff7a0729bec7b4
5
+ SHA512:
6
+ metadata.gz: 2c7f39fe99b62eaa98a9d56fd7a43226491f97d8b8aa02d83382d1734e602b26319df6764cb379b2c9432b5dcafacc90c3b359531a11a6714f4041770bc30925
7
+ data.tar.gz: 1213b44814f7adb702fc6d749c943bf6247be63b268481bb03ff380b34bfba8cb5bdff7d651d7d432d2536fa152bdc9dc76051b7c755596533a923f4278ac37b
data/VERSION.yml CHANGED
@@ -1,4 +1,5 @@
1
- ---
2
- :minor: 4
3
- :patch: 1
1
+ ---
4
2
  :major: 0
3
+ :minor: 4
4
+ :patch: 2
5
+ :build:
data/gattica.gemspec CHANGED
@@ -1,71 +1,59 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = %q{gicodewarrior-gattica}
8
- s.version = "0.5.0"
7
+ s.name = "gicodewarrior-gattica"
8
+ s.version = "0.5.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["The Active Network", "Rusty Burchfield"]
12
- s.date = %q{2011-11-01}
13
- s.description = %q{Gattica is a Ruby library for extracting data from the Google Analytics API.}
14
- s.email = %q{GICodeWarrior@gmail.com}
11
+ s.authors = ["The Active Network"]
12
+ s.date = "2013-04-04"
13
+ s.description = "Gattica is a Ruby library for extracting data from the Google Analytics API."
14
+ s.email = "rob.cameron@active.com"
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
- ".gitignore",
21
- "History.txt",
22
- "LICENSE",
23
- "README.rdoc",
24
- "Rakefile",
25
- "VERSION.yml",
26
- "examples/example.rb",
27
- "gattica.gemspec",
28
- "lib/gattica.rb",
29
- "lib/gattica/account.rb",
30
- "lib/gattica/auth.rb",
31
- "lib/gattica/convertible.rb",
32
- "lib/gattica/data_point.rb",
33
- "lib/gattica/data_set.rb",
34
- "lib/gattica/exceptions.rb",
35
- "lib/gattica/user.rb",
36
- "test/helper.rb",
37
- "test/suite.rb",
38
- "test/test_auth.rb",
39
- "test/test_engine.rb",
40
- "test/test_gattica.rb",
41
- "test/test_user.rb"
42
- ]
43
- s.homepage = %q{http://github.com/GICodeWarrior/gattica}
44
- s.rdoc_options = ["--charset=UTF-8"]
45
- s.require_paths = ["lib"]
46
- s.rubygems_version = %q{1.3.7}
47
- s.summary = %q{Gattica is a Ruby library for extracting data from the Google Analytics API. It is simple to use, supports metrics, dimensions, sort, filters, goals, and segments.}
48
- s.test_files = [
20
+ "History.txt",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION.yml",
25
+ "examples/example.rb",
26
+ "gattica.gemspec",
27
+ "lib/gattica.rb",
28
+ "lib/gattica/account.rb",
29
+ "lib/gattica/auth.rb",
30
+ "lib/gattica/convertible.rb",
31
+ "lib/gattica/data_point.rb",
32
+ "lib/gattica/data_set.rb",
33
+ "lib/gattica/exceptions.rb",
34
+ "lib/gattica/user.rb",
35
+ "test/helper.rb",
36
+ "test/suite.rb",
49
37
  "test/test_auth.rb",
50
- "test/helper.rb",
51
- "test/test_user.rb",
52
- "test/test_engine.rb",
53
- "test/suite.rb",
54
- "test/test_gattica.rb",
55
- "examples/example.rb"
38
+ "test/test_engine.rb",
39
+ "test/test_gattica.rb",
40
+ "test/test_user.rb"
56
41
  ]
42
+ s.homepage = "http://github.com/activenetwork/gattica"
43
+ s.require_paths = ["lib"]
44
+ s.rubygems_version = "2.0.3"
45
+ s.summary = "Gattica is a Ruby library for extracting data from the Google Analytics API."
57
46
 
58
47
  if s.respond_to? :specification_version then
59
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
- s.specification_version = 3
48
+ s.specification_version = 4
61
49
 
62
50
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
63
- s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.0", "< 1.6"])
51
+ s.add_runtime_dependency(%q<nokogiri>, ["< 1.6", ">= 1.4.0"])
64
52
  else
65
- s.add_dependency(%q<nokogiri>, [">= 1.4.0", "< 1.6"])
53
+ s.add_dependency(%q<nokogiri>, ["< 1.6", ">= 1.4.0"])
66
54
  end
67
55
  else
68
- s.add_dependency(%q<nokogiri>, [">= 1.4.0", "< 1.6"])
56
+ s.add_dependency(%q<nokogiri>, ["< 1.6", ">= 1.4.0"])
69
57
  end
70
58
  end
71
59
 
data/lib/gattica.rb CHANGED
@@ -10,6 +10,10 @@ require 'rubygems'
10
10
  require 'nokogiri'
11
11
  require 'yaml'
12
12
 
13
+ module Gattica
14
+ VERSION = '0.4.2'
15
+ end
16
+
13
17
  # internal
14
18
  require 'gattica/convertible'
15
19
  require 'gattica/exceptions'
@@ -24,9 +28,6 @@ require 'gattica/data_point'
24
28
  # Please see the README for usage docs.
25
29
 
26
30
  module Gattica
27
-
28
- VERSION = '0.4.0'
29
-
30
31
  # Creates a new instance of Gattica::Engine and gets us going. Please see the README for usage docs.
31
32
  #
32
33
  # ga = Gattica.new({:email => 'anonymous@anon.com', :password => 'password, :profile_id => 123456 })
metadata CHANGED
@@ -1,58 +1,44 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: gicodewarrior-gattica
3
- version: !ruby/object:Gem::Version
4
- hash: 11
5
- prerelease: false
6
- segments:
7
- - 0
8
- - 5
9
- - 0
10
- version: 0.5.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.1
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - The Active Network
14
- - Rusty Burchfield
15
8
  autorequire:
16
9
  bindir: bin
17
10
  cert_chain: []
18
-
19
- date: 2011-11-01 00:00:00 -07:00
20
- default_executable:
21
- dependencies:
22
- - !ruby/object:Gem::Dependency
11
+ date: 2013-04-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
23
14
  name: nokogiri
24
- prerelease: false
25
- requirement: &id001 !ruby/object:Gem::Requirement
26
- none: false
27
- requirements:
28
- - - ">="
29
- - !ruby/object:Gem::Version
30
- hash: 7
31
- segments:
32
- - 1
33
- - 4
34
- - 0
35
- version: 1.4.0
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
36
17
  - - <
37
- - !ruby/object:Gem::Version
38
- hash: 3
39
- segments:
40
- - 1
41
- - 6
42
- version: "1.6"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ - - '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 1.4.0
43
23
  type: :runtime
44
- version_requirements: *id001
45
- description: Gattica is a Ruby library for extracting data from the Google Analytics API.
46
- email: GICodeWarrior@gmail.com
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - <
28
+ - !ruby/object:Gem::Version
29
+ version: '1.6'
30
+ - - '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 1.4.0
33
+ description: Gattica is a Ruby library for extracting data from the Google Analytics
34
+ API.
35
+ email: rob.cameron@active.com
47
36
  executables: []
48
-
49
37
  extensions: []
50
-
51
- extra_rdoc_files:
38
+ extra_rdoc_files:
52
39
  - LICENSE
53
40
  - README.rdoc
54
- files:
55
- - .gitignore
41
+ files:
56
42
  - History.txt
57
43
  - LICENSE
58
44
  - README.rdoc
@@ -74,45 +60,27 @@ files:
74
60
  - test/test_engine.rb
75
61
  - test/test_gattica.rb
76
62
  - test/test_user.rb
77
- has_rdoc: true
78
- homepage: http://github.com/GICodeWarrior/gattica
63
+ homepage: http://github.com/activenetwork/gattica
79
64
  licenses: []
80
-
65
+ metadata: {}
81
66
  post_install_message:
82
- rdoc_options:
83
- - --charset=UTF-8
84
- require_paths:
67
+ rdoc_options: []
68
+ require_paths:
85
69
  - lib
86
- required_ruby_version: !ruby/object:Gem::Requirement
87
- none: false
88
- requirements:
89
- - - ">="
90
- - !ruby/object:Gem::Version
91
- hash: 3
92
- segments:
93
- - 0
94
- version: "0"
95
- required_rubygems_version: !ruby/object:Gem::Requirement
96
- none: false
97
- requirements:
98
- - - ">="
99
- - !ruby/object:Gem::Version
100
- hash: 3
101
- segments:
102
- - 0
103
- version: "0"
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - '>='
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
104
80
  requirements: []
105
-
106
81
  rubyforge_project:
107
- rubygems_version: 1.3.7
82
+ rubygems_version: 2.0.3
108
83
  signing_key:
109
- specification_version: 3
110
- summary: Gattica is a Ruby library for extracting data from the Google Analytics API. It is simple to use, supports metrics, dimensions, sort, filters, goals, and segments.
111
- test_files:
112
- - test/test_auth.rb
113
- - test/helper.rb
114
- - test/test_user.rb
115
- - test/test_engine.rb
116
- - test/suite.rb
117
- - test/test_gattica.rb
118
- - examples/example.rb
84
+ specification_version: 4
85
+ summary: Gattica is a Ruby library for extracting data from the Google Analytics API.
86
+ test_files: []
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- *.gem
2
- github-test.rb
3
- examples/active_example.rb
4
- examples/.DS_Store