This repository was archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdkdeploy-core.gemspec
More file actions
35 lines (30 loc) · 1.44 KB
/
dkdeploy-core.gemspec
File metadata and controls
35 lines (30 loc) · 1.44 KB
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dkdeploy/core/version'
Gem::Specification.new do |spec|
spec.name = 'dkdeploy-core'
spec.version = Dkdeploy::Core::Version
spec.license = 'MIT'
spec.authors = ['Timo Webler', 'Nicolai Reuschling']
spec.email = %w[[email protected] [email protected]]
spec.description = 'dkd basic deployment tasks and strategies'
spec.summary = 'dkd basic deployment tasks and strategies'
spec.homepage = 'https://github.com/dkdeploy/dkdeploy-core'
spec.required_ruby_version = '~> 2.7'
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_development_dependency 'aruba', '~> 1.0'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'cucumber', '~> 5.3'
spec.add_development_dependency 'dkdeploy-test_environment', '~> 2.0'
spec.add_development_dependency 'mysql2', '~> 0.5'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'rubocop', '~> 1.12'
spec.add_dependency 'capistrano', '~> 3.16'
spec.add_dependency 'highline', '~> 2.0.3'
end