forked from billgathen/yieldmanager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyieldmanager.gemspec
118 lines (113 loc) · 3.93 KB
/
yieldmanager.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{yieldmanager}
s.version = "0.8.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bill Gathen"]
s.date = %q{2011-08-03}
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}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.md",
"TODO"
]
s.files = [
".document",
".gitignore",
".rspec",
"API_VERSION",
"LICENSE",
"README.md",
"Rakefile",
"TODO",
"VERSION",
"lib/patch_detector.rb",
"lib/soap4r_19_patch/soap/generator.rb",
"lib/soap4r_19_patch/soap/property.rb",
"lib/soap4r_19_patch/xsd/charset.rb",
"lib/soap4r_19_patch/xsd/xmlparser.rb",
"lib/wsdl/patch.rb",
"lib/yieldmanager.rb",
"lib/yieldmanager/builder.rb",
"lib/yieldmanager/client.rb",
"lib/yieldmanager/report.rb",
"spec/patch_detector_spec.rb",
"spec/reports/sample_report.xml",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/yieldmanager/builder_spec.rb",
"spec/yieldmanager/client_spec.rb",
"spec/yieldmanager/report_spec.rb",
"wsdls/1.33/prod/adjustment.wsdl",
"wsdls/1.33/prod/campaign.wsdl",
"wsdls/1.33/prod/contact.wsdl",
"wsdls/1.33/prod/creative.wsdl",
"wsdls/1.33/prod/dictionary.wsdl",
"wsdls/1.33/prod/entity.wsdl",
"wsdls/1.33/prod/insertion_order.wsdl",
"wsdls/1.33/prod/line_item.wsdl",
"wsdls/1.33/prod/linking.wsdl",
"wsdls/1.33/prod/notification.wsdl",
"wsdls/1.33/prod/pixel.wsdl",
"wsdls/1.33/prod/placement.wsdl",
"wsdls/1.33/prod/quota.wsdl",
"wsdls/1.33/prod/report.wsdl",
"wsdls/1.33/prod/search.wsdl",
"wsdls/1.33/prod/section.wsdl",
"wsdls/1.33/prod/site.wsdl",
"wsdls/1.33/prod/target_profile.wsdl",
"wsdls/1.33/prod/xsd_gen.php",
"wsdls/1.33/test/adjustment.wsdl",
"wsdls/1.33/test/campaign.wsdl",
"wsdls/1.33/test/contact.wsdl",
"wsdls/1.33/test/creative.wsdl",
"wsdls/1.33/test/dictionary.wsdl",
"wsdls/1.33/test/entity.wsdl",
"wsdls/1.33/test/insertion_order.wsdl",
"wsdls/1.33/test/line_item.wsdl",
"wsdls/1.33/test/linking.wsdl",
"wsdls/1.33/test/notification.wsdl",
"wsdls/1.33/test/pixel.wsdl",
"wsdls/1.33/test/placement.wsdl",
"wsdls/1.33/test/quota.wsdl",
"wsdls/1.33/test/report.wsdl",
"wsdls/1.33/test/search.wsdl",
"wsdls/1.33/test/section.wsdl",
"wsdls/1.33/test/site.wsdl",
"wsdls/1.33/test/target_profile.wsdl",
"wsdls/1.33/test/xsd_gen.php",
"yieldmanager.gemspec"
]
s.homepage = %q{http://github.com/billgathen/yieldmanager}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.7.2}
s.summary = %q{Interact with RightMedia's YieldManager API and Reportware products}
s.test_files = [
"spec/patch_detector_spec.rb",
"spec/spec_helper.rb",
"spec/yieldmanager/builder_spec.rb",
"spec/yieldmanager/client_spec.rb",
"spec/yieldmanager/report_spec.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
s.add_runtime_dependency(%q<hpricot>, ["= 0.8.2"])
s.add_runtime_dependency(%q<soap4r>, ["= 1.5.8"])
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<hpricot>, ["= 0.8.2"])
s.add_dependency(%q<soap4r>, ["= 1.5.8"])
end
else
s.add_dependency(%q<rspec>, [">= 1.2.9"])
s.add_dependency(%q<hpricot>, ["= 0.8.2"])
s.add_dependency(%q<soap4r>, ["= 1.5.8"])
end
end