Skip to content
This repository has been archived by the owner on Aug 27, 2018. It is now read-only.

Commit

Permalink
Bump to version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seangeo committed Feb 25, 2009
1 parent 72b5df3 commit d2a638c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
4 changes: 4 additions & 0 deletions History.txt
@@ -1,3 +1,7 @@
== 1.1.0 2009-02-26

* Added support for custom request signatures and service ids. (ascarter)

== 1.0.1 2008-08-22

* Fixed nil pointer exception when with_auth called with nil creds.
Expand Down
16 changes: 8 additions & 8 deletions auth-hmac.gemspec
Expand Up @@ -2,13 +2,13 @@

Gem::Specification.new do |s|
s.name = %q{auth-hmac}
s.version = "1.0.1"
s.version = "1.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sean Geoghegan"]
s.date = %q{2009-01-27}
s.authors = ["Sean Geoghegan", "ascarter"]
s.date = %q{2009-02-26}
s.description = %q{A gem providing HMAC based authentication for HTTP}
s.email = ["seangeo@gmail.com"]
s.email = %q{seangeo@gmail.com}
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt"]
s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/auth-hmac.rb", "lib/auth-hmac/version.rb", "script/console", "script/destroy", "script/generate", "setup.rb", "spec/auth-hmac_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/rspec.rake", "tasks/website.rake"]
s.has_rdoc = true
Expand All @@ -21,7 +21,7 @@ You can also delete it if you don't want it.
}
s.rdoc_options = ["--main", "README.rdoc"]
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{auth-hmac}
s.rubygems_version = %q{1.3.1}
Expand All @@ -32,11 +32,11 @@ You can also delete it if you don't want it.
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
s.add_development_dependency(%q<hoe>, [">= 1.8.2"])
else
s.add_dependency(%q<hoe>, [">= 1.8.0"])
s.add_dependency(%q<hoe>, [">= 1.8.2"])
end
else
s.add_dependency(%q<hoe>, [">= 1.8.0"])
s.add_dependency(%q<hoe>, [">= 1.8.2"])
end
end
5 changes: 3 additions & 2 deletions config/hoe.rb
@@ -1,6 +1,6 @@
require 'auth-hmac/version'

AUTHOR = 'Sean Geoghegan' # can also be an array of Authors
AUTHOR = ['Sean Geoghegan', 'ascarter'] # can also be an array of Authors
EMAIL = "seangeo@gmail.com"
DESCRIPTION = "A gem providing HMAC based authentication for HTTP"
GEM_NAME = 'auth-hmac' # what ppl will type to install your gem
Expand Down Expand Up @@ -51,7 +51,8 @@ def extra_deps
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new(GEM_NAME, VERS) do |p|
p.developer(AUTHOR, EMAIL)
p.author = AUTHOR
p.email = EMAIL
p.description = DESCRIPTION
p.summary = DESCRIPTION
p.url = HOMEPATH
Expand Down
4 changes: 2 additions & 2 deletions lib/auth-hmac/version.rb
@@ -1,8 +1,8 @@
class AuthHMAC
module VERSION #:nodoc:
MAJOR = 1
MINOR = 0
TINY = 1
MINOR = 1
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit d2a638c

Please sign in to comment.