ad_gear_client 0.5.0 → 0.5.1

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 CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ad_gear_client}
8
- s.version = "0.5.0"
8
+ s.version = "0.5.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Fran\303\247ois Beausoleil"]
data/examples/prelude.rb CHANGED
@@ -3,7 +3,7 @@ $:.unshift "../lib"
3
3
  $:.unshift "../vendor/#{lib}/lib" if File.directory?("../vendor/#{lib}/lib")
4
4
  end
5
5
 
6
- require "ad_gear"
6
+ require "ad_gear_client"
7
7
  require "pp"
8
8
 
9
9
  begin
@@ -83,6 +83,8 @@ module AdGear
83
83
  AdGear::Base.password = config.password
84
84
  AdGear::Base.format = config.format
85
85
 
86
+ # Force use of Digest authentication
87
+ AdGear::Base.use_basic_authentication = false
86
88
  AdGear::Base.use_digest_authentication = true
87
89
 
88
90
  # TODO: Programatically determine if we can use Nokogiri
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ad_gear_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Fran\xC3\xA7ois Beausoleil"