Sha256: 009b07d180b4ef260f1e057a9708653d5abe28fa072c1086087b2d5c728a24b7
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# 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.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(__dir__)) 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" 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 "webmock" spec.add_development_dependency "yard" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google_holiday_calendar-0.1.1 | google_holiday_calendar.gemspec |