mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
Added ActiveSupport as an explicit dependency, closes #45.
This commit is contained in:
parent
33d7fa2b57
commit
b3004bbcc3
1 changed files with 2 additions and 3 deletions
|
@ -9,12 +9,11 @@ Gem::Specification.new do |s|
|
||||||
s.email = ["jeff@casimircreative.com"]
|
s.email = ["jeff@casimircreative.com"]
|
||||||
s.homepage = "http://github.com/jcasimir/draper"
|
s.homepage = "http://github.com/jcasimir/draper"
|
||||||
s.summary = "Decorator pattern implmentation for Rails."
|
s.summary = "Decorator pattern implmentation for Rails."
|
||||||
s.description = "Draper reimagines the role of helpers in the view layer of a Rails application, allowing an object-oriented approach rather than procedural."
|
s.description = "Draper implements a decorator or presenter pattern for Rails applications."
|
||||||
|
|
||||||
s.rubyforge_project = "draper"
|
s.rubyforge_project = "draper"
|
||||||
|
|
||||||
s.files = `git ls-files`.split("\n")
|
s.files = `git ls-files`.split("\n")
|
||||||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
|
s.add_dependency('activesupport', '>= 2.3.10')
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue