-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrom-git.gemspec
More file actions
25 lines (20 loc) · 889 Bytes
/
rom-git.gemspec
File metadata and controls
25 lines (20 loc) · 889 Bytes
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
# coding: utf-8
require File.expand_path('../lib/rom/git/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "rom-git"
spec.version = ROM::Git::VERSION
spec.authors = ["Franck Verrot", "Piotr Solnica"]
spec.email = ["franck@verrot.fr", "piotr.solnica+oss@gmail.com"]
spec.summary = "Git adapter for the rom-rb"
spec.description = spec.summary
spec.homepage = "http://rom-rb.org"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^test/})
spec.add_runtime_dependency "rom", "~> 4.0"
spec.add_runtime_dependency "rugged", "~> 0.24"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end