-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
beaker-hcloud.gemspec
29 lines (24 loc) · 1.03 KB
/
beaker-hcloud.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.unshift File.expand_path('lib', __dir__)
require 'beaker-hcloud/version'
Gem::Specification.new do |s|
s.name = 'beaker-hcloud'
s.version = BeakerHcloud::VERSION
s.summary = 'Hetzner Library for beaker acceptance testing framework'
s.description = 'Another gem that extends beaker'
s.authors = ['Tim Meusel', 'Vox Pupuli']
s.email = '[email protected]'
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/voxpupuli/beaker-hcloud'
s.license = 'AGPL-3.0'
s.required_ruby_version = '>= 2.7'
# Testing dependencies
s.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
s.add_development_dependency 'rspec', '~> 3.12'
s.add_development_dependency 'voxpupuli-rubocop', '~> 2.0.0'
s.add_runtime_dependency 'bcrypt_pbkdf', '~> 1.0'
s.add_runtime_dependency 'beaker', '~> 5.4'
s.add_runtime_dependency 'ed25519', '~> 1.2'
s.add_runtime_dependency 'hcloud', '~> 1.1'
s.add_runtime_dependency 'ssh_data', '~> 1.3'
end