Skip to content

Commit

Permalink
Upgraded Rails dependency to 3.2.13 and removed the now obsolete Rout…
Browse files Browse the repository at this point in the history
…eSet monkey patch
  • Loading branch information
Ronald Wind committed Apr 23, 2013
1 parent 2989477 commit f532cce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
17 changes: 0 additions & 17 deletions lib/skyline/engine.rb
Expand Up @@ -74,20 +74,3 @@ class Engine < Rails::Engine

end
end

module ActionDispatch
module Routing
class RouteSet
def clear!
if Rails::VERSION::MAJOR != 3 || Rails::VERSION::MINOR != 2 || Rails::VERSION::TINY > 11
raise "Bugfix for version 3.2.9 - 3.2.11 only!"
end
@finalized = false
named_routes.clear
set.clear
formatter.clear
@prepend.each { |blk| eval_block(blk) }
end
end
end
end
4 changes: 2 additions & 2 deletions skylinecms.gemspec
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.add_dependency "thor"
s.add_dependency "rails", "~> 3.2.2"
s.add_dependency "rails", "~> 3.2.13"
s.add_dependency "polyglot", "0.3.3"
s.add_dependency "sprockets", "~> 2.2.1"
s.add_dependency "mime-types", "1.19"
Expand All @@ -39,7 +39,7 @@ Gem::Specification.new do |s|
s.add_dependency "guid", "0.1.1"
s.add_dependency "will_paginate", "~> 3.0.0"
s.add_dependency "seed-fu", "2.2.0"
s.add_dependency "mail", "~>2.4.1"
s.add_dependency "mail", ">= 2.4.1"
s.add_dependency "personify", "~> 1.1.0"
s.add_dependency 'omniauth', "~> 1.1.0"
s.add_dependency "bcrypt-ruby", "~> 3.0.1"
Expand Down

0 comments on commit f532cce

Please sign in to comment.