-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathhanami-model.gemspec
33 lines (28 loc) · 1.38 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
# coding: utf-8
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 = ['me@lucaguidi.com']
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'
spec.add_runtime_dependency 'hanami-utils', '~> 1.0.0.rc1'
spec.add_runtime_dependency 'rom-sql', '~> 1.1'
spec.add_runtime_dependency 'rom-repository', '~> 1.2'
spec.add_runtime_dependency 'dry-types', '~> 0.9'
spec.add_runtime_dependency 'concurrent-ruby', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'minitest', '~> 5'
spec.add_development_dependency 'rake', '~> 11'
spec.add_development_dependency 'rspec', '~> 3.5'
end