-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92006a7
commit 959ce0a
Showing
1 changed file
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,32 @@ | ||
# frozen_string_literal: true | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "paraqeet" | ||
spec.version = "0.1.0" | ||
spec.authors = ["Robert Love"] | ||
spec.email = ["robertjohnlove@gmail.com"] | ||
spec.name = "paraqeet" | ||
spec.version = "0.2.0" | ||
spec.author = "Robert Love" | ||
spec.email = "robertjohnlove@gmail.com" | ||
|
||
spec.summary = "A Jekyll theme for building websites with Bootstrap" | ||
spec.homepage = "https://signified.github.io/paraqeet" | ||
spec.license = "MIT" | ||
spec.summary = "A Jekyll theme for building websites with Bootstrap" | ||
spec.homepage = "https://signified.github.io/paraqeet" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) } | ||
spec.description = <<-EOF | ||
Paraqeet is a Jekyll theme for building websites using Bootstrap - the most | ||
popular HTML, CSS, and JS library in the world. Paraqeet comes pre-loaded | ||
with the latest versions of Bootstrap and Bootstrap Icons, as well as | ||
built-in CSS theme support for Rouge - Jekyll’s default code syntax | ||
highlighter. | ||
EOF | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 4.3" | ||
spec.metadata = { | ||
"bug_tracker_uri" => "https://github.com/signified/paraqeet/issues", | ||
"changelog_uri" => "https://github.com/signified/paraqeet/releases", | ||
"documentation_uri" => "https://signified.github.io/paraqeet", | ||
"homepage_uri" => "https://signified.github.io/paraqeet", | ||
"source_code_uri" => "https://github.com/signified/paraqeet" | ||
} | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) } | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 4.2" | ||
end |