-
Notifications
You must be signed in to change notification settings - Fork 18
/
microbus.gemspec
30 lines (24 loc) · 1.03 KB
/
microbus.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
# frozen_string_literal: true
require_relative 'lib/microbus/version'
Gem::Specification.new do |s|
s.name = 'microbus'
s.version = Microbus::VERSION
s.authors = ['Glenn Pratt', 'Peter Drake']
s.email = ['[email protected]', '[email protected]']
s.summary = 'Simple app deployment builder using docker.'
s.homepage = 'https://dev.acquia.com/'
s.license = 'Apache-2.0'
s.files = Dir['*.gemspec', '*.md', '*.txt', '{bin,lib}/**/*']
s.bindir = 'bin'
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.6' # rubocop:disable Gemspec/RequiredRubyVersion
s.add_dependency 'bundler'
s.add_dependency 'fpm', '> 1.4'
s.add_development_dependency 'aruba', '> 0.13'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '~> 1.66'
end