Sha256: 755d1659e58d023c653590e06a26cedff17589d26dc5042ad03835a74fefa6f2

Contents?: true

Size: 954 Bytes

Versions: 1

Compression:

Stored size: 954 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "jekyll-robotstxt/version"

Gem::Specification.new do |spec|
  spec.name        = "jekyll-robotstxt"
  spec.summary     = "Automatically generate a robots.txt file for your Jekyll site."
  spec.version     = Jekyll::Robots::VERSION
  spec.authors     = ["RDIL"]
  spec.email       = "me@rdil.rocks"
  spec.date        = '2019-04-09'
  spec.homepage    = "https://github.com/RDIL/jekyll-robotstxt"
  spec.licenses    = ["MIT"]

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r!^bin/!) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.3.0"

  spec.add_dependency "jekyll", ">= 3.7", "< 5.0"
  spec.add_dependency "rake"

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rubocop-jekyll", "~> 0.4"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-robotstxt-0.3.2 jekyll-robotstxt.gemspec