Skip to content

Commit

Permalink
Fixing dep syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
winton committed Jan 27, 2010
1 parent b0fbe33 commit a528d46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/dep.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Dep do
gem :dep, '=0.1.2'
gem(:rake, '=0.8.7') { require 'rake' }
gem :rspec '=1.3.0'
gem :rspec, '=1.3.0'

gemspec do
author 'Winton Welsh'
Expand All @@ -23,8 +23,8 @@
lib { require 'lib/gem_template/gem_template' }

rakefile do
rake { require 'rake/gempackagetask' }
rspec { require 'spec/rake/spectask' }
gem(:rake) { require 'rake/gempackagetask' }
gem(:rspec) { require 'spec/rake/spectask' }
require 'dep/tasks'
end

Expand Down

0 comments on commit a528d46

Please sign in to comment.