-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapistrano-coditsu.gemspec
More file actions
33 lines (27 loc) · 1.12 KB
/
capistrano-coditsu.gemspec
File metadata and controls
33 lines (27 loc) · 1.12 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'capistrano-coditsu'
spec.version = '0.1.1'
spec.platform = Gem::Platform::RUBY
spec.authors = ['Tomasz Pajor']
spec.email = %w[contact@coditsu.io]
spec.homepage = 'https://coditsu.io'
spec.summary = 'Coditsu integration for Capistrano'
spec.description = 'Coditsu integration for Capistrano'
spec.license = 'LGPL-3.0'
spec.required_ruby_version = '>= 3.4'
spec.add_dependency 'bcrypt_pbkdf'
spec.add_dependency 'capistrano', '>= 3.9'
spec.add_dependency 'capistrano-bundler'
spec.add_dependency 'capistrano-rails'
spec.add_dependency 'capistrano-rbenv'
spec.add_dependency 'ed25519'
spec.add_dependency 'envlogic'
spec.add_dependency 'net-ssh'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]
spec.metadata['rubygems_mfa_required'] = 'true'
end