-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcuprum.gemspec
More file actions
33 lines (27 loc) · 1.2 KB
/
cuprum.gemspec
File metadata and controls
33 lines (27 loc) · 1.2 KB
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
# frozen_string_literal: true
require_relative 'lib/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 = ['merlin@sleepingkingstudios.com']
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', '< 5']
gem.require_path = 'lib'
gem.files = Dir['lib/**/*.rb', 'LICENSE', '*.md']
gem.add_runtime_dependency 'sleeping_king_studios-tools', '~> 1.2', '>= 1.2.1'
end