├── CNAME ├── About.md ├── ByteDanceVerify.html ├── favicon.ico ├── favicon.png ├── .gitignore ├── assets ├── images │ ├── Avatar.png │ ├── email.png │ ├── github.png │ ├── address.png │ ├── facebook.png │ ├── twitter.png │ ├── website.png │ ├── email-48px.png │ ├── github-48px.png │ ├── instagram.png │ ├── Avatar-100px.png │ ├── address-48px.png │ ├── facebook-48px.png │ ├── twitter-48px.png │ ├── website-48px.png │ └── instagram-48px.png └── css │ └── style.scss ├── google414b480ccbd651e9.html ├── .github └── workflows │ ├── posts.yml │ ├── sync.yml │ └── cache.yml ├── _layouts ├── page.html ├── post.html └── default.html ├── _includes ├── head.html ├── header.html └── footer.html ├── _config.yml ├── README.md ├── Gemfile ├── sitemap.xsl └── Gemfile.lock /CNAME: -------------------------------------------------------------------------------- 1 | baoshuo.ren -------------------------------------------------------------------------------- /About.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: About Me 3 | layout: page 4 | --- 5 | 6 | _TODO_ 7 | -------------------------------------------------------------------------------- /ByteDanceVerify.html: -------------------------------------------------------------------------------- 1 | --- 2 | sitemap: false 3 | --- 4 | fpVzkQazq/SbZUMSsbxu -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/favicon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | _site/ 3 | .sass-cache/ 4 | .jekyll-cache/ 5 | .jekyll-metadata -------------------------------------------------------------------------------- /assets/images/Avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/Avatar.png -------------------------------------------------------------------------------- /assets/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/email.png -------------------------------------------------------------------------------- /assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/github.png -------------------------------------------------------------------------------- /assets/images/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/address.png -------------------------------------------------------------------------------- /assets/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/facebook.png -------------------------------------------------------------------------------- /assets/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/twitter.png -------------------------------------------------------------------------------- /assets/images/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/website.png -------------------------------------------------------------------------------- /assets/images/email-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/email-48px.png -------------------------------------------------------------------------------- /assets/images/github-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/github-48px.png -------------------------------------------------------------------------------- /assets/images/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/instagram.png -------------------------------------------------------------------------------- /assets/images/Avatar-100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/Avatar-100px.png -------------------------------------------------------------------------------- /assets/images/address-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/address-48px.png -------------------------------------------------------------------------------- /assets/images/facebook-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/facebook-48px.png -------------------------------------------------------------------------------- /assets/images/twitter-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/twitter-48px.png -------------------------------------------------------------------------------- /assets/images/website-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/website-48px.png -------------------------------------------------------------------------------- /google414b480ccbd651e9.html: -------------------------------------------------------------------------------- 1 | --- 2 | sitemap: false 3 | --- 4 | google-site-verification: google414b480ccbd651e9.html -------------------------------------------------------------------------------- /assets/images/instagram-48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzhiYi/renbaoshuo/master/assets/images/instagram-48px.png -------------------------------------------------------------------------------- /.github/workflows/posts.yml: -------------------------------------------------------------------------------- 1 | name: Update blog posts to README 2 | 3 | on: 4 | schedule: 5 | - cron: '*/15 * * * *' 6 | 7 | jobs: 8 | update: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: JasonEtco/rss-to-readme@v1 12 | with: 13 | feed-url: https://baoshuo.blog/atom.xml 14 | readme-section: posts 15 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% include head.html %} 7 | 8 | 9 | 10 | 11 | 12 | 13 | {% include header.html %} 14 | 15 |
16 | 17 | {{ content }} 18 | 19 | {% include footer.html %} 20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% include head.html %} 7 | 8 | 9 | 10 | 11 | 12 | 13 | {% include header.html %} 14 | 15 |
16 | 17 | {{ content }} 18 | 19 | {% include footer.html %} 20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% include head.html %} 7 | 8 | 9 | 10 | 11 | 12 | 13 | {% include header.html %} 14 | 15 |
16 | 17 | {{ content }} 18 | 19 | {% include footer.html %} 20 | 21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- 1 | name: Sync Code to Gitee 2 | on: 3 | schedule: 4 | - cron: '0 * * * *' 5 | jobs: 6 | Sync: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Sync to Gitee 10 | uses: Yikun/hub-mirror-action@v0.08 11 | with: 12 | src: github/renbaoshuo 13 | dst: gitee/renbaoshuo 14 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} 15 | dst_token: ${{ secrets.GITEE_TOKEN }} 16 | account_type: user 17 | # black_list: renbaoshuo.github.io 18 | 19 | -------------------------------------------------------------------------------- /.github/workflows/cache.yml: -------------------------------------------------------------------------------- 1 | name: Cloudflare Purge Cache 2 | 3 | on: [ page_build ] 4 | 5 | 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Wait for Build 11 | run: | 12 | sleep 60 13 | - name: Cloudflare Purge Cache 14 | run: | 15 | curl -X POST "https://api.cloudflare.com/client/v4/zones/${{ secrets.CLOUDFLARE_ZONE_ID }}/purge_cache" \ 16 | -H "X-Auth-Email: ${{ secrets.CLOUDFLARE_AUTH_EMAIL }}" \ 17 | -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_AUTH_TOKEN }}" \ 18 | -H "Content-Type: application/json" \ 19 | --data '{"purge_everything": true}' 20 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | {% if site.google_analytics %} 2 | 3 | 9 | {% endif %} 10 | 11 | 12 | {% seo %} 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | // ↑ 让 Jekyll 强制使用此文件作为 css 源文件 5 | 6 | // 指定编码 7 | @charset "utf-8"; 8 | 9 | // -------------------- 10 | // 自定义变量 11 | // -------------------- 12 | $section-headings-color: #2f80ed; 13 | 14 | // -------------------- 15 | // 引入站点主题 16 | // -------------------- 17 | @import "{{ site.theme }}"; 18 | 19 | // -------------------- 20 | // 自定义 CSS 21 | // -------------------- 22 | 23 | // 友情链接 24 | .site-footer-friends { 25 | color: #819198; 26 | font-size: 80%; 27 | 28 | a { 29 | text-decoration: none; 30 | color: #1e6bb8; 31 | } 32 | } 33 | 34 | // 侧边栏滚动条 35 | ::-webkit-scrollbar { 36 | width: 8px; 37 | height: 6px; 38 | } 39 | ::-webkit-scrollbar-thumb { 40 | border-radius: 4px; 41 | background-color: #cbcbcb; 42 | } 43 | ::-webkit-scrollbar-track-piece { 44 | background: #eee; 45 | } 46 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman 2 | lang: en_US 3 | 4 | title: Baoshuo's Site 5 | # description: Baoshuo's Site 6 | Author: Ren Baoshuo 7 | image: 8 | path: /assets/images/Avatar.png 9 | height: 200 10 | width: 200 11 | 12 | show_downloads: false 13 | 14 | google_analytics: UA-163290903-7 15 | 16 | github: 17 | is_project_page: false 18 | 19 | 20 | plugins: 21 | - jekyll-sitemap 22 | 23 | links: 24 | - name: "LiCEO" 25 | link: "https://lsc.moe/" 26 | - name: "Berd's Playground" 27 | link: "https://blog.berd.moe/" 28 | 29 | 30 | menus: 31 | - 0: 32 | name: Home 33 | link: / 34 | - 1: 35 | name: About 36 | link: /about.html 37 | - 2: 38 | name: Others 39 | link: https://renbaoshuo.github.io 40 | 41 | twitter: 42 | card: summary 43 | username: renbaoshuo 44 | 45 | # facebook: 46 | # admins: 47 | 48 | webmaster_verifications: 49 | google: QPAs-WvnzBF_40NLGcMWRcWGLpEvskzSbo1oYv4P2uU 50 | 51 | social: 52 | name: Ren Baoshuo 53 | links: 54 | - https://twitter.com/renbaoshuo 55 | - https://www.facebook.com/renbaoshuo 56 | - https://www.linkedin.com/in/renbaoshuo 57 | - https://github.com/renbaoshuo 58 | - https://t.me/baoshuo 59 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

👋 Hello! I'm Ren Baoshuo.

2 | 3 |

4 | Blog • 5 | Twitter • 6 | GitHub • 7 | Gitee • 8 | Telegram 9 |

10 | 11 | ### Github Stats 12 | 13 | 14 | 15 | ### Blog Posts 16 | 17 | Only the latest **5** articles are displayed here. 18 | 19 | 20 | * [【多图】在 VMware 上安装 macOS 11 Big Sur Beta](https://baoshuo.blog/post/FYt7XcPaa/) 21 | * [Sakura Frp 使用常见问题](https://baoshuo.blog/post/8tYaUDF47/) 22 | * [修改 Git 配置加速 clone GitHub 源码](https://baoshuo.blog/post/5vwyjylHh/) 23 | * [【补档】handsome 魔改教程:左侧边栏输出优化](https://baoshuo.blog/post/Tqp-Gj-LY/) 24 | * [自定义 git.io 短链接地址与绕过链接生成限制](https://baoshuo.blog/post/oKnaKLcDb/) 25 | 26 | 27 | **See more on [baoshuo.blog](https://baoshuo.blog).** 28 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://mirrors.tuna.tsinghua.edu.cn/rubygems/' 2 | 3 | gem "github-pages", group: :jekyll_plugins 4 | 5 | # gem "jekyll", ">= 3.9.0" 6 | # gem "jekyll-sass-converter", ">= 1.5.2" 7 | # gem "kramdown", ">= 2.3.0" 8 | # gem "kramdown-parser-gfm", ">= 1.1.0" 9 | # gem "jekyll-commonmark-ghpages", ">= 0.1.6" 10 | # gem "liquid", ">= 4.0.3" 11 | # gem "rouge", ">= 3.19.0" 12 | # gem "github-pages-health-check", ">= 1.16.1" 13 | # gem "jekyll-redirect-from", ">= 0.15.0" 14 | # gem "jekyll-sitemap", ">= 1.4.0" 15 | # gem "jekyll-feed", ">= 0.13.0" 16 | # gem "jekyll-gist", ">= 1.5.0" 17 | # gem "jekyll-paginate", ">= 1.1.0" 18 | # gem "jekyll-coffeescript", ">= 1.1.1" 19 | # gem "jekyll-seo-tag", ">= 2.6.1" 20 | # gem "jekyll-github-metadata", ">= 2.13.0" 21 | # gem "jekyll-avatar", ">= 0.7.0" 22 | # gem "jekyll-remote-theme", ">= 0.4.1" 23 | # gem "jemoji", ">= 0.11.1" 24 | # gem "jekyll-mentions", ">= 1.5.1" 25 | # gem "jekyll-relative-links", ">= 0.6.1" 26 | # gem "jekyll-optional-front-matter", ">= 0.3.2" 27 | # gem "jekyll-readme-index", ">= 0.3.0" 28 | # gem "jekyll-default-layout", ">= 0.1.4" 29 | # gem "jekyll-titles-from-headings", ">= 0.5.3" 30 | # gem "jekyll-swiss", ">= 1.0.0" 31 | # gem "minima", ">= 2.5.1" 32 | # gem "jekyll-theme-primer", ">= 0.5.4" 33 | # gem "jekyll-theme-architect", ">= 0.1.1" 34 | # gem "jekyll-theme-cayman", ">= 0.1.1" 35 | # gem "jekyll-theme-dinky", ">= 0.1.1" 36 | # gem "jekyll-theme-hacker", ">= 0.1.1" 37 | # gem "jekyll-theme-leap-day", ">= 0.1.1" 38 | # gem "jekyll-theme-merlot", ">= 0.1.1" 39 | # gem "jekyll-theme-midnight", ">= 0.1.1" 40 | # gem "jekyll-theme-minimal", ">= 0.1.1" 41 | # gem "jekyll-theme-modernist", ">= 0.1.1" 42 | # gem "jekyll-theme-slate", ">= 0.1.1" 43 | # gem "jekyll-theme-tactile", ">= 0.1.1" 44 | # gem "jekyll-theme-time-machine", ">= 0.1.1" 45 | # # gem "github-pages", ">= 207" 46 | # gem "html-pipeline", ">= 2.13.0" 47 | # gem "sass", ">= 3.7.4" 48 | # gem "safe_yaml", ">= 1.0.5" 49 | # gem "nokogiri", ">= 1.10.10" -------------------------------------------------------------------------------- /sitemap.xsl: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | Sitemap 11 | 12 | 51 | 52 | 53 |

XML Sitemap

54 |
55 | 56 | 57 | 58 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | ood 68 | 69 | 70 | even 71 | 72 | 80 | 83 | 86 | 89 | 90 | 91 |
URLLastChange
73 | 74 | 75 | 76 | 77 | 78 | 79 | 87 | 88 |
92 |
93 | 96 | 97 | 98 |
99 |
-------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://mirrors.tuna.tsinghua.edu.cn/rubygems/ 3 | specs: 4 | activesupport (6.0.3.2) 5 | concurrent-ruby (~> 1.0, >= 1.0.2) 6 | i18n (>= 0.7, < 2) 7 | minitest (~> 5.1) 8 | tzinfo (~> 1.1) 9 | zeitwerk (~> 2.2, >= 2.2.2) 10 | addressable (2.7.0) 11 | public_suffix (>= 2.0.2, < 5.0) 12 | coffee-script (2.4.1) 13 | coffee-script-source 14 | execjs 15 | coffee-script-source (1.11.1) 16 | colorator (1.1.0) 17 | commonmarker (0.17.13) 18 | ruby-enum (~> 0.5) 19 | concurrent-ruby (1.1.6) 20 | dnsruby (1.61.4) 21 | simpleidn (~> 0.1) 22 | em-websocket (0.5.1) 23 | eventmachine (>= 0.12.9) 24 | http_parser.rb (~> 0.6.0) 25 | ethon (0.12.0) 26 | ffi (>= 1.3.0) 27 | eventmachine (1.2.7-x64-mingw32) 28 | execjs (2.7.0) 29 | faraday (1.0.1) 30 | multipart-post (>= 1.2, < 3) 31 | ffi (1.13.1-x64-mingw32) 32 | forwardable-extended (2.6.0) 33 | gemoji (3.0.1) 34 | github-pages (207) 35 | github-pages-health-check (= 1.16.1) 36 | jekyll (= 3.9.0) 37 | jekyll-avatar (= 0.7.0) 38 | jekyll-coffeescript (= 1.1.1) 39 | jekyll-commonmark-ghpages (= 0.1.6) 40 | jekyll-default-layout (= 0.1.4) 41 | jekyll-feed (= 0.13.0) 42 | jekyll-gist (= 1.5.0) 43 | jekyll-github-metadata (= 2.13.0) 44 | jekyll-mentions (= 1.5.1) 45 | jekyll-optional-front-matter (= 0.3.2) 46 | jekyll-paginate (= 1.1.0) 47 | jekyll-readme-index (= 0.3.0) 48 | jekyll-redirect-from (= 0.15.0) 49 | jekyll-relative-links (= 0.6.1) 50 | jekyll-remote-theme (= 0.4.1) 51 | jekyll-sass-converter (= 1.5.2) 52 | jekyll-seo-tag (= 2.6.1) 53 | jekyll-sitemap (= 1.4.0) 54 | jekyll-swiss (= 1.0.0) 55 | jekyll-theme-architect (= 0.1.1) 56 | jekyll-theme-cayman (= 0.1.1) 57 | jekyll-theme-dinky (= 0.1.1) 58 | jekyll-theme-hacker (= 0.1.1) 59 | jekyll-theme-leap-day (= 0.1.1) 60 | jekyll-theme-merlot (= 0.1.1) 61 | jekyll-theme-midnight (= 0.1.1) 62 | jekyll-theme-minimal (= 0.1.1) 63 | jekyll-theme-modernist (= 0.1.1) 64 | jekyll-theme-primer (= 0.5.4) 65 | jekyll-theme-slate (= 0.1.1) 66 | jekyll-theme-tactile (= 0.1.1) 67 | jekyll-theme-time-machine (= 0.1.1) 68 | jekyll-titles-from-headings (= 0.5.3) 69 | jemoji (= 0.11.1) 70 | kramdown (= 2.3.0) 71 | kramdown-parser-gfm (= 1.1.0) 72 | liquid (= 4.0.3) 73 | mercenary (~> 0.3) 74 | minima (= 2.5.1) 75 | nokogiri (>= 1.10.4, < 2.0) 76 | rouge (= 3.19.0) 77 | terminal-table (~> 1.4) 78 | github-pages-health-check (1.16.1) 79 | addressable (~> 2.3) 80 | dnsruby (~> 1.60) 81 | octokit (~> 4.0) 82 | public_suffix (~> 3.0) 83 | typhoeus (~> 1.3) 84 | html-pipeline (2.13.0) 85 | activesupport (>= 2) 86 | nokogiri (>= 1.4) 87 | http_parser.rb (0.6.0) 88 | i18n (0.9.5) 89 | concurrent-ruby (~> 1.0) 90 | jekyll (3.9.0) 91 | addressable (~> 2.4) 92 | colorator (~> 1.0) 93 | em-websocket (~> 0.5) 94 | i18n (~> 0.7) 95 | jekyll-sass-converter (~> 1.0) 96 | jekyll-watch (~> 2.0) 97 | kramdown (>= 1.17, < 3) 98 | liquid (~> 4.0) 99 | mercenary (~> 0.3.3) 100 | pathutil (~> 0.9) 101 | rouge (>= 1.7, < 4) 102 | safe_yaml (~> 1.0) 103 | jekyll-avatar (0.7.0) 104 | jekyll (>= 3.0, < 5.0) 105 | jekyll-coffeescript (1.1.1) 106 | coffee-script (~> 2.2) 107 | coffee-script-source (~> 1.11.1) 108 | jekyll-commonmark (1.3.1) 109 | commonmarker (~> 0.14) 110 | jekyll (>= 3.7, < 5.0) 111 | jekyll-commonmark-ghpages (0.1.6) 112 | commonmarker (~> 0.17.6) 113 | jekyll-commonmark (~> 1.2) 114 | rouge (>= 2.0, < 4.0) 115 | jekyll-default-layout (0.1.4) 116 | jekyll (~> 3.0) 117 | jekyll-feed (0.13.0) 118 | jekyll (>= 3.7, < 5.0) 119 | jekyll-gist (1.5.0) 120 | octokit (~> 4.2) 121 | jekyll-github-metadata (2.13.0) 122 | jekyll (>= 3.4, < 5.0) 123 | octokit (~> 4.0, != 4.4.0) 124 | jekyll-mentions (1.5.1) 125 | html-pipeline (~> 2.3) 126 | jekyll (>= 3.7, < 5.0) 127 | jekyll-optional-front-matter (0.3.2) 128 | jekyll (>= 3.0, < 5.0) 129 | jekyll-paginate (1.1.0) 130 | jekyll-readme-index (0.3.0) 131 | jekyll (>= 3.0, < 5.0) 132 | jekyll-redirect-from (0.15.0) 133 | jekyll (>= 3.3, < 5.0) 134 | jekyll-relative-links (0.6.1) 135 | jekyll (>= 3.3, < 5.0) 136 | jekyll-remote-theme (0.4.1) 137 | addressable (~> 2.0) 138 | jekyll (>= 3.5, < 5.0) 139 | rubyzip (>= 1.3.0) 140 | jekyll-sass-converter (1.5.2) 141 | sass (~> 3.4) 142 | jekyll-seo-tag (2.6.1) 143 | jekyll (>= 3.3, < 5.0) 144 | jekyll-sitemap (1.4.0) 145 | jekyll (>= 3.7, < 5.0) 146 | jekyll-swiss (1.0.0) 147 | jekyll-theme-architect (0.1.1) 148 | jekyll (~> 3.5) 149 | jekyll-seo-tag (~> 2.0) 150 | jekyll-theme-cayman (0.1.1) 151 | jekyll (~> 3.5) 152 | jekyll-seo-tag (~> 2.0) 153 | jekyll-theme-dinky (0.1.1) 154 | jekyll (~> 3.5) 155 | jekyll-seo-tag (~> 2.0) 156 | jekyll-theme-hacker (0.1.1) 157 | jekyll (~> 3.5) 158 | jekyll-seo-tag (~> 2.0) 159 | jekyll-theme-leap-day (0.1.1) 160 | jekyll (~> 3.5) 161 | jekyll-seo-tag (~> 2.0) 162 | jekyll-theme-merlot (0.1.1) 163 | jekyll (~> 3.5) 164 | jekyll-seo-tag (~> 2.0) 165 | jekyll-theme-midnight (0.1.1) 166 | jekyll (~> 3.5) 167 | jekyll-seo-tag (~> 2.0) 168 | jekyll-theme-minimal (0.1.1) 169 | jekyll (~> 3.5) 170 | jekyll-seo-tag (~> 2.0) 171 | jekyll-theme-modernist (0.1.1) 172 | jekyll (~> 3.5) 173 | jekyll-seo-tag (~> 2.0) 174 | jekyll-theme-primer (0.5.4) 175 | jekyll (> 3.5, < 5.0) 176 | jekyll-github-metadata (~> 2.9) 177 | jekyll-seo-tag (~> 2.0) 178 | jekyll-theme-slate (0.1.1) 179 | jekyll (~> 3.5) 180 | jekyll-seo-tag (~> 2.0) 181 | jekyll-theme-tactile (0.1.1) 182 | jekyll (~> 3.5) 183 | jekyll-seo-tag (~> 2.0) 184 | jekyll-theme-time-machine (0.1.1) 185 | jekyll (~> 3.5) 186 | jekyll-seo-tag (~> 2.0) 187 | jekyll-titles-from-headings (0.5.3) 188 | jekyll (>= 3.3, < 5.0) 189 | jekyll-watch (2.2.1) 190 | listen (~> 3.0) 191 | jemoji (0.11.1) 192 | gemoji (~> 3.0) 193 | html-pipeline (~> 2.2) 194 | jekyll (>= 3.0, < 5.0) 195 | kramdown (2.3.0) 196 | rexml 197 | kramdown-parser-gfm (1.1.0) 198 | kramdown (~> 2.0) 199 | liquid (4.0.3) 200 | listen (3.2.1) 201 | rb-fsevent (~> 0.10, >= 0.10.3) 202 | rb-inotify (~> 0.9, >= 0.9.10) 203 | mercenary (0.3.6) 204 | mini_portile2 (2.4.0) 205 | minima (2.5.1) 206 | jekyll (>= 3.5, < 5.0) 207 | jekyll-feed (~> 0.9) 208 | jekyll-seo-tag (~> 2.1) 209 | minitest (5.14.1) 210 | multipart-post (2.1.1) 211 | nokogiri (1.10.10-x64-mingw32) 212 | mini_portile2 (~> 2.4.0) 213 | octokit (4.18.0) 214 | faraday (>= 0.9) 215 | sawyer (~> 0.8.0, >= 0.5.3) 216 | pathutil (0.16.2) 217 | forwardable-extended (~> 2.6) 218 | public_suffix (3.1.1) 219 | rb-fsevent (0.10.4) 220 | rb-inotify (0.10.1) 221 | ffi (~> 1.0) 222 | rexml (3.2.4) 223 | rouge (3.19.0) 224 | ruby-enum (0.8.0) 225 | i18n 226 | rubyzip (2.3.0) 227 | safe_yaml (1.0.5) 228 | sass (3.7.4) 229 | sass-listen (~> 4.0.0) 230 | sass-listen (4.0.0) 231 | rb-fsevent (~> 0.9, >= 0.9.4) 232 | rb-inotify (~> 0.9, >= 0.9.7) 233 | sawyer (0.8.2) 234 | addressable (>= 2.3.5) 235 | faraday (> 0.8, < 2.0) 236 | simpleidn (0.1.1) 237 | unf (~> 0.1.4) 238 | terminal-table (1.8.0) 239 | unicode-display_width (~> 1.1, >= 1.1.1) 240 | thread_safe (0.3.6) 241 | typhoeus (1.4.0) 242 | ethon (>= 0.9.0) 243 | tzinfo (1.2.7) 244 | thread_safe (~> 0.1) 245 | unf (0.1.4) 246 | unf_ext 247 | unf_ext (0.0.7.7-x64-mingw32) 248 | unicode-display_width (1.7.0) 249 | zeitwerk (2.4.0) 250 | 251 | PLATFORMS 252 | x64-mingw32 253 | 254 | DEPENDENCIES 255 | github-pages 256 | 257 | BUNDLED WITH 258 | 2.1.4 259 | --------------------------------------------------------------------------------