-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiedye.gemspec
28 lines (21 loc) · 931 Bytes
/
tiedye.gemspec
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
28
require File.expand_path("../lib/tiedye/version", __FILE__)
Gem::Specification.new do |s|
s.name = "tiedye"
s.version = TieDye::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Timothy Elliott"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/ender672/tiedye"
s.summary = "A high-level image and color library"
s.description = "tiedye provides fast image processing methods wrapped in a simple API"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "tiedye"
s.add_dependency "ruby-vips", "~> 0.1.0"
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
s.require_path = 'lib'
# If you need an executable, add it here
# s.executables = ["tiedye"]
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end