-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkommando.gemspec
27 lines (21 loc) · 978 Bytes
/
kommando.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
require_relative 'lib/kommando/version'
Gem::Specification.new do |spec|
spec.name = 'edgycircle_kommando'
spec.version = Kommando::VERSION.dup
spec.authors = ['David Strauß']
spec.email = ['[email protected]']
spec.description = 'Command architecture building blocks.'
spec.summary = ''
spec.homepage = 'https://github.com/edgycircle/kommando'
spec.license = 'Nonstandard'
spec.require_paths = %w[lib]
spec.files = Dir.glob(%w[lib/**/* db/**/*])
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
spec.add_runtime_dependency('pg')
spec.add_development_dependency('dry-validation', '~> 1.0')
spec.add_development_dependency('rails', '~> 6.0')
spec.add_development_dependency('rubocop', '~> 1.0')
spec.add_development_dependency('rake', '~> 12.0')
spec.add_development_dependency('minitest', '~> 5.0')
spec.add_development_dependency('sequel', '~> 5.0')
end