forked from holidays/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
holidays.gemspec
23 lines (21 loc) · 981 Bytes
/
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
# -*- 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']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/alexdunae/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']
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'
end