File: Rakefile

package info (click to toggle)
gem2deb 2.2.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,228 kB
  • sloc: ruby: 5,562; sh: 140; perl: 46; ansic: 33; makefile: 31
file content (8 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
require 'rubygems/package_task'

spec = Gem::Specification.load("simpledocs.gemspec")

Gem::PackageTask.new(spec) do |pkg|
  pkg.need_zip = true
  pkg.need_tar = true
end