bwapi 10.0.0.pre.484 → 10.0.0.pre.489

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTdiNTc2NWEyZTU5MjgwNDIyMzFlMzRiZWIxNTRkZmNiNzJhY2Q1OQ==
4
+ NTNjMWQ1MjhhY2I1ZTE1M2M5YjBmNzZmZDc4YzY0NDZiNWE2YTQzMg==
5
5
  data.tar.gz: !binary |-
6
- OGE0NGUyNTE2MWY2MjM3M2I4Y2U0M2EwZDA3MjNmYTM0NjczZDJmOQ==
6
+ NGJjZTIzNTczOWFmZjJmYzBmNTY0Yzc5ZGQxMmIyZWY3MWYxOTAyOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjExOWRmOTcwMGQ5NjBlZDYwYTM2ZDk5MDdjZDliMjhkYTEwMTVmODE1NzZk
10
- MzkzODQ1NWEzMjE1NTNiNThmMTc4YWU4NGQyNTg0ZjUwY2U3YTI5NjNmOWUy
11
- MDU3NTdiNDljOTU1YTBmODhjOWYzMzcxZjU3MGQ4YmMwYWM1YjY=
9
+ YTc2YjQwMzc5YTZhYWY0YThjZTM3Y2Y3MjBjNWY4ODBkZjBiODQ3NjhmZGZj
10
+ NTc5ZmQwYzI1YWJlNGZjNjlmODYxMjI1MzczNmVkYjZlZmQxNDdjOTFiNjQw
11
+ MzdkZDYzNjEzMzg3NjI4ODUzNzI2ZjE0MGZiZThjYmNmNmI0MzA=
12
12
  data.tar.gz: !binary |-
13
- NmNiNzg3NzUwNjQ2MDZjMzA1ZmEzZDc3ZjFmOTAzNzk5OWY2MzkyNTMzMzk0
14
- OTQ5Nzg1MmUxNmUxOWE1NTNjNTNiODRiODkyMWUyY2VmMTdkMDBlNjc1OGEy
15
- NTFkMDYzMjdjNjQ3OGYxZjMyZmQ1NmFlNGUyNTdjMDkwOWZhNjU=
13
+ ZDZjY2YyNjYzYzZkMmU2MjZlZmJiMjljYmM5Njk1MGI3YWU2NDI1MWFhNmE1
14
+ YmNjN2M1MWM2NTlhYmQ4NDdkYzFjYjRhOTA4NTZkOTlmNWQyNjUyMGM4ZTNh
15
+ M2QwMzVhMGNjNzg1YWE0MTliNzBlZGMzZGJmZjU4ZWQ0MTM5MGY=
data/.editorconfig CHANGED
@@ -7,5 +7,5 @@ insert_final_newline = true
7
7
  trim_trailing_whitespace = true
8
8
 
9
9
  [*.rb]
10
- indent_style = spaces
10
+ indent_style = space
11
11
  indent_size = 2
data/lib/bwapi/client.rb CHANGED
@@ -4,6 +4,7 @@ require 'bwapi/request'
4
4
  require 'bwapi/performance'
5
5
 
6
6
  require 'bwapi/client/admin'
7
+ require 'bwapi/client/aggregates'
7
8
  require 'bwapi/client/brandwatch'
8
9
  require 'bwapi/client/client'
9
10
  require 'bwapi/client/command_center'
@@ -32,6 +33,7 @@ module BWAPI
32
33
  include BWAPI::Performance
33
34
 
34
35
  include BWAPI::Client::Admin
36
+ include BWAPI::Client::Aggregates
35
37
  include BWAPI::Client::Brandwatch
36
38
  include BWAPI::Client::Client
37
39
  include BWAPI::Client::CommandCenter
@@ -0,0 +1,13 @@
1
+ module BWAPI
2
+ class Client
3
+ # Aggregates module for aggregates endpoints
4
+ module Aggregates
5
+ # Get the list of current aggregate dimensions
6
+ #
7
+ # @return [Array] All aggregates
8
+ def aggregates
9
+ get 'aggregates'
10
+ end
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bwapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 10.0.0.pre.484
4
+ version: 10.0.0.pre.489
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Chrisp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-12 00:00:00.000000000 Z
11
+ date: 2014-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -149,6 +149,7 @@ files:
149
149
  - lib/bwapi/client/admin/clients/users.rb
150
150
  - lib/bwapi/client/admin/clients/users/sharing.rb
151
151
  - lib/bwapi/client/admin/search.rb
152
+ - lib/bwapi/client/aggregates.rb
152
153
  - lib/bwapi/client/brandwatch.rb
153
154
  - lib/bwapi/client/brandwatch/become.rb
154
155
  - lib/bwapi/client/brandwatch/clients.rb