# frozen_string_literal: true Gem::Specification.new do |spec| spec.name = "pipeable" spec.version = "0.1.0" spec.authors = ["Brooke Kuhlmann"] spec.email = ["brooke@alchemists.io"] spec.homepage = "https://alchemists.io/projects/pipeable" spec.summary = "An implementation of the Railway Pattern for functional composable pipelines." spec.license = "Hippocratic-2.1" spec.metadata = { "bug_tracker_uri" => "https://github.com/bkuhlmann/pipeable/issues", "changelog_uri" => "https://alchemists.io/projects/pipeable/versions", "documentation_uri" => "https://alchemists.io/projects/pipeable", "funding_uri" => "https://github.com/sponsors/bkuhlmann", "label" => "Pipeable", "rubygems_mfa_required" => "true", "source_code_uri" => "https://github.com/bkuhlmann/pipeable" } spec.signing_key = Gem.default_key_path spec.cert_chain = [Gem.default_cert_path] spec.required_ruby_version = "~> 3.3" spec.add_dependency "dry-container", "~> 0.11" spec.add_dependency "dry-monads", "~> 1.6" spec.add_dependency "marameters", "~> 3.2" spec.add_dependency "refinements", "~> 12.1" spec.add_dependency "zeitwerk", "~> 2.6" spec.extra_rdoc_files = Dir["README*", "LICENSE*"] spec.files = Dir["*.gemspec", "lib/**/*"] end