File: Rakefile

package info (click to toggle)
libimage-science-ruby 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 100 kB
  • ctags: 23
  • sloc: ruby: 411; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 285 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.plugin :seattlerb
Hoe.plugin :inline

Hoe.spec 'image_science' do
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'

  self.rubyforge_name = 'seattlerb'

  clean_globs << 'blah*png' << 'images/*_thumb.*'
end

# vim: syntax=Ruby