Skip to content

Commit

Permalink
Update paraqeet.gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlove committed Nov 5, 2022
1 parent 92006a7 commit 959ce0a
Showing 1 changed file with 25 additions and 9 deletions.
34 changes: 25 additions & 9 deletions paraqeet.gemspec
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

0 comments on commit 959ce0a

Please sign in to comment.