hasoffersv3 0.6.0 → 0.6.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.
- checksums.yaml +4 -4
- data/.travis.yml +3 -3
- data/CHANGELOG.md +3 -0
- data/README.md +1 -0
- data/hasoffersv3.gemspec +2 -2
- data/lib/hasoffersv3.rb +3 -2
- data/lib/hasoffersv3/goal.rb +11 -0
- data/lib/hasoffersv3/version.rb +1 -1
- data/spec/lib/goal_spec.rb +21 -0
- metadata +10 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e1a91847f99ca583f510d683e5b3a5b919fa783
|
4
|
+
data.tar.gz: b2656d345695ee2d376198864d42476c84c3a13e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08126a5846feb34d300d840531c5008b0ee7cc30c4610b6518d818889b39aef75cc4788f09891619b0f9794c1fe1712932df7d53b0f5cabaa939507971c5de16'
|
7
|
+
data.tar.gz: 2f9f9387e8ea730633552e2f9feee88a148c7b4c5ea09da642cf82a5d2f8f178e483b01a494fb6109cb4d70040ee32a2703aada907967933ccce00811b802d0b
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
# 0.6.1
|
2
|
+
- [#63] Added `HasOffersV3::Goal` method (@xingftw)
|
3
|
+
|
1
4
|
# 0.6.0
|
2
5
|
- [#61] Added configurable (via `config.raise_errors = true`) raising of internal exceptions (`HasOffersV3::Error` and its descendants) on various API error conditions. Incompatible changes: JSON parsing error now raises a `HasOffersV3::ParseError` that wraps the original error from a particular JSON driver used. (@vittorius)
|
3
6
|
|
data/README.md
CHANGED
data/hasoffersv3.gemspec
CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.name = 'hasoffersv3'
|
8
8
|
s.version = HasOffersV3::VERSION
|
9
9
|
s.platform = Gem::Platform::RUBY
|
10
|
-
s.authors = ['
|
11
|
-
s.email = ['
|
10
|
+
s.authors = ['PubNative', 'Applift']
|
11
|
+
s.email = ['tech@pubnative.net', 'tech@applift.com']
|
12
12
|
s.summary = %q{REST Client for the HasOffers API, version 3.}
|
13
13
|
s.description = %q{REST Client for the HasOffers API, version 3.}
|
14
14
|
s.license = "MIT"
|
data/lib/hasoffersv3.rb
CHANGED
@@ -3,7 +3,7 @@ require 'json'
|
|
3
3
|
|
4
4
|
require 'hasoffersv3/client'
|
5
5
|
|
6
|
-
%w!base affiliate response conversion raw_log report configuration advertiser advertiser_user offer offer_pixel employee application logger!.each do |file|
|
6
|
+
%w!base affiliate response conversion raw_log report configuration advertiser advertiser_user offer offer_pixel employee application goal logger!.each do |file|
|
7
7
|
require "hasoffersv3/#{file}"
|
8
8
|
end
|
9
9
|
|
@@ -26,7 +26,8 @@ class HasOffersV3
|
|
26
26
|
offer_pixels: HasOffersV3::OfferPixel,
|
27
27
|
raw_logs: HasOffersV3::RawLog,
|
28
28
|
reports: HasOffersV3::Report,
|
29
|
-
application: HasOffersV3::Application
|
29
|
+
application: HasOffersV3::Application,
|
30
|
+
goal: HasOffersV3::Goal
|
30
31
|
}
|
31
32
|
|
32
33
|
class << self
|
data/lib/hasoffersv3/version.rb
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
describe HasOffersV3::Goal do
|
2
|
+
let(:url) { api_url 'Goal' }
|
3
|
+
|
4
|
+
describe '#find_all' do
|
5
|
+
it 'makes a proper request call' do
|
6
|
+
stub_call
|
7
|
+
response = subject.find_all
|
8
|
+
expect(a_request(:post, url).with(body: hash_including({'Method' => 'findAll'}))).to have_been_made
|
9
|
+
validate_call response
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
describe '#get_tier_payouts' do
|
14
|
+
it 'makes a proper request call' do
|
15
|
+
stub_call
|
16
|
+
response = subject.get_tier_payouts
|
17
|
+
expect(a_request(:post, url).with(body: hash_including({'Method' => 'getTierPayouts'}))).to have_been_made
|
18
|
+
validate_call response
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hasoffersv3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
-
|
7
|
+
- PubNative
|
8
|
+
- Applift
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-11-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -83,8 +83,8 @@ dependencies:
|
|
83
83
|
version: '0'
|
84
84
|
description: REST Client for the HasOffers API, version 3.
|
85
85
|
email:
|
86
|
-
-
|
87
|
-
-
|
86
|
+
- tech@pubnative.net
|
87
|
+
- tech@applift.com
|
88
88
|
executables: []
|
89
89
|
extensions: []
|
90
90
|
extra_rdoc_files: []
|
@@ -113,6 +113,7 @@ files:
|
|
113
113
|
- lib/hasoffersv3/conversion.rb
|
114
114
|
- lib/hasoffersv3/employee.rb
|
115
115
|
- lib/hasoffersv3/error.rb
|
116
|
+
- lib/hasoffersv3/goal.rb
|
116
117
|
- lib/hasoffersv3/logger.rb
|
117
118
|
- lib/hasoffersv3/offer.rb
|
118
119
|
- lib/hasoffersv3/offer_pixel.rb
|
@@ -133,6 +134,7 @@ files:
|
|
133
134
|
- spec/lib/configuration_spec.rb
|
134
135
|
- spec/lib/conversion_spec.rb
|
135
136
|
- spec/lib/employee_spec.rb
|
137
|
+
- spec/lib/goal_spec.rb
|
136
138
|
- spec/lib/hasoffersv3_spec.rb
|
137
139
|
- spec/lib/logger_spec.rb
|
138
140
|
- spec/lib/offer_pixel_spec.rb
|
@@ -161,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
161
163
|
version: '0'
|
162
164
|
requirements: []
|
163
165
|
rubyforge_project:
|
164
|
-
rubygems_version: 2.6.
|
166
|
+
rubygems_version: 2.6.13
|
165
167
|
signing_key:
|
166
168
|
specification_version: 4
|
167
169
|
summary: REST Client for the HasOffers API, version 3.
|
@@ -178,6 +180,7 @@ test_files:
|
|
178
180
|
- spec/lib/configuration_spec.rb
|
179
181
|
- spec/lib/conversion_spec.rb
|
180
182
|
- spec/lib/employee_spec.rb
|
183
|
+
- spec/lib/goal_spec.rb
|
181
184
|
- spec/lib/hasoffersv3_spec.rb
|
182
185
|
- spec/lib/logger_spec.rb
|
183
186
|
- spec/lib/offer_pixel_spec.rb
|