Skip to content

Commit

Permalink
Get gem to build; Added :debug task to dump gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Reagan committed Sep 10, 2008
1 parent 10582bf commit 3e61842
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pkg
/pkg
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "flickr"
s.homepage = "http://flickr.rubyforge.org/"
end

Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end

task "Dump Gemspec file"
task :debug do
puts spec.to_ruby
end

0 comments on commit 3e61842

Please sign in to comment.