File: mhc.gemspec

package info (click to toggle)
mhc 1.2.4-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,460 kB
  • sloc: ruby: 12,723; lisp: 7,570; makefile: 75; sh: 72
file content (33 lines) | stat: -rw-r--r-- 1,250 bytes parent folder | download | duplicates (2)
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
# 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         = ["nom@quickhack.net"]
  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",        ">= 0.19.1"
  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_development_dependency "rake"
  spec.add_development_dependency "rspec"
end