Skip to content

Commit

Permalink
Remove 'rails' gem dependency to avoid needing extra Rails libs (espe…
Browse files Browse the repository at this point in the history
…cially ActiveRecord)
  • Loading branch information
Blake Gentry authored and indirect committed Oct 2, 2010
1 parent b43e571 commit f979405
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions haml-rails.gemspec
Expand Up @@ -14,9 +14,12 @@ Gem::Specification.new do |s|
s.rubyforge_project = "haml-rails"
s.required_rubygems_version = ">= 1.3.6"

s.add_dependency "rails", "~> 3.0.0"
s.add_dependency "haml", "~> 3.0.18"
s.add_dependency "haml", "~> 3.0.18"
s.add_dependency "activesupport", "~> 3.0.0"
s.add_dependency "actionpack", "~> 3.0.0"
s.add_dependency "railties", "~> 3.0.0"

s.add_development_dependency "rails", "~> 3.0.0"
s.add_development_dependency "bundler", "~> 1.0.0"

s.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit f979405

Please sign in to comment.