-
Notifications
You must be signed in to change notification settings - Fork 12
/
mhc.gemspec
35 lines (31 loc) · 1.31 KB
/
mhc.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
34
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
git = File.expand_path('../.git', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mhc/version'
Gem::Specification.new do |spec|
spec.name = "mhc"
spec.version = Mhc::VERSION
spec.authors = ["Yoshinari Nomura"]
spec.email = ["[email protected]"]
spec.summary = %q{Message Harmonized Calendaring}
spec.description = %q{Message Harmonized Calendaring.}
spec.homepage = "http://www.quickhack.net/mhc"
spec.license = "BSD"
spec.files = if Dir.exist?(git)
`git ls-files -z`.split("\x0")
else
Dir['**/*']
end
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.add_runtime_dependency "thor", ">= 1.2.0"
spec.add_runtime_dependency "rexml", ">= 3.2.4"
spec.add_runtime_dependency "ri_cal", ">= 0.8.8"
spec.add_runtime_dependency "tzinfo", ">= 1.2.2"
spec.add_runtime_dependency "tzinfo-data", ">= 1.2015.4"
spec.add_runtime_dependency "nkf"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end