-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathutopia-gallery.gemspec
More file actions
27 lines (22 loc) · 992 Bytes
/
utopia-gallery.gemspec
File metadata and controls
27 lines (22 loc) · 992 Bytes
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
# coding: utf-8
require_relative 'lib/utopia/gallery/version'
Gem::Specification.new do |spec|
spec.name = "utopia-gallery"
spec.version = Utopia::Gallery::VERSION
spec.authors = ["Samuel Williams"]
spec.summary = %q{A gallery tag for use with the Utopia web framework.}
spec.homepage = "https://github.com/ioquatix/utopia-gallery"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "utopia", "~> 2.0"
spec.add_dependency "trenni", "~> 3.9"
spec.add_dependency "vips-thumbnail", "~> 1.6"
spec.add_development_dependency "covered"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.5"
end