forked from rom-rb/rom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrom.gemspec
More file actions
21 lines (18 loc) · 871 Bytes
/
rom.gemspec
File metadata and controls
21 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# encoding: utf-8
require File.expand_path('../lib/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'rom'
gem.summary = 'Ruby Object Mapper'
gem.description = gem.summary
gem.authors = ['Piotr Solnica', 'Dan Kubb', 'Markus Schirp', 'Martin Gamsjaeger'].sort
gem.email = ['piotr.solnica@gmail.com', 'dan.kubb@gmail.com', 'mbj@schirp-dso.com', 'gamsnjaga@gmail.com'].sort
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_dependency 'rom-relation', '~> 0.1.2'
gem.add_dependency 'rom-mapper', '~> 0.1.1'
gem.add_dependency 'rom-session', '~> 0.1.1'
end