File: Rakefile

package info (click to toggle)
ruby-image-science 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 200 kB
  • sloc: ruby: 496; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.add_include_dirs("../../RubyInline/dev/lib",
                     "../../ZenTest/dev/lib")

Hoe.plugin :seattlerb
Hoe.plugin :inline
Hoe.plugin :isolate

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

  license "MIT"

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

task :debug => :isolate do
  file = ENV["F"]
  ruby "-Ilib bin/image_science_thumb 100 #{file}"
end

# vim: syntax=Ruby