Skip to content

Commit

Permalink
Regenerate gemspec to force latest warden version.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Sep 25, 2010
1 parent 531f221 commit 1dfcbe3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
23 changes: 9 additions & 14 deletions devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,22 @@

Gem::Specification.new do |s|
s.name = %q{devise}
s.version = "1.2.0"
s.version = "1.2.rc"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
s.date = %q{2010-07-27}
s.date = %q{2010-09-25}
s.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"CHANGELOG.rdoc",
"Gemfile.lock",
"MIT-LICENSE",
"README.rdoc",
"TODO"
"README.rdoc"
]
s.files = [
"CHANGELOG.rdoc",
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"TODO",
"app/controllers/devise/confirmations_controller.rb",
"app/controllers/devise/oauth_callbacks_controller.rb",
"app/controllers/devise/passwords_controller.rb",
Expand Down Expand Up @@ -54,7 +48,6 @@ Gem::Specification.new do |s|
"lib/devise/controllers/url_helpers.rb",
"lib/devise/encryptors/authlogic_sha512.rb",
"lib/devise/encryptors/base.rb",
"lib/devise/encryptors/bcrypt.rb",
"lib/devise/encryptors/clearance_sha1.rb",
"lib/devise/encryptors/restful_authentication_sha1.rb",
"lib/devise/encryptors/sha1.rb",
Expand All @@ -70,6 +63,7 @@ Gem::Specification.new do |s|
"lib/devise/models/authenticatable.rb",
"lib/devise/models/confirmable.rb",
"lib/devise/models/database_authenticatable.rb",
"lib/devise/models/encryptable.rb",
"lib/devise/models/lockable.rb",
"lib/devise/models/oauthable.rb",
"lib/devise/models/recoverable.rb",
Expand Down Expand Up @@ -140,6 +134,7 @@ Gem::Specification.new do |s|
"test/mapping_test.rb",
"test/models/confirmable_test.rb",
"test/models/database_authenticatable_test.rb",
"test/models/encryptable_test.rb",
"test/models/lockable_test.rb",
"test/models/oauthable_test.rb",
"test/models/recoverable_test.rb",
Expand Down Expand Up @@ -196,14 +191,14 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<warden>, ["~> 0.10.7"])
s.add_runtime_dependency(%q<warden>, ["~> 1.0.0"])
s.add_runtime_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
else
s.add_dependency(%q<warden>, ["~> 0.10.7"])
s.add_dependency(%q<warden>, ["~> 1.0.0"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
end
else
s.add_dependency(%q<warden>, ["~> 0.10.7"])
s.add_dependency(%q<warden>, ["~> 1.0.0"])
s.add_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/devise/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Devise
VERSION = "1.2.0".freeze
VERSION = "1.2.rc".freeze
end

0 comments on commit 1dfcbe3

Please sign in to comment.