resourceful 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/resourceful/cache_manager.rb +1 -0
- data/lib/resourceful/http_accessor.rb +1 -1
- data/resourceful.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('resourceful', '0.3.
|
5
|
+
Echoe.new('resourceful', '0.3.1') do |p|
|
6
6
|
p.description = "An HTTP library for Ruby that takes advantage of everything HTTP has to offer."
|
7
7
|
p.url = "http://github.com/paul/resourceful"
|
8
8
|
p.author = "Paul Sadauskas"
|
@@ -1,6 +1,5 @@
|
|
1
1
|
require 'net/http'
|
2
2
|
|
3
|
-
require 'resourceful/version'
|
4
3
|
require 'resourceful/options_interpreter'
|
5
4
|
require 'resourceful/authentication_manager'
|
6
5
|
require 'resourceful/cache_manager'
|
@@ -29,6 +28,7 @@ module Resourceful
|
|
29
28
|
# provided by the Resourceful library. Conceptually this object
|
30
29
|
# acts a collection of all the resources available via HTTP.
|
31
30
|
class HttpAccessor
|
31
|
+
RESOURCEFUL_VERSION = "0.3.1"
|
32
32
|
RESOURCEFUL_USER_AGENT_TOKEN = "Resourceful/#{RESOURCEFUL_VERSION}(Ruby/#{RUBY_VERSION})"
|
33
33
|
|
34
34
|
# A logger object to which messages about the activities of this
|
data/resourceful.gemspec
CHANGED