Sha256: 6de10225a3c3e121afc0e74c1685f2edc63728ab333806d092636d5c1a91b0ca
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jekyll' require "jekyll-ical-tag/version" Gem::Specification.new do |spec| spec.name = "jekyll-ical-tag" spec.version = Jekyll::IcalTag::VERSION spec.authors = ["Ricky Chilcott"] spec.email = ["ricky@rakefire.io"] spec.summary = "A Jekyll plugin to pull ICS feed and provide a for-like loop of calendar events" spec.homepage = "https://github.com/rakefire/jekyll-ical-tag" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.required_ruby_version = ">= 2.3.0" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|spec|features)/!) } spec.bindir = "exe" spec.executables = spec.files.grep(%r!^exe/!) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "jekyll", "~> 4" spec.add_dependency "api_cache" spec.add_dependency "activesupport" spec.add_dependency "icalendar" spec.add_dependency "pry" spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rspec", "~> 3.5" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jekyll-ical-tag-1.0.8 | jekyll-ical-tag.gemspec |
jekyll-ical-tag-1.0.7 | jekyll-ical-tag.gemspec |
jekyll-ical-tag-1.0.6 | jekyll-ical-tag.gemspec |
jekyll-ical-tag-1.0.5 | jekyll-ical-tag.gemspec |