yieldmanager 0.9.4 → 0.9.5
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/API_VERSION +1 -1
- data/AVAILABLE_SERVICES +2 -0
- data/README.md +3 -9
- data/lib/yieldmanager/version.rb +1 -1
- metadata +4 -4
data/API_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.36
|
data/AVAILABLE_SERVICES
CHANGED
|
@@ -6,10 +6,12 @@ CreativeService
|
|
|
6
6
|
DictionaryService
|
|
7
7
|
EntityService
|
|
8
8
|
InsertionOrderService
|
|
9
|
+
InventoryVisibilityControlsService
|
|
9
10
|
LineItemService
|
|
10
11
|
LinkingService
|
|
11
12
|
NotificationService
|
|
12
13
|
PixelService
|
|
14
|
+
PublisherReservePriceService
|
|
13
15
|
QuotaService
|
|
14
16
|
ReportService
|
|
15
17
|
RtbdService
|
data/README.md
CHANGED
|
@@ -9,6 +9,8 @@ copies) and re-uses that wsdl for the life of the Yieldmanager::Client object.
|
|
|
9
9
|
|
|
10
10
|
The current API version is stored in the API_VERSION file.
|
|
11
11
|
|
|
12
|
+
The gem should run properly on 1.8, 1.9 and 2.0, but 1.8 support will likely be removed in a future version.
|
|
13
|
+
|
|
12
14
|
### Installation
|
|
13
15
|
|
|
14
16
|
Yieldmanager is available as a gem for easy installation.
|
|
@@ -52,7 +54,7 @@ To access the test environment, use this:
|
|
|
52
54
|
```ruby
|
|
53
55
|
@ym = Yieldmanager::Client.new(
|
|
54
56
|
:user => "bob",
|
|
55
|
-
:pass => "secret"
|
|
57
|
+
:pass => "secret",
|
|
56
58
|
:env => "test"
|
|
57
59
|
)
|
|
58
60
|
```
|
|
@@ -204,14 +206,6 @@ raised during processing. It's the recommended method to ensure you don't
|
|
|
204
206
|
hang connections when things go wrong. If you use start/end, make sure you
|
|
205
207
|
wrap your logic in a begin/ensure clause and call end_session from the ensure.
|
|
206
208
|
|
|
207
|
-
## RE: Ruby 1.9
|
|
208
|
-
|
|
209
|
-
In an effort to be a good ruby citizen, KarateCode and I have made the gem
|
|
210
|
-
1.9 compatible, but it is based on soap4r 1.5.8, which requires a pile of monkey-patches
|
|
211
|
-
to get working and not **every** combination of calls and args have been tested
|
|
212
|
-
in 1.9. If you're interested in what's been done, check out **lib/soap4r_19_patch**
|
|
213
|
-
and [Tomor Doron's blog post](http://tomerdoron.blogspot.com/2009/10/fixing-soap4r-for-ruby-19.html).
|
|
214
|
-
|
|
215
209
|
## Note on Patches/Pull Requests
|
|
216
210
|
|
|
217
211
|
* Fork the project.
|
data/lib/yieldmanager/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yieldmanager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-04-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -143,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
143
143
|
version: '0'
|
|
144
144
|
segments:
|
|
145
145
|
- 0
|
|
146
|
-
hash:
|
|
146
|
+
hash: 348970642592674757
|
|
147
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
148
|
none: false
|
|
149
149
|
requirements:
|
|
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
version: '0'
|
|
153
153
|
segments:
|
|
154
154
|
- 0
|
|
155
|
-
hash:
|
|
155
|
+
hash: 348970642592674757
|
|
156
156
|
requirements: []
|
|
157
157
|
rubyforge_project:
|
|
158
158
|
rubygems_version: 1.8.25
|