-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
27 lines (25 loc) · 870 Bytes
/
Rakefile
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
27
begin
require 'yaml'
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "acrylic"
# s.executables = "acrylic"
s.summary = "Photoshop for cool people."
# s.email = ""
s.homepage = "http://github.com/dotjerky/acrylic"
s.description = "A set of image manipulation tools built on top of Cairo"
s.authors = ["Austin Taylor", "Paul Nicholson"]
s.files = FileList["[A-Z]*", "{bin,lib,test}/**/*", "ext/**/*.{c,rb}"]
s.extensions = FileList["ext/**/extconf.rb"]
s.add_dependency('activesupport')
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
Rake::TestTask.new(:default) do |t|
t.libs << "test"
t.pattern = 'test/**/*_test.rb'
end