Skip to content

Commit

Permalink
Bump warden to 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Apr 1, 2010
1 parent f5d01c2 commit d8b6ba9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "http://gemcutter.org"

# Need to install Rails from source
gem "rails", "3.0.0.beta1"#:git => "git://github.com/rails/rails.git"
gem "warden", "0.10.2"
gem "warden", "0.10.3"
gem "sqlite3-ruby", :require => "sqlite3"
gem "webrat", "0.7"
gem "mocha", :require => false
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ begin
s.authors = ['José Valim', 'Carlos Antônio']
s.files = FileList["[A-Z]*", "{app,config,lib}/**/*"]
s.extra_rdoc_files = FileList["[A-Z]*"] - %w(Gemfile Rakefile)
s.add_dependency("warden", "~> 0.10.2")
s.add_dependency("warden", "~> 0.10.3")
end

Jeweler::GemcutterTasks.new
Expand Down
10 changes: 6 additions & 4 deletions devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

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-03-30}
s.date = %q{2010-04-01}
s.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -157,6 +157,8 @@ Gem::Specification.new do |s|
"test/rails_app/config/initializers/devise.rb",
"test/rails_app/config/initializers/inflections.rb",
"test/rails_app/config/routes.rb",
"test/rails_app/db/migrate/20100401102949_create_tables.rb",
"test/rails_app/db/schema.rb",
"test/routes_test.rb",
"test/support/assertions.rb",
"test/support/helpers.rb",
Expand All @@ -172,12 +174,12 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<warden>, ["~> 0.10.2"])
s.add_runtime_dependency(%q<warden>, ["~> 0.10.3"])
else
s.add_dependency(%q<warden>, ["~> 0.10.2"])
s.add_dependency(%q<warden>, ["~> 0.10.3"])
end
else
s.add_dependency(%q<warden>, ["~> 0.10.2"])
s.add_dependency(%q<warden>, ["~> 0.10.3"])
end
end

0 comments on commit d8b6ba9

Please sign in to comment.