yieldmanager 0.8.1 → 0.8.2
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/VERSION +1 -1
- data/lib/yieldmanager/report.rb +13 -0
- data/yieldmanager.gemspec +3 -4
- metadata +6 -6
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.2
|
data/lib/yieldmanager/report.rb
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Patch bogus SSL_CONNECT error in retrieve_data
|
|
2
|
+
# via KarateCode[https://github.com/KarateCode] (Michael Schneider)
|
|
3
|
+
#
|
|
4
|
+
require 'openssl'
|
|
5
|
+
module OpenSSL
|
|
6
|
+
module SSL
|
|
7
|
+
remove_const :VERIFY_PEER
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
|
|
11
|
+
#
|
|
12
|
+
#
|
|
13
|
+
|
|
1
14
|
module Yieldmanager
|
|
2
15
|
# This is the data object for all reportware requests.
|
|
3
16
|
#
|
data/yieldmanager.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{yieldmanager}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Bill Gathen"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-05-11}
|
|
13
13
|
s.description = %q{This gem offers full access to YieldManager's API tools (read/write) as well as ad-hoc reporting through the Reportware tool}
|
|
14
14
|
s.email = %q{bill@billgathen.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -81,7 +81,7 @@ Gem::Specification.new do |s|
|
|
|
81
81
|
]
|
|
82
82
|
s.homepage = %q{http://github.com/billgathen/yieldmanager}
|
|
83
83
|
s.require_paths = ["lib"]
|
|
84
|
-
s.rubygems_version = %q{1.
|
|
84
|
+
s.rubygems_version = %q{1.4.1}
|
|
85
85
|
s.summary = %q{Interact with RightMedia's YieldManager API and Reportware products}
|
|
86
86
|
s.test_files = [
|
|
87
87
|
"spec/patch_detector_spec.rb",
|
|
@@ -92,7 +92,6 @@ Gem::Specification.new do |s|
|
|
|
92
92
|
]
|
|
93
93
|
|
|
94
94
|
if s.respond_to? :specification_version then
|
|
95
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
96
95
|
s.specification_version = 3
|
|
97
96
|
|
|
98
97
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yieldmanager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 59
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.8.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Bill Gathen
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-05-11 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
requirements: []
|
|
152
152
|
|
|
153
153
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 1.
|
|
154
|
+
rubygems_version: 1.4.1
|
|
155
155
|
signing_key:
|
|
156
156
|
specification_version: 3
|
|
157
157
|
summary: Interact with RightMedia's YieldManager API and Reportware products
|