Sha256: 84dde7b88f7a6ccdd41d57441ac7796c79a4ac2722762c70ad5a70c9ac85e489

Contents?: true

Size: 1.54 KB

Versions: 2

Compression:

Stored size: 1.54 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/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/master/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.4.0"

  # to update dependencies edit project.yml
  spec.add_runtime_dependency "dry-schema", "~> 1.5"
  spec.add_runtime_dependency "dry-system", "~> 0.17"
  spec.add_runtime_dependency "dry-validation", "~> 1.5"

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dry-rails-0.2.0 dry-rails.gemspec
dry-rails-0.1.0 dry-rails.gemspec