mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 08:41:11 +08:00
26 lines
1.1 KiB
Ruby
26 lines
1.1 KiB
Ruby
# -*- 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 Peble']
|
|
gem.email = ['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']
|
|
gem.test_files = gem.files.grep(/^test/)
|
|
gem.require_paths = ['lib']
|
|
gem.licenses = ['MIT']
|
|
gem.required_ruby_version = '>= 2.4'
|
|
gem.add_development_dependency 'bundler', '~> 2'
|
|
gem.add_development_dependency 'rake', '~> 12'
|
|
gem.add_development_dependency 'simplecov', '~> 0.16'
|
|
gem.add_development_dependency 'test-unit', '~> 3'
|
|
gem.add_development_dependency 'mocha', '~> 1'
|
|
gem.add_development_dependency 'pry', '~> 0.12'
|
|
end
|