yieldmanager 0.8.6 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/API_VERSION +1 -1
  2. data/AVAILABLE_SERVICES +18 -0
  3. data/HOW_TO_UPDATE_API_VERSION +10 -0
  4. data/README.md +26 -2
  5. data/Rakefile +14 -4
  6. data/VERSION +1 -1
  7. data/lib/yieldmanager/client.rb +14 -7
  8. data/lib/yieldmanager.rb +0 -2
  9. data/spec/yieldmanager/client_spec.rb +1 -1
  10. data/yieldmanager.gemspec +36 -80
  11. metadata +58 -96
  12. data/.gitignore +0 -21
  13. data/lib/yieldmanager/builder.rb +0 -79
  14. data/spec/yieldmanager/builder_spec.rb +0 -82
  15. data/wsdls/1.33/prod/adjustment.wsdl +0 -2
  16. data/wsdls/1.33/prod/campaign.wsdl +0 -2
  17. data/wsdls/1.33/prod/contact.wsdl +0 -2
  18. data/wsdls/1.33/prod/creative.wsdl +0 -2
  19. data/wsdls/1.33/prod/dictionary.wsdl +0 -2
  20. data/wsdls/1.33/prod/entity.wsdl +0 -2
  21. data/wsdls/1.33/prod/insertion_order.wsdl +0 -2
  22. data/wsdls/1.33/prod/line_item.wsdl +0 -2
  23. data/wsdls/1.33/prod/linking.wsdl +0 -2
  24. data/wsdls/1.33/prod/notification.wsdl +0 -2
  25. data/wsdls/1.33/prod/pixel.wsdl +0 -2
  26. data/wsdls/1.33/prod/placement.wsdl +0 -2
  27. data/wsdls/1.33/prod/quota.wsdl +0 -2
  28. data/wsdls/1.33/prod/report.wsdl +0 -2
  29. data/wsdls/1.33/prod/search.wsdl +0 -2
  30. data/wsdls/1.33/prod/section.wsdl +0 -2
  31. data/wsdls/1.33/prod/site.wsdl +0 -2
  32. data/wsdls/1.33/prod/target_profile.wsdl +0 -2
  33. data/wsdls/1.33/prod/xsd_gen.php +0 -38
  34. data/wsdls/1.33/test/adjustment.wsdl +0 -2
  35. data/wsdls/1.33/test/campaign.wsdl +0 -2
  36. data/wsdls/1.33/test/contact.wsdl +0 -2
  37. data/wsdls/1.33/test/creative.wsdl +0 -2
  38. data/wsdls/1.33/test/dictionary.wsdl +0 -2
  39. data/wsdls/1.33/test/entity.wsdl +0 -2
  40. data/wsdls/1.33/test/insertion_order.wsdl +0 -2
  41. data/wsdls/1.33/test/line_item.wsdl +0 -2
  42. data/wsdls/1.33/test/linking.wsdl +0 -2
  43. data/wsdls/1.33/test/notification.wsdl +0 -2
  44. data/wsdls/1.33/test/pixel.wsdl +0 -2
  45. data/wsdls/1.33/test/placement.wsdl +0 -2
  46. data/wsdls/1.33/test/quota.wsdl +0 -2
  47. data/wsdls/1.33/test/report.wsdl +0 -2
  48. data/wsdls/1.33/test/search.wsdl +0 -2
  49. data/wsdls/1.33/test/section.wsdl +0 -2
  50. data/wsdls/1.33/test/site.wsdl +0 -2
  51. data/wsdls/1.33/test/target_profile.wsdl +0 -2
  52. data/wsdls/1.33/test/xsd_gen.php +0 -38
data/API_VERSION CHANGED
@@ -1 +1 @@
1
- 1.33
1
+ 1.34
@@ -0,0 +1,18 @@
1
+ AdjustmentService
2
+ CampaignService
3
+ ContactService
4
+ CreativeService
5
+ DictionaryService
6
+ EntityService
7
+ InsertionOrderService
8
+ LineItemService
9
+ LinkingService
10
+ NotificationService
11
+ PixelService
12
+ QuotaService
13
+ ReportService
14
+ SearchService
15
+ SectionService
16
+ SegmentDefinitionService
17
+ SiteService
18
+ TargetProfileService
@@ -0,0 +1,10 @@
1
+ As of the 0.9 release, the "build" step is no longer needed. Technically, it never was, but I didn't realize that until now. :-P
2
+
3
+ When RightMedia updates their release (say, from 1.33 to 1.34), do this:
4
+ - Edit the API_VERSION file to match the new release
5
+ - Visit the main API doc page (https://api.yieldmanager.com/doc/) and make sure the AVAILABLE_SERVICES file exactly matches the services listed in the sidebar.
6
+ - Run all the specs using 'rake' to ensure nothing broke
7
+ - Bump the version 'rake version:bump:patch' unless you've made other awesome changes, in which case use 'rake version:bump:minor'
8
+ - 'rake release' to cut a version, push to github and push to rubygems.org
9
+
10
+ And you're done!
data/README.md CHANGED
@@ -7,7 +7,7 @@ Currently it generates a fresh wsdl from the api.yieldmanager.com site the
7
7
  first time you use a service (in the future it will use locally-cached
8
8
  copies) and re-uses that wsdl for the life of the Yieldmanager::Client object.
9
9
 
10
- This version implements API version 1.33.
10
+ The current API version is stored in the API_VERSION file.
11
11
 
12
12
  ### Installation
13
13
 
@@ -138,6 +138,30 @@ create your own reports.
138
138
  rpt.data.first.by_name("first").should == 1
139
139
  rpt.data.first.by_name("second").should == 2
140
140
 
141
+ ### Wiredumps (SOAP logging)
142
+
143
+ To see the nitty-gritty of what's going over the wire (Yahoo tech support often asks for this),
144
+ you can activate a "wiredump" on a per-service basis. Typically you just echo it to standard out.
145
+ For instance:
146
+
147
+ client.entity.wiredump_dev = $stdout # on
148
+ adv = client.entity.get(token,12345)
149
+ client.entity.wiredump_dev = nil # off
150
+
151
+ For Rails in a passenger environment, standard out doesn't end up in the logfiles.
152
+ Instead, redirect to a file:
153
+
154
+ wiredump = File.new("#{Rails.root}/log/wiredump_entity_#{Time.new.strftime('%H%M%S')}.log",'w')
155
+ client.entity.wiredump_dev = wiredump # on
156
+
157
+ adv = client.entity.get(token,12345)
158
+
159
+ wiredump.flush # make sure everything gets in there before it closes
160
+ client.entity.wiredump_dev = nil # off
161
+
162
+ The last 2 lines belong in an ensure block, so the file is created even
163
+ when there's an error (which is probably why you're doing this).
164
+
141
165
  ### session vs. start_session/end_session
142
166
 
143
167
  The **session** method opens a session, gives you a token to use in your service
@@ -171,4 +195,4 @@ and [Tomor Doron's blog post](http://tomerdoron.blogspot.com/2009/10/fixing-soap
171
195
 
172
196
  ## Copyright
173
197
 
174
- Copyright (c) 2009-2011 Bill Gathen. See LICENSE for details.
198
+ Copyright (c) 2009-2012 Bill Gathen. See LICENSE for details.
data/Rakefile CHANGED
@@ -11,6 +11,7 @@ begin
11
11
  gem.homepage = "http://github.com/billgathen/yieldmanager"
12
12
  gem.authors = ["Bill Gathen"]
13
13
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
+ gem.add_development_dependency "rdoc"
14
15
  gem.add_dependency "hpricot", "= 0.8.2"
15
16
  gem.add_dependency "soap4r", "= 1.5.8"
16
17
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
@@ -56,8 +57,8 @@ task :spec => :check_dependencies
56
57
 
57
58
  task :default => :spec
58
59
 
59
- require 'rake/rdoctask'
60
- Rake::RDocTask.new do |rdoc|
60
+ require 'rdoc/task'
61
+ RDoc::Task.new do |rdoc|
61
62
  version = File.exist?('VERSION') ? File.read('VERSION') : ""
62
63
 
63
64
  rdoc.rdoc_dir = 'rdoc'
@@ -69,13 +70,22 @@ end
69
70
  namespace :yieldmanager do
70
71
  desc "Build wsdls for API version in API_VERSION file"
71
72
  task :build_wsdls do
72
- require 'lib/yieldmanager/builder'
73
+ require './lib/yieldmanager/builder'
73
74
  Yieldmanager::Builder.build_wsdls_for(api_version)
74
75
  end
75
76
 
76
77
  desc "Delete wsdls for API version in API_VERSION file"
77
78
  task :delete_wsdls do
78
- require 'lib/yieldmanager/builder'
79
+ require './lib/yieldmanager/builder'
79
80
  Yieldmanager::Builder.delete_wsdls_for(api_version)
80
81
  end
81
82
  end
83
+
84
+ def api_version
85
+ version_file = "API_VERSION"
86
+ path = File.join(File.dirname(__FILE__), version_file)
87
+ unless File.exists?(path)
88
+ fail "Put the API version in a file called #{version_file}"
89
+ end
90
+ File.open(path){ |f| f.readline.chomp }
91
+ end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.6
1
+ 0.9.0
@@ -111,13 +111,20 @@ module Yieldmanager
111
111
  end
112
112
 
113
113
  def available_services
114
- Dir.entries(@wsdl_dir).map do |wsdl|
115
- if wsdl.match(/wsdl/)
116
- wsdl.sub(/\.wsdl/,'')
117
- else
118
- nil
119
- end
120
- end.compact
114
+ available_services = []
115
+ available_services_file = "AVAILABLE_SERVICES"
116
+ path = File.join(File.dirname(__FILE__), '..', '..', available_services_file)
117
+ unless File.exists?(path)
118
+ fail "Put available services in a file called #{available_services_file}"
119
+ end
120
+ IO.readlines(path).each do |line|
121
+ available_services << camel_to_under(line.chomp.sub(/Service$/,''))
122
+ end
123
+ available_services
124
+ end
125
+
126
+ def camel_to_under s
127
+ s.gsub(/(.)([A-Z])/,'\1_\2').downcase
121
128
  end
122
129
 
123
130
  # Manages Yieldmanager session
data/lib/yieldmanager.rb CHANGED
@@ -4,7 +4,6 @@ $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir)
4
4
  #
5
5
  # * Yieldmanager::Client is the class used to interact with Yieldmanager.
6
6
  # * Yieldmanager::Report is the data object returned by ReportWare calls.
7
- # * Yieldmanager::Builder creates local copies of the YM service wsdls.
8
7
  #
9
8
  module Yieldmanager
10
9
  end
@@ -26,5 +25,4 @@ if needs_patching?(:ruby_version => RUBY_VERSION, :minimum_ruby_version_for_patc
26
25
  require 'wsdl/patch'
27
26
  end
28
27
 
29
- require 'yieldmanager/builder'
30
28
  require 'yieldmanager/report'
@@ -9,7 +9,7 @@ EOM
9
9
 
10
10
  describe "api version" do
11
11
  it "pulls api version from file" do
12
- Yieldmanager::Client.api_version.should == "1.33"
12
+ Yieldmanager::Client.api_version.should match /\d\.\d{2}/
13
13
  end
14
14
  end
15
15
 
data/yieldmanager.gemspec CHANGED
@@ -1,116 +1,72 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{yieldmanager}
8
- s.version = "0.8.6"
8
+ s.version = "0.9.0"
9
9
 
10
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{2011-08-03}
11
+ s.authors = [%q{Bill Gathen}]
12
+ s.date = %q{2012-01-24}
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 = [
16
16
  "LICENSE",
17
- "README.md",
18
- "TODO"
17
+ "README.md",
18
+ "TODO"
19
19
  ]
20
20
  s.files = [
21
21
  ".document",
22
- ".gitignore",
23
- ".rspec",
24
- "API_VERSION",
25
- "LICENSE",
26
- "README.md",
27
- "Rakefile",
28
- "TODO",
29
- "VERSION",
30
- "lib/patch_detector.rb",
31
- "lib/soap4r_19_patch/soap/generator.rb",
32
- "lib/soap4r_19_patch/soap/property.rb",
33
- "lib/soap4r_19_patch/xsd/charset.rb",
34
- "lib/soap4r_19_patch/xsd/xmlparser.rb",
35
- "lib/wsdl/patch.rb",
36
- "lib/yieldmanager.rb",
37
- "lib/yieldmanager/builder.rb",
38
- "lib/yieldmanager/client.rb",
39
- "lib/yieldmanager/report.rb",
40
- "spec/patch_detector_spec.rb",
41
- "spec/reports/sample_report.xml",
42
- "spec/spec.opts",
43
- "spec/spec_helper.rb",
44
- "spec/yieldmanager/builder_spec.rb",
45
- "spec/yieldmanager/client_spec.rb",
46
- "spec/yieldmanager/report_spec.rb",
47
- "wsdls/1.33/prod/adjustment.wsdl",
48
- "wsdls/1.33/prod/campaign.wsdl",
49
- "wsdls/1.33/prod/contact.wsdl",
50
- "wsdls/1.33/prod/creative.wsdl",
51
- "wsdls/1.33/prod/dictionary.wsdl",
52
- "wsdls/1.33/prod/entity.wsdl",
53
- "wsdls/1.33/prod/insertion_order.wsdl",
54
- "wsdls/1.33/prod/line_item.wsdl",
55
- "wsdls/1.33/prod/linking.wsdl",
56
- "wsdls/1.33/prod/notification.wsdl",
57
- "wsdls/1.33/prod/pixel.wsdl",
58
- "wsdls/1.33/prod/placement.wsdl",
59
- "wsdls/1.33/prod/quota.wsdl",
60
- "wsdls/1.33/prod/report.wsdl",
61
- "wsdls/1.33/prod/search.wsdl",
62
- "wsdls/1.33/prod/section.wsdl",
63
- "wsdls/1.33/prod/site.wsdl",
64
- "wsdls/1.33/prod/target_profile.wsdl",
65
- "wsdls/1.33/prod/xsd_gen.php",
66
- "wsdls/1.33/test/adjustment.wsdl",
67
- "wsdls/1.33/test/campaign.wsdl",
68
- "wsdls/1.33/test/contact.wsdl",
69
- "wsdls/1.33/test/creative.wsdl",
70
- "wsdls/1.33/test/dictionary.wsdl",
71
- "wsdls/1.33/test/entity.wsdl",
72
- "wsdls/1.33/test/insertion_order.wsdl",
73
- "wsdls/1.33/test/line_item.wsdl",
74
- "wsdls/1.33/test/linking.wsdl",
75
- "wsdls/1.33/test/notification.wsdl",
76
- "wsdls/1.33/test/pixel.wsdl",
77
- "wsdls/1.33/test/placement.wsdl",
78
- "wsdls/1.33/test/quota.wsdl",
79
- "wsdls/1.33/test/report.wsdl",
80
- "wsdls/1.33/test/search.wsdl",
81
- "wsdls/1.33/test/section.wsdl",
82
- "wsdls/1.33/test/site.wsdl",
83
- "wsdls/1.33/test/target_profile.wsdl",
84
- "wsdls/1.33/test/xsd_gen.php",
85
- "yieldmanager.gemspec"
22
+ ".rspec",
23
+ "API_VERSION",
24
+ "AVAILABLE_SERVICES",
25
+ "HOW_TO_UPDATE_API_VERSION",
26
+ "LICENSE",
27
+ "README.md",
28
+ "Rakefile",
29
+ "TODO",
30
+ "VERSION",
31
+ "lib/patch_detector.rb",
32
+ "lib/soap4r_19_patch/soap/generator.rb",
33
+ "lib/soap4r_19_patch/soap/property.rb",
34
+ "lib/soap4r_19_patch/xsd/charset.rb",
35
+ "lib/soap4r_19_patch/xsd/xmlparser.rb",
36
+ "lib/wsdl/patch.rb",
37
+ "lib/yieldmanager.rb",
38
+ "lib/yieldmanager/client.rb",
39
+ "lib/yieldmanager/report.rb",
40
+ "spec/patch_detector_spec.rb",
41
+ "spec/reports/sample_report.xml",
42
+ "spec/spec.opts",
43
+ "spec/spec_helper.rb",
44
+ "spec/yieldmanager/client_spec.rb",
45
+ "spec/yieldmanager/report_spec.rb",
46
+ "yieldmanager.gemspec"
86
47
  ]
87
48
  s.homepage = %q{http://github.com/billgathen/yieldmanager}
88
- s.rdoc_options = ["--charset=UTF-8"]
89
- s.require_paths = ["lib"]
90
- s.rubygems_version = %q{1.7.2}
49
+ s.require_paths = [%q{lib}]
50
+ s.rubygems_version = %q{1.8.6}
91
51
  s.summary = %q{Interact with RightMedia's YieldManager API and Reportware products}
92
- s.test_files = [
93
- "spec/patch_detector_spec.rb",
94
- "spec/spec_helper.rb",
95
- "spec/yieldmanager/builder_spec.rb",
96
- "spec/yieldmanager/client_spec.rb",
97
- "spec/yieldmanager/report_spec.rb"
98
- ]
99
52
 
100
53
  if s.respond_to? :specification_version then
101
54
  s.specification_version = 3
102
55
 
103
56
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
104
57
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
58
+ s.add_development_dependency(%q<rdoc>, [">= 0"])
105
59
  s.add_runtime_dependency(%q<hpricot>, ["= 0.8.2"])
106
60
  s.add_runtime_dependency(%q<soap4r>, ["= 1.5.8"])
107
61
  else
108
62
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
63
+ s.add_dependency(%q<rdoc>, [">= 0"])
109
64
  s.add_dependency(%q<hpricot>, ["= 0.8.2"])
110
65
  s.add_dependency(%q<soap4r>, ["= 1.5.8"])
111
66
  end
112
67
  else
113
68
  s.add_dependency(%q<rspec>, [">= 1.2.9"])
69
+ s.add_dependency(%q<rdoc>, [">= 0"])
114
70
  s.add_dependency(%q<hpricot>, ["= 0.8.2"])
115
71
  s.add_dependency(%q<soap4r>, ["= 1.5.8"])
116
72
  end
metadata CHANGED
@@ -1,65 +1,75 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: yieldmanager
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.0
4
5
  prerelease:
5
- version: 0.8.6
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Bill Gathen
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-08-03 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
12
+ date: 2012-01-24 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
16
15
  name: rspec
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &2153058260 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
23
21
  version: 1.2.9
24
22
  type: :development
25
- version_requirements: *id001
26
- - !ruby/object:Gem::Dependency
27
- name: hpricot
28
23
  prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *2153058260
25
+ - !ruby/object:Gem::Dependency
26
+ name: rdoc
27
+ requirement: &2153057440 !ruby/object:Gem::Requirement
30
28
  none: false
31
- requirements:
32
- - - "="
33
- - !ruby/object:Gem::Version
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *2153057440
36
+ - !ruby/object:Gem::Dependency
37
+ name: hpricot
38
+ requirement: &2153056600 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - =
42
+ - !ruby/object:Gem::Version
34
43
  version: 0.8.2
35
44
  type: :runtime
36
- version_requirements: *id002
37
- - !ruby/object:Gem::Dependency
38
- name: soap4r
39
45
  prerelease: false
40
- requirement: &id003 !ruby/object:Gem::Requirement
46
+ version_requirements: *2153056600
47
+ - !ruby/object:Gem::Dependency
48
+ name: soap4r
49
+ requirement: &2153055860 !ruby/object:Gem::Requirement
41
50
  none: false
42
- requirements:
43
- - - "="
44
- - !ruby/object:Gem::Version
51
+ requirements:
52
+ - - =
53
+ - !ruby/object:Gem::Version
45
54
  version: 1.5.8
46
55
  type: :runtime
47
- version_requirements: *id003
48
- description: This gem offers full access to YieldManager's API tools (read/write) as well as ad-hoc reporting through the Reportware tool
56
+ prerelease: false
57
+ version_requirements: *2153055860
58
+ description: This gem offers full access to YieldManager's API tools (read/write)
59
+ as well as ad-hoc reporting through the Reportware tool
49
60
  email: bill@billgathen.com
50
61
  executables: []
51
-
52
62
  extensions: []
53
-
54
- extra_rdoc_files:
63
+ extra_rdoc_files:
55
64
  - LICENSE
56
65
  - README.md
57
66
  - TODO
58
- files:
67
+ files:
59
68
  - .document
60
- - .gitignore
61
69
  - .rspec
62
70
  - API_VERSION
71
+ - AVAILABLE_SERVICES
72
+ - HOW_TO_UPDATE_API_VERSION
63
73
  - LICENSE
64
74
  - README.md
65
75
  - Rakefile
@@ -72,85 +82,37 @@ files:
72
82
  - lib/soap4r_19_patch/xsd/xmlparser.rb
73
83
  - lib/wsdl/patch.rb
74
84
  - lib/yieldmanager.rb
75
- - lib/yieldmanager/builder.rb
76
85
  - lib/yieldmanager/client.rb
77
86
  - lib/yieldmanager/report.rb
78
87
  - spec/patch_detector_spec.rb
79
88
  - spec/reports/sample_report.xml
80
89
  - spec/spec.opts
81
90
  - spec/spec_helper.rb
82
- - spec/yieldmanager/builder_spec.rb
83
91
  - spec/yieldmanager/client_spec.rb
84
92
  - spec/yieldmanager/report_spec.rb
85
- - wsdls/1.33/prod/adjustment.wsdl
86
- - wsdls/1.33/prod/campaign.wsdl
87
- - wsdls/1.33/prod/contact.wsdl
88
- - wsdls/1.33/prod/creative.wsdl
89
- - wsdls/1.33/prod/dictionary.wsdl
90
- - wsdls/1.33/prod/entity.wsdl
91
- - wsdls/1.33/prod/insertion_order.wsdl
92
- - wsdls/1.33/prod/line_item.wsdl
93
- - wsdls/1.33/prod/linking.wsdl
94
- - wsdls/1.33/prod/notification.wsdl
95
- - wsdls/1.33/prod/pixel.wsdl
96
- - wsdls/1.33/prod/placement.wsdl
97
- - wsdls/1.33/prod/quota.wsdl
98
- - wsdls/1.33/prod/report.wsdl
99
- - wsdls/1.33/prod/search.wsdl
100
- - wsdls/1.33/prod/section.wsdl
101
- - wsdls/1.33/prod/site.wsdl
102
- - wsdls/1.33/prod/target_profile.wsdl
103
- - wsdls/1.33/prod/xsd_gen.php
104
- - wsdls/1.33/test/adjustment.wsdl
105
- - wsdls/1.33/test/campaign.wsdl
106
- - wsdls/1.33/test/contact.wsdl
107
- - wsdls/1.33/test/creative.wsdl
108
- - wsdls/1.33/test/dictionary.wsdl
109
- - wsdls/1.33/test/entity.wsdl
110
- - wsdls/1.33/test/insertion_order.wsdl
111
- - wsdls/1.33/test/line_item.wsdl
112
- - wsdls/1.33/test/linking.wsdl
113
- - wsdls/1.33/test/notification.wsdl
114
- - wsdls/1.33/test/pixel.wsdl
115
- - wsdls/1.33/test/placement.wsdl
116
- - wsdls/1.33/test/quota.wsdl
117
- - wsdls/1.33/test/report.wsdl
118
- - wsdls/1.33/test/search.wsdl
119
- - wsdls/1.33/test/section.wsdl
120
- - wsdls/1.33/test/site.wsdl
121
- - wsdls/1.33/test/target_profile.wsdl
122
- - wsdls/1.33/test/xsd_gen.php
123
93
  - yieldmanager.gemspec
124
94
  homepage: http://github.com/billgathen/yieldmanager
125
95
  licenses: []
126
-
127
96
  post_install_message:
128
- rdoc_options:
129
- - --charset=UTF-8
130
- require_paths:
97
+ rdoc_options: []
98
+ require_paths:
131
99
  - lib
132
- required_ruby_version: !ruby/object:Gem::Requirement
100
+ required_ruby_version: !ruby/object:Gem::Requirement
133
101
  none: false
134
- requirements:
135
- - - ">="
136
- - !ruby/object:Gem::Version
137
- version: "0"
138
- required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ! '>='
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
107
  none: false
140
- requirements:
141
- - - ">="
142
- - !ruby/object:Gem::Version
143
- version: "0"
108
+ requirements:
109
+ - - ! '>='
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
144
112
  requirements: []
145
-
146
113
  rubyforge_project:
147
- rubygems_version: 1.7.2
114
+ rubygems_version: 1.8.6
148
115
  signing_key:
149
116
  specification_version: 3
150
117
  summary: Interact with RightMedia's YieldManager API and Reportware products
151
- test_files:
152
- - spec/patch_detector_spec.rb
153
- - spec/spec_helper.rb
154
- - spec/yieldmanager/builder_spec.rb
155
- - spec/yieldmanager/client_spec.rb
156
- - spec/yieldmanager/report_spec.rb
118
+ test_files: []