-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-pages.gemspec
More file actions
25 lines (21 loc) · 952 Bytes
/
github-pages.gemspec
File metadata and controls
25 lines (21 loc) · 952 Bytes
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
require File.expand_path('../lib/github-pages', __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 = "support@github.com"
s.homepage = "https://github.com/github/pages-gem"
s.license = "MIT"
s.executables = ["github-pages"]
s.files = ["lib/github-pages.rb"]
GitHubPages.gems.each do |gem, version|
s.add_dependency(gem, "= #{version}")
end
s.add_dependency('github-pages-health-check', "~> 0.2")
s.add_dependency('mercenary', "~> 0.3")
s.add_dependency('terminal-table', "~> 1.4")
s.add_development_dependency("rspec", "~> 2.14")
end