-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtron.gemspec
More file actions
20 lines (16 loc) · 796 Bytes
/
tron.gemspec
File metadata and controls
20 lines (16 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
require File.expand_path('lib/tron/version', __dir__)
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.2.0'
spec.name = 'tron'
spec.version = Tron::VERSION::STRING
spec.summary = 'General-purpose method return objects that can be chained.'
spec.description = "#{spec.summary} Think minimalistic value object monads. " \
'Heavily inspired by the `deterministic` gem, but much much more light-weight.'
spec.authors = ['halo']
spec.homepage = 'https://github.com/halo/tron'
spec.files = Dir['{lib}/**/*', 'README*', 'LICENSE.txt'] & `git ls-files -z`.split("\0")
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.metadata['rubygems_mfa_required'] = 'true'
end