forked from holidays/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
holidays.gemspec
24 lines (22 loc) · 1.06 KB
/
holidays.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'holidays/version'
Gem::Specification.new do |gem|
gem.name = 'holidays'
gem.version = Holidays::VERSION
gem.authors = ['Alex Dunae', 'Phil Trimble']
gem.email = ['code@dunae.ca', 'holidaysgem@gmail.com']
gem.homepage = 'https://github.com/holidays/holidays'
gem.description = %q(A collection of Ruby methods to deal with statutory and other holidays. You deserve a holiday!)
gem.summary = %q(A collection of Ruby methods to deal with statutory and other holidays.)
gem.files = `git ls-files`.split("\n") - ['.gitignore', '.travis.yml', '.coveralls.yml']
gem.test_files = gem.files.grep(/^test/)
gem.require_paths = ['lib']
gem.licenses = ['MIT']
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'coveralls'
gem.add_development_dependency 'test-unit'
gem.add_development_dependency 'mocha', '~>1.0'
end