-
Notifications
You must be signed in to change notification settings - Fork 5
/
halibut.gemspec
25 lines (21 loc) · 945 Bytes
/
halibut.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/halibut/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ricardo Mendes"]
gem.email = ["[email protected]"]
gem.description = %q{Toolkit to work with HAL}
gem.summary = %q{A HAL parser and builder for use in Hypermedia APIs}
gem.homepage = "http://locks.github.com/halibut"
gem.license = "MIT"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "halibut"
gem.require_paths = ["lib"]
gem.version = Halibut::VERSION
gem.required_ruby_version = '>= 1.9.3'
# this version of minitest adds parallelization
gem.add_development_dependency "rake"
gem.add_development_dependency "minitest", ">= 4.2"
gem.add_development_dependency "hash-differ"
end