Skip to content

Commit

Permalink
Correct dm-* tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Sep 13, 2008
1 parent 44b5cd6 commit 340520f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions merb-gen/lib/generators/templates/application/merb/merb.thor
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ class Merb < Thor
desc 'dm_core', 'Install dm-core from rubygems' desc 'dm_core', 'Install dm-core from rubygems'
method_options "--merb-root" => :optional method_options "--merb-root" => :optional
def dm_core def dm_core
refresh_from_gems 'extlib', 'merb-core' refresh_from_gems 'extlib', 'dm-core'
end end


desc 'dm_more', 'Install dm-more from rubygems' desc 'dm_more', 'Install dm-more from rubygems'
method_options "--merb-root" => :optional method_options "--merb-root" => :optional
def dm_more def dm_more
refresh_from_gems 'extlib', 'merb-core' refresh_from_gems 'extlib', 'dm-core', 'dm-more'
end end


# Pull from RubyForge and install. # Pull from RubyForge and install.
Expand Down Expand Up @@ -289,7 +289,7 @@ class Merb < Thor
"--sources" => :optional, "--sources" => :optional,
"--install" => :boolean "--install" => :boolean
def dm_more def dm_more
refresh_from_source 'extlib', 'dm-more' refresh_from_source 'extlib', 'dm-core', 'dm-more'
end end


private private
Expand Down Expand Up @@ -819,4 +819,4 @@ class Merb < Thor


end end


end end

0 comments on commit 340520f

Please sign in to comment.