Skip to content

Commit

Permalink
Using latest versions of Authlogic and will_paginate, bumped version …
Browse files Browse the repository at this point in the history
…to 3.1.10
  • Loading branch information
russellquinn committed Aug 9, 2011
1 parent 941f7a4 commit 8a7f6c8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion PUBLIC_VERSION.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
major: 3
minor: 1
patch: 9
patch: 10
build:
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ begin
gem.email = "[email protected]"
gem.authors = ["Russell Quinn", "Spoiled Milk"]
gem.homepage = "http://github.com/spoiledmilk/casein3"
gem.add_dependency("will_paginate", ["~> 3.0.pre2"])
gem.add_dependency("authlogic", ["3.0.2"])
gem.add_dependency("will_paginate", ["3.0.0"])
gem.add_dependency("authlogic", ["3.0.3"])
end
rescue
puts "Jeweler or one of its dependencies is not installed."
Expand Down
2 changes: 1 addition & 1 deletion VERSION.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
major: 3
minor: 1
patch: 9
patch: 10
build:
22 changes: 11 additions & 11 deletions casein.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{casein}
s.version = "3.1.9"
s.version = "3.1.10"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Russell Quinn", "Spoiled Milk"]
s.date = %q{2011-05-12}
s.authors = [%q{Russell Quinn}, %q{Spoiled Milk}]
s.date = %q{2011-08-09}
s.description = %q{Casein is an open source CMS for Ruby on Rails, originally developed by Spoiled Milk.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -92,26 +92,26 @@ Gem::Specification.new do |s|
"lib/railties/tasks.rake"
]
s.homepage = %q{http://github.com/spoiledmilk/casein3}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.3}
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.6}
s.summary = %q{A lightweight Ruby on Rails CMS.}

if s.respond_to? :specification_version then
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<casein>, [">= 0"])
s.add_runtime_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
s.add_runtime_dependency(%q<authlogic>, ["= 3.0.2"])
s.add_runtime_dependency(%q<will_paginate>, ["= 3.0.0"])
s.add_runtime_dependency(%q<authlogic>, ["= 3.0.3"])
else
s.add_dependency(%q<casein>, [">= 0"])
s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
s.add_dependency(%q<authlogic>, ["= 3.0.2"])
s.add_dependency(%q<will_paginate>, ["= 3.0.0"])
s.add_dependency(%q<authlogic>, ["= 3.0.3"])
end
else
s.add_dependency(%q<casein>, [">= 0"])
s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
s.add_dependency(%q<authlogic>, ["= 3.0.2"])
s.add_dependency(%q<will_paginate>, ["= 3.0.0"])
s.add_dependency(%q<authlogic>, ["= 3.0.3"])
end
end

0 comments on commit 8a7f6c8

Please sign in to comment.