-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdry-mutations.gemspec
50 lines (42 loc) · 2.17 KB
/
dry-mutations.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dry/mutations/version'
Gem::Specification.new do |spec|
spec.name = 'dry-mutations'
spec.version = Dry::Mutations::VERSION
spec.authors = ['Aleksei Matiushkin']
spec.email = ['[email protected]']
spec.summary = 'Mutations gem interface implemented with `dry-rb`’s validation schemas.'
spec.description = <<-DESC
Mutations gem interface implemented with `dry-rb`’s validation schemas.
DESC
spec.homepage = 'http://github.com/am-kantox/dry-mutations'
spec.license = 'MIT'
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
fail 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)
# spec.metadata['allowed_push_host'] = 'https://gemfury.com'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'awesome_print'
spec.add_development_dependency 'sqlite3'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'activerecord', '< 5', '>= 3.2' # prevent mutations to require activerecord 5
spec.add_dependency 'activesupport', '< 5', '>= 3.2' # prevent mutations to require activesupport 5
spec.add_dependency 'mutations', '~> 0.8'
spec.add_dependency 'hashie', '~> 3'
spec.add_dependency 'dry-configurable', '~> 0.7', '< 0.8'
spec.add_dependency 'dry-container', '~> 0.6', '< 0.7'
spec.add_dependency 'dry-logic', '~> 0.4', '< 0.5'
spec.add_dependency 'dry-matcher', '~> 0.6', '< 0.7'
spec.add_dependency 'dry-monads', '= 0.3.1'
spec.add_dependency 'dry-types', '~> 0.9', '< 0.10'
spec.add_dependency 'dry-validation', '~> 0.10', '< 0.11'
spec.add_dependency 'dry-transaction', '~> 0.9', '< 0.10'
end