-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuprum.gemspec
35 lines (28 loc) · 1.19 KB
/
cuprum.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
31
32
33
34
35
# frozen_string_literal: true
$LOAD_PATH << './lib'
require 'cuprum/version'
Gem::Specification.new do |gem|
gem.name = 'cuprum'
gem.version = Cuprum::VERSION
gem.summary = 'An opinionated implementation of the Command pattern.'
description = <<~DESCRIPTION
An opinionated implementation of the Command pattern for Ruby applications.
Cuprum wraps your business logic in a consistent, object-oriented interface
and features status and error management, composability and control flow
management.
DESCRIPTION
gem.description = description.strip.gsub(/\n +/, ' ')
gem.authors = ['Rob "Merlin" Smith']
gem.email = ['[email protected]']
gem.homepage = 'http://sleepingkingstudios.com'
gem.license = 'MIT'
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/sleepingkingstudios/cuprum/issues',
'source_code_uri' => 'https://github.com/sleepingkingstudios/cuprum',
'rubygems_mfa_required' => 'true'
}
gem.required_ruby_version = '~> 3.1'
gem.require_path = 'lib'
gem.files = Dir['lib/**/*.rb', 'LICENSE', '*.md']
gem.add_runtime_dependency 'sleeping_king_studios-tools', '~> 1.0'
end