-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcarrierwave-color.gemspec
26 lines (21 loc) · 1002 Bytes
/
carrierwave-color.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'carrierwave/color/version'
Gem::Specification.new do |spec|
spec.name = "carrierwave-color"
spec.version = CarrierWave::Color::VERSION
spec.authors = ["Sunny Ripert"]
spec.email = ["[email protected]"]
spec.summary = "Store the dominant color of an image with CarrierWave"
spec.description = "Store the dominant color of the images when you " \
"upload them to your Rails application using the " \
"CarrierWave gem."
spec.homepage = "https://github.com/sunny/carrierwave-color"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ["lib"]
spec.add_runtime_dependency "colorscore", ">= 0.0.5"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end