Sha256: 4f528cb876b476941e895dfcea6a1169ab5f7acf31faab97dd4697b6b2a16f01

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true
# this file is managed by dry-rb/devtools project

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dry/transaction/version'

Gem::Specification.new do |spec|
  spec.name          = 'dry-transaction'
  spec.authors       = ["Tim Riley"]
  spec.email         = ["tim@icelab.com.au"]
  spec.license       = 'MIT'
  spec.version       = Dry::Transaction::VERSION.dup

  spec.summary       = "Business Transaction Flow DSL"
  spec.description   = spec.summary
  spec.homepage      = 'https://dry-rb.org/gems/dry-transaction'
  spec.files         = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-transaction.gemspec", "lib/**/*"]
  spec.bindir        = 'bin'
  spec.executables   = []
  spec.require_paths = ['lib']

  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  spec.metadata['changelog_uri']     = 'https://github.com/dry-rb/dry-transaction/blob/master/CHANGELOG.md'
  spec.metadata['source_code_uri']   = 'https://github.com/dry-rb/dry-transaction'
  spec.metadata['bug_tracker_uri']   = 'https://github.com/dry-rb/dry-transaction/issues'

  spec.required_ruby_version = ">= 2.5.0"

  # to update dependencies edit project.yml
  spec.add_runtime_dependency "dry-container", ">= 0.2.8"
  spec.add_runtime_dependency "dry-events", ">= 0.1.0"
  spec.add_runtime_dependency "dry-matcher", ">= 0.7.0"
  spec.add_runtime_dependency "dry-monads", ">= 0.4.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dry-transaction-0.13.2 dry-transaction.gemspec
dry-transaction-0.13.1 dry-transaction.gemspec