forked from rom-rb/rom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrom.gemspec
27 lines (23 loc) · 1.06 KB
/
rom.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
# encoding: utf-8
require File.expand_path('../lib/rom/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'rom'
gem.summary = 'Ruby Object Mapper'
gem.description = 'Persistence and mapping toolkit for Ruby'
gem.author = 'Piotr Solnica'
gem.email = '[email protected]'
gem.homepage = 'http://rom-rb.org'
gem.require_paths = ['lib']
gem.version = ROM::VERSION.dup
gem.files = `git ls-files`.split("\n").reject { |name| name.include?('benchmarks') }
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.license = 'MIT'
gem.add_runtime_dependency 'concurrent-ruby', '~> 1.0'
gem.add_runtime_dependency 'dry-equalizer', '~> 0.2'
gem.add_runtime_dependency 'dry-types', '~> 0.8'
gem.add_runtime_dependency 'dry-core', '~> 0.2', '>= 0.2.3'
gem.add_runtime_dependency 'dry-initializer', '~> 0.10', '>= 0.10.2'
gem.add_runtime_dependency 'rom-mapper', '~> 0.5.0.beta'
gem.add_development_dependency 'rake', '~> 10.3'
gem.add_development_dependency 'rspec', '~> 3.5'
end