-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from souldanger/version-0.0.7
Version 0.0.7.prerelease
- Loading branch information
Showing
69 changed files
with
10,682 additions
and
149 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,2 +1,9 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Ignore all test and documentation with “export-ignore”. | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
CHANGELOG.md export-ignore | ||
README.md export-ignore | ||
LICENSE export-ignore |
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
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
This file was deleted.
Oops, something went wrong.
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
Binary file not shown.
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,20 +1,24 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'jekyll-pwa-workbox' | ||
s.version = '0.0.7.prerelease' | ||
s.date = '2019-07-11' | ||
s.version = '0.0.6' | ||
s.date = '2019-05-08' | ||
s.summary = "PWA Workbox Service Worker for Jekyll." | ||
s.description = "This Jekyll plugin makes your PWA / Website available offline and allows you to install on desktop or mobile. | ||
It uses a Workbox v4 service worker, generates and injects a precache list into it and takes care of the registration process in a secure way." | ||
s.authors = ['souldanger', 'Pan Yuqi', 'sekiyika'] | ||
s.email = ['sammyoneski@outlook.com', 'pyqiverson@gmail.com', 'pengxing5501854@gmail.com'] | ||
s.description = "A Jekyll plugin that makes your PWA / Website available offline and lets you install on desktop and mobile. | ||
It generates and injects a precache list into a Workbox v5 service worker and handles the registration process in a secure way." | ||
s.authors = ['souldanger'] | ||
s.email = ['souldanger.industries@gmail.com'] | ||
s.files = Dir["lib/*.rb"] + Dir["lib/vendor/**/*"] | ||
s.homepage = 'https://github.com/souldanger/jekyll-pwa-workbox' | ||
s.license = 'MIT' | ||
s.metadata = { | ||
"bug_tracker_uri" => "https://github.com/souldanger/jekyll-pwa-workbox/issues", | ||
"changelog_uri" => "https://github.com/souldanger/jekyll-pwa-workbox/blob/master/CHANGELOG.md", | ||
"documentation_uri" => "https://github.com/souldanger/jekyll-pwa-workbox/blob/master/README.md", | ||
"changelog_uri" => "https://github.com/souldanger/jekyll-pwa-workbox/blob/master/changelog.md", | ||
"documentation_uri" => "https://github.com/souldanger/jekyll-pwa-workbox", | ||
"homepage_uri" => "https://github.com/souldanger/jekyll-pwa-workbox", | ||
"source_code_uri" => "https://github.com/souldanger/jekyll-pwa-workbox", | ||
"source_code_uri" => "https://github.com/souldanger/jekyll-pwa-workbox/releases", | ||
} | ||
end |
Oops, something went wrong.