Sha256: 6db93bf85ba11c0c631542336263133683f6597e4ce633897e49179c751c45fa
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 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", "~> 3.3" 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jekyll-ical-tag-1.0.4 | jekyll-ical-tag.gemspec |
jekyll-ical-tag-1.0.3 | jekyll-ical-tag.gemspec |
jekyll-ical-tag-1.0.2 | jekyll-ical-tag.gemspec |