diff --git a/facebooker.gemspec b/facebooker.gemspec index bff95abc..b524c96a 100644 --- a/facebooker.gemspec +++ b/facebooker.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{facebooker} - s.version = "1.0.38" + s.version = "1.0.39" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Chad Fowler", "Patrick Ewing", "Mike Mangino", "Shane Vitarana", "Corey Innis"] - s.date = %q{2009-06-23} + s.date = %q{2009-07-01} s.description = %q{Facebooker is a Ruby wrapper over the Facebook[http://facebook.com] {REST API}[http://wiki.developers.facebook.com/index.php/API]. Its goals are: * Idiomatic Ruby * No dependencies outside of the Ruby standard library (This is true with Rails 2.1. Previous Rails versions require the JSON gem) * Concrete classes and methods modeling the Facebook data, so it's easy for a Rubyist to understand what's available * Well tested} s.email = %q{mmangino@elevatedrails.com} s.extra_rdoc_files = ["Manifest.txt", "CHANGELOG.rdoc", "COPYING.rdoc", "README.rdoc", "TODO.rdoc"] diff --git a/lib/facebooker/version.rb b/lib/facebooker/version.rb index de05cede..08151e16 100644 --- a/lib/facebooker/version.rb +++ b/lib/facebooker/version.rb @@ -2,7 +2,7 @@ module Facebooker #:nodoc: module VERSION #:nodoc: MAJOR = 1 MINOR = 0 - TINY = 38 + TINY = 39 STRING = [MAJOR, MINOR, TINY].join('.') end