Skip to content

Commit

Permalink
[devtools] sync configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dry-bot committed Jan 12, 2020
1 parent a4fc2e1 commit 99f5f9e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 58 deletions.
47 changes: 28 additions & 19 deletions dry-validation.gemspec
@@ -1,30 +1,39 @@
# frozen_string_literal: true
# this file is managed by dry-rb/devtools project

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

Gem::Specification.new do |spec|
spec.name = 'dry-validation'
spec.version = Dry::Validation::VERSION
spec.authors = ['Piotr Solnica']
spec.email = ['piotr.solnica@gmail.com']
spec.summary = 'Validation library'
spec.homepage = 'https://dry-rb.org/gems/dry-validation'
spec.authors = ["Piotr Solnica"]
spec.email = ["piotr.solnica@gmail.com"]
spec.license = 'MIT'
spec.version = Dry::Validation::VERSION.dup

spec.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'lib/**/*', 'config/*.yml']
spec.executables = []
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.summary = "Validation library"
spec.description = spec.summary
spec.homepage = 'https://dry-rb.org/gems/dry-validation'
spec.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'dry-validation.gemspec', 'lib/**/*']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'

spec.add_runtime_dependency 'concurrent-ruby', '~> 1.0'
spec.add_runtime_dependency 'dry-core', '~> 0.4'
spec.add_runtime_dependency 'dry-equalizer', '~> 0.2'
spec.add_runtime_dependency 'dry-container', '~> 0.7', '>= 0.7.1'
spec.add_runtime_dependency 'dry-initializer', '~> 3.0'
spec.add_runtime_dependency 'dry-schema', '~> 1.0', '>= 1.4.3'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['changelog_uri'] = 'https://github.com/dry-rb/dry-validation/blob/master/CHANGELOG.md'
spec.metadata['source_code_uri'] = 'https://github.com/dry-rb/dry-validation'
spec.metadata['bug_tracker_uri'] = 'https://github.com/dry-rb/dry-validation/issues'

spec.required_ruby_version = '>= 2.4.0'

# to update dependencies edit project.yml
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "dry-container", "~> 0.7", ">= 0.7.1"
spec.add_runtime_dependency "dry-core", "~> 0.4"
spec.add_runtime_dependency "dry-equalizer", "~> 0.2"
spec.add_runtime_dependency "dry-initializer", "~> 3.0"
spec.add_runtime_dependency "dry-schema", "~> 1.4", ">= 1.4.3"

spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end
39 changes: 0 additions & 39 deletions gemspec

This file was deleted.

0 comments on commit 99f5f9e

Please sign in to comment.