forked from minicomp/wax_tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwax_tasks.gemspec
33 lines (26 loc) · 1.16 KB
/
wax_tasks.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
29
30
31
32
33
# frozen_string_literal: true
require_relative 'lib/wax_tasks/version'
Gem::Specification.new do |spec|
spec.name = 'wax_tasks'
spec.version = WaxTasks::VERSION
spec.authors = ['Marii Nyrop']
spec.email = ['[email protected]']
spec.license = 'MIT'
spec.homepage = 'https://github.com/minicomp/wax_tasks'
spec.summary = 'Rake tasks for minimal exhibition sites with Minicomp/Wax.'
spec.description = 'Rake tasks for minimal exhibition sites with Minicomp/Wax.'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.test_files = Dir['spec/*']
spec.required_ruby_version = '>= 2.4'
spec.metadata['yard.run'] = 'yri'
spec.requirements << 'imagemagick'
spec.requirements << 'ghostscript'
spec.add_runtime_dependency 'progress_bar', '~> 1.3'
spec.add_runtime_dependency 'rainbow', '~> 3.0'
spec.add_runtime_dependency 'rake', '~> 13.0'
spec.add_runtime_dependency 'safe_yaml', '~> 1.0'
spec.add_runtime_dependency 'wax_iiif', '~> 0.2'
spec.add_development_dependency 'rspec', '~> 3'
end