-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
hanami-model.gemspec
36 lines (31 loc) · 1.65 KB
/
hanami-model.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
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "hanami/model/version"
Gem::Specification.new do |spec|
spec.name = "hanami-model"
spec.version = Hanami::Model::VERSION
spec.authors = ["Luca Guidi"]
spec.email = ["[email protected]"]
spec.summary = "A persistence layer for Hanami"
spec.description = "A persistence framework with entities and repositories"
spec.homepage = "http://hanamirb.org"
spec.license = "MIT"
spec.files = `git ls-files -z -- lib/* CHANGELOG.md EXAMPLE.md LICENSE.md README.md hanami-model.gemspec`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3.0", "< 3"
spec.add_runtime_dependency "hanami-utils", "~> 1.3"
spec.add_runtime_dependency "rom", "~> 3.3", ">= 3.3.3"
spec.add_runtime_dependency "rom-sql", "~> 1.3", ">= 1.3.5"
spec.add_runtime_dependency "rom-repository", "~> 1.4"
spec.add_runtime_dependency "dry-types", "~> 0.11.0"
spec.add_runtime_dependency "dry-logic", "~> 0.4.2", "< 0.5"
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "bigdecimal", "~> 1.4"
spec.add_development_dependency "bundler", ">= 1.6", "< 3"
spec.add_development_dependency "rake", "~> 12"
spec.add_development_dependency "rspec", "~> 3.7"
spec.add_development_dependency "rubocop", "0.81" # rubocop 0.81+ removed support for Ruby 2.3
end