bwapi 11.0.0 → 11.0.1.pre.557
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.
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
      
 2 
     | 
    
         
            +
            !binary "U0hBMQ==":
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: !binary |-
         
     | 
| 
      
 4 
     | 
    
         
            +
                ZDE2ZmYzZGRkZGNmMjlkOGE4YjYyMDhlOWExZmE3ODUxNjA0N2NjNg==
         
     | 
| 
      
 5 
     | 
    
         
            +
              data.tar.gz: !binary |-
         
     | 
| 
      
 6 
     | 
    
         
            +
                MjRjZmY1NDA1NDU0MzEwOTI1NzJhMjEzMzJkZGFlZDJmYjcwYWY0ZQ==
         
     | 
| 
       5 
7 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
              metadata.gz: !binary |-
         
     | 
| 
      
 9 
     | 
    
         
            +
                NjIwYzI3YTAyMjU3NjkyOWRiZDJhMDc1OTAxNzVjZGVhMmZlMTQ3NWI5OTk4
         
     | 
| 
      
 10 
     | 
    
         
            +
                YzRjYzIzOTk4Njg5YTZjZTYwMDJhMjcxMzk1NzYxY2Y4NzA4N2Y1ZDAzMjRk
         
     | 
| 
      
 11 
     | 
    
         
            +
                MTk1ZjY5MmY3NDMyMWYzY2JiZGI4MmZkOTMzNzAzZTQ3N2RmYTA=
         
     | 
| 
      
 12 
     | 
    
         
            +
              data.tar.gz: !binary |-
         
     | 
| 
      
 13 
     | 
    
         
            +
                N2E1NjZjOWYxZjgyNjI1ZjlhOTVkODYwMmMxNTEzYmJlNjM5ZmQzZTc4OGI2
         
     | 
| 
      
 14 
     | 
    
         
            +
                NGFiZmViMzllMDIwODQ4YTIwNWRlN2RiNzVlM2VmOGQ0ZGQ1NjVhOGExODJi
         
     | 
| 
      
 15 
     | 
    
         
            +
                ZjdkZGRjMDMzZjZjNzFkYjBkNGIzYWNmZTgyNDM1ZjE0NDEyYjM=
         
     | 
| 
         @@ -3,7 +3,7 @@ module BWAPI 
     | 
|
| 
       3 
3 
     | 
    
         
             
                module Admin
         
     | 
| 
       4 
4 
     | 
    
         
             
                  module Clients
         
     | 
| 
       5 
5 
     | 
    
         
             
                    module Users
         
     | 
| 
       6 
     | 
    
         
            -
                      # Sharing module for admin/users/sharing endpoints
         
     | 
| 
      
 6 
     | 
    
         
            +
                      # Sharing module for admin/clients/users/sharing endpoints
         
     | 
| 
       7 
7 
     | 
    
         
             
                      module Sharing
         
     | 
| 
       8 
8 
     | 
    
         
             
                        # Get a list of project shares for user
         
     | 
| 
       9 
9 
     | 
    
         
             
                        #
         
     | 
| 
         @@ -11,7 +11,7 @@ module BWAPI 
     | 
|
| 
       11 
11 
     | 
    
         
             
                        # @param user_id [Integer] Id of the user
         
     | 
| 
       12 
12 
     | 
    
         
             
                        # @return [Hash] All shares for client user
         
     | 
| 
       13 
13 
     | 
    
         
             
                        def client_users_sharing(client_id, user_id)
         
     | 
| 
       14 
     | 
    
         
            -
                          get "admin/ 
     | 
| 
      
 14 
     | 
    
         
            +
                          get "admin/clients/#{client_id}/users/#{user_id}/sharing"
         
     | 
| 
       15 
15 
     | 
    
         
             
                        end
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
                        # Update a list of project shares for user
         
     | 
| 
         @@ -22,7 +22,7 @@ module BWAPI 
     | 
|
| 
       22 
22 
     | 
    
         
             
                        # @option opts [Array] ProjectShareDTO The shares of the user
         
     | 
| 
       23 
23 
     | 
    
         
             
                        # @return [Hash] Updated shares for client user
         
     | 
| 
       24 
24 
     | 
    
         
             
                        def update_client_users_sharing(client_id, user_id, opts)
         
     | 
| 
       25 
     | 
    
         
            -
                           
     | 
| 
      
 25 
     | 
    
         
            +
                          put "admin/clients/#{client_id}/users/#{user_id}/sharing", opts
         
     | 
| 
       26 
26 
     | 
    
         
             
                        end
         
     | 
| 
       27 
27 
     | 
    
         
             
                      end
         
     | 
| 
       28 
28 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -20,8 +20,8 @@ module BWAPI 
     | 
|
| 
       20 
20 
     | 
    
         
             
                    # Get colours defined for queries in current client
         
     | 
| 
       21 
21 
     | 
    
         
             
                    #
         
     | 
| 
       22 
22 
     | 
    
         
             
                    # TODO: Add parameters documentation
         
     | 
| 
       23 
     | 
    
         
            -
                    def update_query_colour(query_id)
         
     | 
| 
       24 
     | 
    
         
            -
                      put "/commandcenter/queryColours/#{query_id}"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    def update_query_colour(query_id, opts = {})
         
     | 
| 
      
 24 
     | 
    
         
            +
                      put "/commandcenter/queryColours/#{query_id}", opts
         
     | 
| 
       25 
25 
     | 
    
         
             
                    end
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
                    # Get colours defined for queries in current client
         
     | 
    
        data/lib/bwapi/version.rb
    CHANGED
    
    
| 
         @@ -385,7 +385,7 @@ describe BWAPI::Configuration do 
     | 
|
| 
       385 
385 
     | 
    
         
             
                end
         
     | 
| 
       386 
386 
     | 
    
         | 
| 
       387 
387 
     | 
    
         
             
                it 'should reset the user_agent value' do
         
     | 
| 
       388 
     | 
    
         
            -
                  expect(bwapi.user_agent).to eql('BWAPI Ruby Gem 11.0. 
     | 
| 
      
 388 
     | 
    
         
            +
                  expect(bwapi.user_agent).to eql('BWAPI Ruby Gem 11.0.1')
         
     | 
| 
       389 
389 
     | 
    
         
             
                end
         
     | 
| 
       390 
390 
     | 
    
         | 
| 
       391 
391 
     | 
    
         
             
                it 'should reset the username value' do
         
     | 
| 
         @@ -478,7 +478,7 @@ describe BWAPI::Configuration do 
     | 
|
| 
       478 
478 
     | 
    
         
             
                    client_secret: nil,
         
     | 
| 
       479 
479 
     | 
    
         
             
                    connection_options:  {
         
     | 
| 
       480 
480 
     | 
    
         
             
                      headers:  {
         
     | 
| 
       481 
     | 
    
         
            -
                        user_agent: 'BWAPI Ruby Gem 11.0. 
     | 
| 
      
 481 
     | 
    
         
            +
                        user_agent: 'BWAPI Ruby Gem 11.0.1'
         
     | 
| 
       482 
482 
     | 
    
         
             
                      },
         
     | 
| 
       483 
483 
     | 
    
         
             
                      request: {
         
     | 
| 
       484 
484 
     | 
    
         
             
                        params_encoder: Faraday::FlatParamsEncoder
         
     | 
| 
         @@ -490,7 +490,7 @@ describe BWAPI::Configuration do 
     | 
|
| 
       490 
490 
     | 
    
         
             
                    password: nil,
         
     | 
| 
       491 
491 
     | 
    
         
             
                    performance: {},
         
     | 
| 
       492 
492 
     | 
    
         
             
                    refresh_token: nil,
         
     | 
| 
       493 
     | 
    
         
            -
                    user_agent: 'BWAPI Ruby Gem 11.0. 
     | 
| 
      
 493 
     | 
    
         
            +
                    user_agent: 'BWAPI Ruby Gem 11.0.1',
         
     | 
| 
       494 
494 
     | 
    
         
             
                    username: nil,
         
     | 
| 
       495 
495 
     | 
    
         
             
                    verify_ssl: false
         
     | 
| 
       496 
496 
     | 
    
         
             
                  )
         
     | 
    
        data/spec/bwapi/default_spec.rb
    CHANGED
    
    | 
         @@ -34,7 +34,7 @@ describe BWAPI::Default do 
     | 
|
| 
       34 
34 
     | 
    
         
             
                    client_secret: nil,
         
     | 
| 
       35 
35 
     | 
    
         
             
                    connection_options:  {
         
     | 
| 
       36 
36 
     | 
    
         
             
                      headers:  {
         
     | 
| 
       37 
     | 
    
         
            -
                        user_agent: 'BWAPI Ruby Gem 11.0. 
     | 
| 
      
 37 
     | 
    
         
            +
                        user_agent: 'BWAPI Ruby Gem 11.0.1'
         
     | 
| 
       38 
38 
     | 
    
         
             
                      },
         
     | 
| 
       39 
39 
     | 
    
         
             
                      request: {
         
     | 
| 
       40 
40 
     | 
    
         
             
                        params_encoder: Faraday::FlatParamsEncoder
         
     | 
| 
         @@ -46,7 +46,7 @@ describe BWAPI::Default do 
     | 
|
| 
       46 
46 
     | 
    
         
             
                    password: nil,
         
     | 
| 
       47 
47 
     | 
    
         
             
                    performance: {},
         
     | 
| 
       48 
48 
     | 
    
         
             
                    refresh_token: nil,
         
     | 
| 
       49 
     | 
    
         
            -
                    user_agent: 'BWAPI Ruby Gem 11.0. 
     | 
| 
      
 49 
     | 
    
         
            +
                    user_agent: 'BWAPI Ruby Gem 11.0.1',
         
     | 
| 
       50 
50 
     | 
    
         
             
                    username: nil,
         
     | 
| 
       51 
51 
     | 
    
         
             
                    verify_ssl: false
         
     | 
| 
       52 
52 
     | 
    
         
             
                  )
         
     | 
| 
         @@ -128,7 +128,7 @@ describe BWAPI::Default do 
     | 
|
| 
       128 
128 
     | 
    
         
             
                it 'should return the default hash values' do
         
     | 
| 
       129 
129 
     | 
    
         
             
                  expect(BWAPI::Default.connection_options).to eql(
         
     | 
| 
       130 
130 
     | 
    
         
             
                    headers: {
         
     | 
| 
       131 
     | 
    
         
            -
                      user_agent: 'BWAPI Ruby Gem 11.0. 
     | 
| 
      
 131 
     | 
    
         
            +
                      user_agent: 'BWAPI Ruby Gem 11.0.1'
         
     | 
| 
       132 
132 
     | 
    
         
             
                    },
         
     | 
| 
       133 
133 
     | 
    
         
             
                    request: {
         
     | 
| 
       134 
134 
     | 
    
         
             
                      params_encoder: Faraday::FlatParamsEncoder
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,125 +1,125 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: bwapi
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 11.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 11.0.1.pre.557
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Jonathan Chrisp
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2015-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2015-02-20 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rspec
         
     | 
| 
       15 
15 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
     | 
    
         
            -
                - -  
     | 
| 
      
 17 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
19 
     | 
    
         
             
                    version: 3.0.0
         
     | 
| 
       20 
20 
     | 
    
         
             
              type: :development
         
     | 
| 
       21 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
     | 
    
         
            -
                - -  
     | 
| 
      
 24 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       25 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
26 
     | 
    
         
             
                    version: 3.0.0
         
     | 
| 
       27 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
28 
     | 
    
         
             
              name: rubocop
         
     | 
| 
       29 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
     | 
    
         
            -
                - -  
     | 
| 
      
 31 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
33 
     | 
    
         
             
                    version: 0.24.1
         
     | 
| 
       34 
34 
     | 
    
         
             
              type: :development
         
     | 
| 
       35 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
     | 
    
         
            -
                - -  
     | 
| 
      
 38 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       39 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
40 
     | 
    
         
             
                    version: 0.24.1
         
     | 
| 
       41 
41 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
42 
     | 
    
         
             
              name: allotment
         
     | 
| 
       43 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
44 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
     | 
    
         
            -
                - -  
     | 
| 
      
 45 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       46 
46 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
47 
     | 
    
         
             
                    version: 1.1.0
         
     | 
| 
       48 
48 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       49 
49 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       50 
50 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
     | 
    
         
            -
                - -  
     | 
| 
      
 52 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       53 
53 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
54 
     | 
    
         
             
                    version: 1.1.0
         
     | 
| 
       55 
55 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
56 
     | 
    
         
             
              name: faraday
         
     | 
| 
       57 
57 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       58 
58 
     | 
    
         
             
                requirements:
         
     | 
| 
       59 
     | 
    
         
            -
                - -  
     | 
| 
      
 59 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       60 
60 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       61 
61 
     | 
    
         
             
                    version: 0.9.0
         
     | 
| 
       62 
62 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       63 
63 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       64 
64 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       65 
65 
     | 
    
         
             
                requirements:
         
     | 
| 
       66 
     | 
    
         
            -
                - -  
     | 
| 
      
 66 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       67 
67 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       68 
68 
     | 
    
         
             
                    version: 0.9.0
         
     | 
| 
       69 
69 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       70 
70 
     | 
    
         
             
              name: faraday_middleware
         
     | 
| 
       71 
71 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       72 
72 
     | 
    
         
             
                requirements:
         
     | 
| 
       73 
     | 
    
         
            -
                - -  
     | 
| 
      
 73 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       74 
74 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       75 
75 
     | 
    
         
             
                    version: 0.9.1
         
     | 
| 
       76 
76 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       77 
77 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       78 
78 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       79 
79 
     | 
    
         
             
                requirements:
         
     | 
| 
       80 
     | 
    
         
            -
                - -  
     | 
| 
      
 80 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       81 
81 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       82 
82 
     | 
    
         
             
                    version: 0.9.1
         
     | 
| 
       83 
83 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       84 
84 
     | 
    
         
             
              name: faraday_middleware-parse_csv
         
     | 
| 
       85 
85 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       86 
86 
     | 
    
         
             
                requirements:
         
     | 
| 
       87 
     | 
    
         
            -
                - -  
     | 
| 
      
 87 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       88 
88 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       89 
89 
     | 
    
         
             
                    version: '0.1'
         
     | 
| 
       90 
90 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       91 
91 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       92 
92 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       93 
93 
     | 
    
         
             
                requirements:
         
     | 
| 
       94 
     | 
    
         
            -
                - -  
     | 
| 
      
 94 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       95 
95 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       96 
96 
     | 
    
         
             
                    version: '0.1'
         
     | 
| 
       97 
97 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       98 
98 
     | 
    
         
             
              name: faraday_middleware-parse_oj
         
     | 
| 
       99 
99 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       100 
100 
     | 
    
         
             
                requirements:
         
     | 
| 
       101 
     | 
    
         
            -
                - -  
     | 
| 
      
 101 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       102 
102 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       103 
103 
     | 
    
         
             
                    version: 0.3.0
         
     | 
| 
       104 
104 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       105 
105 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       106 
106 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       107 
107 
     | 
    
         
             
                requirements:
         
     | 
| 
       108 
     | 
    
         
            -
                - -  
     | 
| 
      
 108 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       109 
109 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       110 
110 
     | 
    
         
             
                    version: 0.3.0
         
     | 
| 
       111 
111 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       112 
112 
     | 
    
         
             
              name: oj
         
     | 
| 
       113 
113 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       114 
114 
     | 
    
         
             
                requirements:
         
     | 
| 
       115 
     | 
    
         
            -
                - -  
     | 
| 
      
 115 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       116 
116 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       117 
117 
     | 
    
         
             
                    version: 2.11.0
         
     | 
| 
       118 
118 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       119 
119 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       120 
120 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       121 
121 
     | 
    
         
             
                requirements:
         
     | 
| 
       122 
     | 
    
         
            -
                - -  
     | 
| 
      
 122 
     | 
    
         
            +
                - - ~>
         
     | 
| 
       123 
123 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       124 
124 
     | 
    
         
             
                    version: 2.11.0
         
     | 
| 
       125 
125 
     | 
    
         
             
            description: A Ruby wrapper for the Brandwatch API
         
     | 
| 
         @@ -129,10 +129,10 @@ executables: 
     | 
|
| 
       129 
129 
     | 
    
         
             
            extensions: []
         
     | 
| 
       130 
130 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       131 
131 
     | 
    
         
             
            files:
         
     | 
| 
       132 
     | 
    
         
            -
            -  
     | 
| 
       133 
     | 
    
         
            -
            -  
     | 
| 
       134 
     | 
    
         
            -
            -  
     | 
| 
       135 
     | 
    
         
            -
            -  
     | 
| 
      
 132 
     | 
    
         
            +
            - .editorconfig
         
     | 
| 
      
 133 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 134 
     | 
    
         
            +
            - .rubocop.yml
         
     | 
| 
      
 135 
     | 
    
         
            +
            - .travis.yml
         
     | 
| 
       136 
136 
     | 
    
         
             
            - CHANGELOG.md
         
     | 
| 
       137 
137 
     | 
    
         
             
            - CONTRIBUTING.md
         
     | 
| 
       138 
138 
     | 
    
         
             
            - Gemfile
         
     | 
| 
         @@ -281,17 +281,17 @@ require_paths: 
     | 
|
| 
       281 
281 
     | 
    
         
             
            - lib
         
     | 
| 
       282 
282 
     | 
    
         
             
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
       283 
283 
     | 
    
         
             
              requirements:
         
     | 
| 
       284 
     | 
    
         
            -
              - -  
     | 
| 
      
 284 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
       285 
285 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       286 
286 
     | 
    
         
             
                  version: 1.9.2
         
     | 
| 
       287 
287 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       288 
288 
     | 
    
         
             
              requirements:
         
     | 
| 
       289 
     | 
    
         
            -
              - -  
     | 
| 
      
 289 
     | 
    
         
            +
              - - ! '>'
         
     | 
| 
       290 
290 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       291 
     | 
    
         
            -
                  version:  
     | 
| 
      
 291 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
       292 
292 
     | 
    
         
             
            requirements: []
         
     | 
| 
       293 
293 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       294 
     | 
    
         
            -
            rubygems_version: 2.4. 
     | 
| 
      
 294 
     | 
    
         
            +
            rubygems_version: 2.4.5
         
     | 
| 
       295 
295 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       296 
296 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       297 
297 
     | 
    
         
             
            summary: Brandwatch API Wrapper
         
     | 
| 
         @@ -301,4 +301,3 @@ test_files: 
     | 
|
| 
       301 
301 
     | 
    
         
             
            - spec/bwapi/default_spec.rb
         
     | 
| 
       302 
302 
     | 
    
         
             
            - spec/bwapi_spec.rb
         
     | 
| 
       303 
303 
     | 
    
         
             
            - spec/helper.rb
         
     | 
| 
       304 
     | 
    
         
            -
            has_rdoc: 
         
     |