google_holiday_calendar.gemspec
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'google_holiday_calendar/version'
Gem::Specification.new do |spec|
spec.name = "google_holiday_calendar"
spec.version = GoogleHolidayCalendar::VERSION
spec.authors = ["sue445"]
spec.email = ["sue445@sue445.net"]
spec.summary = %q{Get holidays via Google Calendar.}
spec.description = %q{Get holidays via Google Calendar.}
spec.homepage = "https://github.com/sue445/google_holiday_calendar"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.metadata["documentation_uri"] = "https://sue445.github.io/google_holiday_calendar/"
spec.metadata["rubygems_mfa_required"] = "true"
spec.required_ruby_version = '>= 2.0.0'
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|img)/}) }
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_dependency "activesupport", ">= 4.0.0"
spec.add_development_dependency "bundler", ">= 1.5"
spec.add_development_dependency "coveralls_reborn"
spec.add_development_dependency "delorean"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-collection_matchers"
spec.add_development_dependency "rspec-its"
spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
spec.add_development_dependency "webmock"
spec.add_development_dependency "yard"
end