-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjekyll-respec.gemspec
32 lines (24 loc) · 1.04 KB
/
jekyll-respec.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true
# coding: utf-8
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "jekyll-respec/version"
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = "2.2.2"
s.required_ruby_version = ">= 2.1.0"
s.name = "jekyll-respec"
s.version = Jekyll::Respec::VERSION
s.license = "MIT"
s.summary = "Convert markdown to HTML respec."
s.authors = ["Ludovic Roux"]
s.email = "ludovic.roux@cosmosoftware.io"
s.homepage = "https://github.com/jekyll/jekyll-respec"
# all_files = `git ls-files -z`.split("\x0")
s.files = Dir["lib/**/*"]
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w(README.md LICENSE Gemfile jekyll-respec.gemspec)
s.add_runtime_dependency("kramdown-respec", "~> 0.0")
end