resourceful 0.3.0 → 0.3.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/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('resourceful', '0.3.0') do |p|
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,5 +1,6 @@
1
1
  require 'resourceful/header'
2
2
  require 'andand'
3
+ require 'facets/kernel/returning'
3
4
 
4
5
  module Resourceful
5
6
 
@@ -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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{resourceful}
5
- s.version = "0.3.0"
5
+ s.version = "0.3.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Paul Sadauskas"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resourceful
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Sadauskas