yieldmanager 0.0.1 → 0.0.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/yieldmanager.gemspec +55 -0
- metadata +2 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{yieldmanager}
|
|
8
|
+
s.version = "0.0.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Bill Gathen"]
|
|
12
|
+
s.date = %q{2009-11-14}
|
|
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
|
+
s.email = %q{bill@billgathen.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/yieldmanager.rb",
|
|
27
|
+
"spec/spec.opts",
|
|
28
|
+
"spec/spec_helper.rb",
|
|
29
|
+
"spec/yieldmanager_spec.rb",
|
|
30
|
+
"yieldmanager.gemspec"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/billgathen/yieldmanager}
|
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
|
36
|
+
s.summary = %q{Interact with RightMedia's YieldManager API and Reportware products}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"spec/spec_helper.rb",
|
|
39
|
+
"spec/yieldmanager_spec.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
+
s.specification_version = 3
|
|
45
|
+
|
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
47
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
48
|
+
else
|
|
49
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
50
|
+
end
|
|
51
|
+
else
|
|
52
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
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.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bill Gathen
|
|
@@ -42,6 +42,7 @@ files:
|
|
|
42
42
|
- spec/spec.opts
|
|
43
43
|
- spec/spec_helper.rb
|
|
44
44
|
- spec/yieldmanager_spec.rb
|
|
45
|
+
- yieldmanager.gemspec
|
|
45
46
|
has_rdoc: true
|
|
46
47
|
homepage: http://github.com/billgathen/yieldmanager
|
|
47
48
|
licenses: []
|