google-dfp-api 0.12.0 → 0.12.1

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/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ 0.12.1:
2
+ - Fix environment default to use DFP v201511.
3
+
1
4
  0.12.0:
2
5
  - Removed support for DFP v201408.
3
6
  - Added support for DFP v201511.
data/README.md CHANGED
@@ -76,8 +76,8 @@ constructor:
76
76
  dfp = DfpApi::Api.new({
77
77
  :authentication => {
78
78
  :method => 'OAuth2',
79
- :oauth2_client_id: 'INSERT_OAUTH2_CLIENT_ID_HERE',
80
- :oauth2_client_secret: 'INSERT_OAUTH2_CLIENT_SECRET_HERE',
79
+ :oauth2_client_id => 'INSERT_OAUTH2_CLIENT_ID_HERE',
80
+ :oauth2_client_secret => 'INSERT_OAUTH2_CLIENT_SECRET_HERE',
81
81
  :application_name => 'Ruby DFP Sample',
82
82
  :network_code => 123456
83
83
  }
@@ -33,9 +33,9 @@ module DfpApi
33
33
  end
34
34
 
35
35
  # Set defaults
36
- DEFAULT_VERSION = :v201508
36
+ DEFAULT_VERSION = :v201511
37
37
  DEFAULT_ENVIRONMENT = :PRODUCTION
38
- LATEST_VERSION = :v201508
38
+ LATEST_VERSION = :v201511
39
39
 
40
40
  # Set other constants
41
41
  API_NAME = 'DfpApi'
@@ -19,6 +19,6 @@
19
19
 
20
20
  module DfpApi
21
21
  module ApiConfig
22
- CLIENT_LIB_VERSION = '0.12.0'
22
+ CLIENT_LIB_VERSION = '0.12.1'
23
23
  end
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-dfp-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-11-19 00:00:00.000000000 Z
13
+ date: 2016-01-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: google-ads-common