Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Bump Ramaze dependency to 2009.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Dec 3, 2009
1 parent 0d77fa6 commit 7b2af28
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion HISTORY
Expand Up @@ -2,7 +2,7 @@ Thoth History
================================================================================

Version 0.3.0 (?)
* Requires Ramaze 2009.06.12.
* Requires Ramaze 2009.10.
* Requires Sequel 3.1.x.
* Thoth can now be run under Phusion Passenger (mod_rack/mod_rails) or any
other server that supports Rackup specifications. This is now the preferred
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -61,7 +61,7 @@ thoth_gemspec = Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.8.6'

# Runtime dependencies.
s.add_dependency('ramaze', '= 2009.06.12')
s.add_dependency('ramaze', '= 2009.10')
s.add_dependency('builder', '~> 2.1.2')
s.add_dependency('cssmin', '~> 1.0.2')
s.add_dependency('erubis', '~> 2.6.2')
Expand Down
4 changes: 2 additions & 2 deletions bin/thoth
Expand Up @@ -30,8 +30,8 @@
require 'optparse'
require 'rubygems'

gem 'innate', '=2009.06.12'
gem 'ramaze', '=2009.06.12'
gem 'innate', '=2009.10'
gem 'ramaze', '=2009.10'

require 'ramaze'

Expand Down
4 changes: 2 additions & 2 deletions lib/thoth.rb
Expand Up @@ -33,8 +33,8 @@
require 'fileutils'
require 'rubygems'

gem 'innate', '=2009.06.12'
gem 'ramaze', '=2009.06.12'
gem 'innate', '=2009.10'
gem 'ramaze', '=2009.10'

require 'builder'
require 'cssmin'
Expand Down
2 changes: 0 additions & 2 deletions lib/thoth/controller.rb
Expand Up @@ -34,8 +34,6 @@ class Controller < Ramaze::Controller
layout :default
map_layouts '/'

trait :app => :thoth

# Displays a custom 404 error when a nonexistent action is requested.
def self.action_missing(path)
return if path == '/error_404'
Expand Down

0 comments on commit 7b2af28

Please sign in to comment.