Sha256: 48a30211217789f85ed232b2ff534d07b7d4304d93da3cedde92796fad93948c

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

# this file is synced from dry-rb/template-gem project

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

Gem::Specification.new do |spec|
  spec.name          = "dry-rails"
  spec.authors       = ["Piotr Solnica"]
  spec.email         = ["piotr.solnica@gmail.com"]
  spec.license       = "MIT"
  spec.version       = Dry::Rails::VERSION.dup

  spec.summary       = "The official dry-rb railtie for Ruby on Rails"
  spec.description   = "dry-rails provides the official integration of dry-rb gems with Ruby on Rails framework."
  spec.homepage      = "https://dry-rb.org/gems/dry-rails"
  spec.files         = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-rails.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-rails/blob/main/CHANGELOG.md"
  spec.metadata["source_code_uri"]   = "https://github.com/dry-rb/dry-rails"
  spec.metadata["bug_tracker_uri"]   = "https://github.com/dry-rb/dry-rails/issues"

  spec.required_ruby_version = ">= 2.7.0"

  # to update dependencies edit project.yml
  spec.add_runtime_dependency "dry-schema", "~> 1.11", ">= 1.11.2"
  spec.add_runtime_dependency "dry-system", "~> 0.27", ">= 0.27.2"
  spec.add_runtime_dependency "dry-validation", "~> 1.9", ">= 1.9.0"

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-rails-0.6.0 dry-rails.gemspec