forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt to add all gem requirements to master
- Loading branch information
Showing
4 changed files
with
26 additions
and
5 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,7 +1,6 @@ | ||
source 'https://rubygems.org' | ||
# frozen_string_literal: true | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
source "https://rubygems.org" | ||
|
||
gemspec | ||
|
||
# enable tzinfo-data for local build | ||
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw] | ||
gem 'jekyll-paginate' |
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 |
---|---|---|
|
@@ -196,6 +196,7 @@ exclude: | |
- Gemfile.lock | ||
- LICENSE | ||
- README.md | ||
- screenshot.png | ||
- docs/ | ||
|
||
plugins: | ||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# frozen_string_literal: true | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "beautiful-jekyll-theme" | ||
spec.version = "2.0.0" | ||
spec.authors = ["Dean Attali"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "Beautiful Jekyll is a ready-to-use Jekyll theme to help you create an awesome website quickly. Perfect for personal blogs or simple project websites, with a focus on responsive and clean design." | ||
spec.homepage = "https://deanattali.com/beautiful-jekyll" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|LICENSE|README|feed|404|_data|tags|stfaticman)}i) } | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.8" | ||
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" | ||
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4" | ||
|
||
spec.add_development_dependency "bundler", ">= 1.16" | ||
spec.add_development_dependency "rake", "~> 12.0" | ||
end |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.