Skip to content

Commit 139abd6

Browse files
committed
deploy: f42ac29
1 parent 8c34641 commit 139abd6

File tree

196 files changed

+18631
-42389
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+18631
-42389
lines changed

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.2.0"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
gem "rexml", ">= 3.2.5"
14+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
16+
# gem "github-pages", group: :jekyll_plugins
17+
# If you have any plugins, put them here!
18+
group :jekyll_plugins do
19+
gem "jekyll-feed", "~> 0.12"
20+
gem 'jekyll-asciidoc'
21+
end
22+
23+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24+
# and associated library.
25+
platforms :mingw, :x64_mingw, :mswin, :jruby do
26+
gem "tzinfo", "~> 1.2"
27+
gem "tzinfo-data"
28+
end
29+
30+
# Performance-booster for watching directories on Windows
31+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
32+
33+
gem 'jekyll-sitemap'

Gemfile.lock

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
asciidoctor (2.0.15)
7+
colorator (1.1.0)
8+
concurrent-ruby (1.1.9)
9+
em-websocket (0.5.2)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0.6.0)
12+
eventmachine (1.2.7-x64-mingw32)
13+
ffi (1.15.3-x64-mingw32)
14+
forwardable-extended (2.6.0)
15+
http_parser.rb (0.6.0)
16+
i18n (1.8.10)
17+
concurrent-ruby (~> 1.0)
18+
jekyll (4.2.0)
19+
addressable (~> 2.4)
20+
colorator (~> 1.0)
21+
em-websocket (~> 0.5)
22+
i18n (~> 1.0)
23+
jekyll-sass-converter (~> 2.0)
24+
jekyll-watch (~> 2.0)
25+
kramdown (~> 2.3)
26+
kramdown-parser-gfm (~> 1.0)
27+
liquid (~> 4.0)
28+
mercenary (~> 0.4.0)
29+
pathutil (~> 0.9)
30+
rouge (~> 3.0)
31+
safe_yaml (~> 1.0)
32+
terminal-table (~> 2.0)
33+
jekyll-asciidoc (3.0.0)
34+
asciidoctor (>= 1.5.0)
35+
jekyll (>= 3.0.0)
36+
jekyll-feed (0.15.1)
37+
jekyll (>= 3.7, < 5.0)
38+
jekyll-sass-converter (2.1.0)
39+
sassc (> 2.0.1, < 3.0)
40+
jekyll-seo-tag (2.7.1)
41+
jekyll (>= 3.8, < 5.0)
42+
jekyll-sitemap (1.4.0)
43+
jekyll (>= 3.7, < 5.0)
44+
jekyll-watch (2.2.1)
45+
listen (~> 3.0)
46+
kramdown (2.3.1)
47+
rexml
48+
kramdown-parser-gfm (1.1.0)
49+
kramdown (~> 2.0)
50+
liquid (4.0.3)
51+
listen (3.6.0)
52+
rb-fsevent (~> 0.10, >= 0.10.3)
53+
rb-inotify (~> 0.9, >= 0.9.10)
54+
mercenary (0.4.0)
55+
minima (2.5.1)
56+
jekyll (>= 3.5, < 5.0)
57+
jekyll-feed (~> 0.9)
58+
jekyll-seo-tag (~> 2.1)
59+
pathutil (0.16.2)
60+
forwardable-extended (~> 2.6)
61+
public_suffix (4.0.6)
62+
rb-fsevent (0.11.0)
63+
rb-inotify (0.10.1)
64+
ffi (~> 1.0)
65+
rexml (3.2.5)
66+
rouge (3.26.0)
67+
safe_yaml (1.0.5)
68+
sassc (2.4.0-x64-mingw32)
69+
ffi (~> 1.9)
70+
terminal-table (2.0.0)
71+
unicode-display_width (~> 1.1, >= 1.1.1)
72+
thread_safe (0.3.6)
73+
tzinfo (1.2.9)
74+
thread_safe (~> 0.1)
75+
tzinfo-data (1.2021.1)
76+
tzinfo (>= 1.0.0)
77+
unicode-display_width (1.7.0)
78+
wdm (0.1.1)
79+
80+
PLATFORMS
81+
x64-mingw32
82+
83+
DEPENDENCIES
84+
jekyll (~> 4.2.0)
85+
jekyll-asciidoc
86+
jekyll-feed (~> 0.12)
87+
jekyll-sitemap
88+
minima (~> 2.5)
89+
rexml (>= 3.2.5)
90+
tzinfo (~> 1.2)
91+
tzinfo-data
92+
wdm (~> 0.1.1)
93+
94+
BUNDLED WITH
95+
2.2.24
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[preface]
2+
= Preface
3+
4+
Viglet Shio CMS (https://viglet.com/shio) is an open source solution (https://github.com/ShioCMS), which allows model content, use graphQL and create site using javascript with native cache and search.
5+
6+

0 commit comments

Comments
 (0)