forked from github/pages-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
github-pages.gemspec
33 lines (28 loc) · 1.39 KB
/
github-pages.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
33
# frozen_string_literal: true
require File.expand_path("../lib/github-pages/dependencies", __FILE__)
require File.expand_path("../lib/github-pages/plugins", __FILE__)
require File.expand_path("../lib/github-pages/version", __FILE__)
Gem::Specification.new do |s|
s.required_ruby_version = ">= 2.0.0"
s.name = "github-pages"
s.version = GitHubPages::VERSION
s.summary = "Track GitHub Pages dependencies."
s.description = "Bootstrap the GitHub Pages Jekyll environment locally."
s.authors = "GitHub, Inc."
s.email = "[email protected]"
s.homepage = "https://github.com/github/pages-gem"
s.license = "MIT"
all_files = `git ls-files -z`.split("\x0")
s.files = all_files.grep(%r{^(bin|lib)/|^.rubocop.yml$})
s.executables = all_files.grep(%r{^bin/}) { |f| File.basename(f) }
GitHubPages::Dependencies.gems.each do |gem, version|
s.add_dependency(gem, "= #{version}")
end
s.add_dependency("mercenary", "~> 0.3")
s.add_dependency("terminal-table", "~> 1.4")
s.add_development_dependency("rspec", "~> 3.3")
s.add_development_dependency("rubocop", "~> 0.46")
s.add_development_dependency("rainbow", "~> 2.1.0")
s.add_development_dependency("pry", "~> 0.10")
s.add_development_dependency("jekyll_test_plugin_malicious", "~> 0.2")
end