-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathmiro.gemspec
28 lines (23 loc) · 1005 Bytes
/
miro.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/miro/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Jon Buda"]
gem.email = ["[email protected]"]
gem.description = %q{Extract the dominant colors from an image.}
gem.summary = %q{Extract the dominant colors from an image.}
gem.homepage = "https://github.com/jonbuda/miro"
gem.requirements = 'ImageMagick'
gem.add_dependency "terrapin"
gem.add_dependency "color"
gem.add_dependency "chunky_png"
gem.add_dependency "oily_png" if RUBY_ENGINE != "jruby"
gem.add_development_dependency "rspec"
gem.add_development_dependency "fakeweb"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "miro"
gem.require_paths = ["lib"]
gem.version = Miro::VERSION
gem.license = "MIT"
end