-
Notifications
You must be signed in to change notification settings - Fork 12
/
do_snapshot.gemspec
28 lines (24 loc) · 1.25 KB
/
do_snapshot.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'do_snapshot/version'
Gem::Specification.new do |spec|
spec.name = 'do_snapshot'
spec.version = DoSnapshot::VERSION
spec.authors = ['Alexander Merkulov']
spec.email = ['sasha@merqlove.ru']
spec.summary = 'A command-line snapshot maker for your DigitalOcean droplets. Fully Automated. Multi-threaded.'
spec.description = 'Snapshot creator for Digital Ocean droplets. Multi-threading inside. Auto-cleanup feature. No matter how much droplets you have. Cron optimized.'
spec.homepage = 'http://dosnapshot.merqlove.ru/'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").select { |d| d =~ %r{^(License|README|bin/|data/|ext/|lib/|spec/|test/)} }
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.required_ruby_version = '>= 2.0.0'
spec.add_dependency 'droplet_kit', '~> 2.2.0'
spec.add_dependency 'activesupport', '< 5'
spec.add_dependency 'thor', '>= 0.19.1'
spec.add_dependency 'hashie', '~> 3.5.6'
spec.add_dependency 'pony', '~> 1.1'
end