-
Notifications
You must be signed in to change notification settings - Fork 0
/
olympus-hestia-capistrano.gemspec
41 lines (36 loc) · 1.54 KB
/
olympus-hestia-capistrano.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
34
35
36
37
38
39
40
41
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# Specifications
Gem::Specification.new do |gem|
gem.name = 'olympus-hestia-capistrano'
gem.version = '0.0.10'
gem.date = Time.now.strftime("%Y-%m-%d")
gem.authors = ['Achraf Chouk']
gem.email = ['[email protected]']
gem.description = 'Olympus Hestia Capistrano is a Capistrano bundle tasks for deploying WordPress website easily with the Olympus package.'
gem.summary = 'Ruby gem which provides a complete solution for deploying WordPress website with the Olympus package.'
gem.homepage = 'https://github.com/GetOlympus/Hestia-Capistrano'
gem.license = 'MIT'
gem.files = [
'CHANGELOG.md',
'LICENSE',
'README.md',
'olympus-hestia-capistrano.gemspec',
'lib/olympus-hestia.rb',
'lib/capistrano/olympus-hestia.rb',
'lib/capistrano/tasks/database.rake',
'lib/capistrano/tasks/deploy.rake',
'lib/capistrano/tasks/directories.rake',
'lib/capistrano/tasks/files.rake',
'lib/capistrano/vars/defaults.rb',
]
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
# no tests as of yet
#gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_dependency 'capistrano', '~> 3.4'
gem.add_dependency 'capistrano-composer', '~> 0.0.3'
gem.add_dependency 'colorize', '~> 0.7.7'
gem.add_runtime_dependency 'capistrano-file-permissions', '~> 1.0', '>= 1.0.0'
end