-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvox_installer.gemspec
29 lines (25 loc) · 1.02 KB
/
convox_installer.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'convox_installer/version'
Gem::Specification.new do |s|
s.name = 'convox_installer'
s.version = ConvoxInstaller::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['DocSpring, Inc.']
s.email = ['[email protected]']
s.homepage = 'https://github.com/DocSpring/convox_installer'
s.summary = 'Build a Convox installation workflow'
s.description = 'Build a Convox installation workflow'
s.license = 'MIT'
s.required_ruby_version = '>= 2.5'
s.add_runtime_dependency 'activesupport', '>= 5.2.3'
s.add_runtime_dependency 'highline', '>= 1.7.10'
s.add_runtime_dependency 'httparty', '>= 0.17.0'
s.add_runtime_dependency 'json', '>= 2.2.0'
s.add_runtime_dependency 'os', '>= 1.0.1'
s.files = `git ls-files`.split("\n").uniq.sort.reject(&:empty?) - ['Gemfile.lock']
s.test_files = `git ls-files spec test`.split("\n")
s.executables = []
s.require_paths = ['lib']
s.metadata['rubygems_mfa_required'] = 'true'
end