1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Regenerate gemspec to force latest warden version.

This commit is contained in:
José Valim 2010-09-25 20:29:33 +02:00
parent 531f221be7
commit 1dfcbe3bd4
2 changed files with 10 additions and 15 deletions

View file

@ -5,28 +5,22 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{devise} 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.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.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{contact@plataformatec.com.br} s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"CHANGELOG.rdoc", "CHANGELOG.rdoc",
"Gemfile.lock",
"MIT-LICENSE", "MIT-LICENSE",
"README.rdoc", "README.rdoc"
"TODO"
] ]
s.files = [ s.files = [
"CHANGELOG.rdoc", "CHANGELOG.rdoc",
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE", "MIT-LICENSE",
"README.rdoc", "README.rdoc",
"Rakefile",
"TODO",
"app/controllers/devise/confirmations_controller.rb", "app/controllers/devise/confirmations_controller.rb",
"app/controllers/devise/oauth_callbacks_controller.rb", "app/controllers/devise/oauth_callbacks_controller.rb",
"app/controllers/devise/passwords_controller.rb", "app/controllers/devise/passwords_controller.rb",
@ -54,7 +48,6 @@ Gem::Specification.new do |s|
"lib/devise/controllers/url_helpers.rb", "lib/devise/controllers/url_helpers.rb",
"lib/devise/encryptors/authlogic_sha512.rb", "lib/devise/encryptors/authlogic_sha512.rb",
"lib/devise/encryptors/base.rb", "lib/devise/encryptors/base.rb",
"lib/devise/encryptors/bcrypt.rb",
"lib/devise/encryptors/clearance_sha1.rb", "lib/devise/encryptors/clearance_sha1.rb",
"lib/devise/encryptors/restful_authentication_sha1.rb", "lib/devise/encryptors/restful_authentication_sha1.rb",
"lib/devise/encryptors/sha1.rb", "lib/devise/encryptors/sha1.rb",
@ -70,6 +63,7 @@ Gem::Specification.new do |s|
"lib/devise/models/authenticatable.rb", "lib/devise/models/authenticatable.rb",
"lib/devise/models/confirmable.rb", "lib/devise/models/confirmable.rb",
"lib/devise/models/database_authenticatable.rb", "lib/devise/models/database_authenticatable.rb",
"lib/devise/models/encryptable.rb",
"lib/devise/models/lockable.rb", "lib/devise/models/lockable.rb",
"lib/devise/models/oauthable.rb", "lib/devise/models/oauthable.rb",
"lib/devise/models/recoverable.rb", "lib/devise/models/recoverable.rb",
@ -140,6 +134,7 @@ Gem::Specification.new do |s|
"test/mapping_test.rb", "test/mapping_test.rb",
"test/models/confirmable_test.rb", "test/models/confirmable_test.rb",
"test/models/database_authenticatable_test.rb", "test/models/database_authenticatable_test.rb",
"test/models/encryptable_test.rb",
"test/models/lockable_test.rb", "test/models/lockable_test.rb",
"test/models/oauthable_test.rb", "test/models/oauthable_test.rb",
"test/models/recoverable_test.rb", "test/models/recoverable_test.rb",
@ -196,14 +191,14 @@ Gem::Specification.new do |s|
s.specification_version = 3 s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then 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"]) s.add_runtime_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
else 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"]) s.add_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
end end
else 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"]) s.add_dependency(%q<bcrypt-ruby>, ["~> 2.1.2"])
end end
end end

View file

@ -1,3 +1,3 @@
module Devise module Devise
VERSION = "1.2.0".freeze VERSION = "1.2.rc".freeze
end end