Skip to content

Commit

Permalink
rails 4 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
rubysolo committed Apr 3, 2013
1 parent aedf212 commit b04a7a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/routes.rb
@@ -1,5 +1,5 @@
Rails.application.routes.draw do

match "reports/:report", :to => 'dossier/reports#show', :as => :dossier_report
match "reports/:report", :to => 'dossier/reports#show', :as => :dossier_report, via: :get

end
10 changes: 5 additions & 5 deletions dossier.gemspec
Expand Up @@ -16,11 +16,11 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*"] + %w[MIT-LICENSE Rakefile README.markdown]
s.test_files = Dir["spec/**/*"] - %w[spec/dummy/config/dossier.yml]

s.add_dependency "arel", "~> 3.0"
s.add_dependency "activesupport", "~> 3.2"
s.add_dependency "actionpack", "~> 3.2"
s.add_dependency "actionmailer", "~> 3.2"
s.add_dependency "railties", "~> 3.2"
s.add_dependency "arel", ">= 3.0"
s.add_dependency "activesupport", ">= 3.2"
s.add_dependency "actionpack", ">= 3.2"
s.add_dependency "actionmailer", ">= 3.2"
s.add_dependency "railties", ">= 3.2"
s.add_dependency "haml", ">= 3.1.6"

s.add_development_dependency "activerecord", "~> 3.2.11"
Expand Down

0 comments on commit b04a7a7

Please sign in to comment.