-
Notifications
You must be signed in to change notification settings - Fork 0
/
media_archiver.gemspec
29 lines (25 loc) · 1.15 KB
/
media_archiver.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'media_archiver/version'
Gem::Specification.new do |spec|
spec.name = 'media_archiver'
spec.version = MediaArchiver::VERSION
spec.authors = ['David Ramalho']
spec.email = ['[email protected]']
spec.summary = 'Utility to organize media files based on metadata'
spec.description = 'Utility that scans a given location for media files and,
based on Exif information and a set of rules copies the files over to
another location.'
spec.homepage = 'https://github.com/dramalho/media_archiver'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
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_development_dependency 'bundler', '~> 1'
spec.add_development_dependency 'byebug', '~> 9'
spec.add_development_dependency 'rake', '~> 11'
spec.add_dependency 'mini_exiftool', '~> 2.9'
spec.add_dependency 'thor', '~> 0'
end