jekyll-tally-tags 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/lib/jekyll-tally-tags.rb +205 -0
  3. data/lib/jekyll-tally-tags/docs_to_items.rb +151 -0
  4. data/lib/jekyll-tally-tags/item.rb +90 -0
  5. data/lib/jekyll-tally-tags/items_to_page.rb +128 -0
  6. data/lib/jekyll-tally-tags/methods.rb +44 -0
  7. data/lib/jekyll-tally-tags/pages/base_page.rb +284 -0
  8. data/lib/jekyll-tally-tags/pages/day_page.rb +14 -0
  9. data/lib/jekyll-tally-tags/pages/month_page.rb +14 -0
  10. data/lib/jekyll-tally-tags/pages/multiple_page.rb +14 -0
  11. data/lib/jekyll-tally-tags/pages/single_page.rb +14 -0
  12. data/lib/jekyll-tally-tags/pages/week_page.rb +14 -0
  13. data/lib/jekyll-tally-tags/pages/weeks_page.rb +14 -0
  14. data/lib/jekyll-tally-tags/pages/year_page.rb +70 -0
  15. data/lib/jekyll-tally-tags/{counter.rb → utils.rb} +173 -152
  16. data/lib/jekyll-tally-tags/version.rb +72 -54
  17. metadata +16 -25
  18. data/.gitignore +0 -8
  19. data/.idea/.gitignore +0 -8
  20. data/.idea/inspectionProfiles/Project_Default.xml +0 -6
  21. data/.idea/jekyll-tally-tags.iml +0 -44
  22. data/.idea/misc.xml +0 -4
  23. data/.idea/modules.xml +0 -8
  24. data/.idea/vcs.xml +0 -6
  25. data/.rubocop.yml +0 -13
  26. data/CHANGELOG.md +0 -5
  27. data/CODE_OF_CONDUCT.md +0 -84
  28. data/Gemfile +0 -12
  29. data/Gemfile.lock +0 -74
  30. data/LICENSE.txt +0 -21
  31. data/README.md +0 -43
  32. data/Rakefile +0 -5
  33. data/bin/console +0 -15
  34. data/bin/setup +0 -8
  35. data/jekyll-tally-tags.gemspec +0 -28
  36. data/lib/jekyll-tally-tags/classify.rb +0 -196
  37. data/lib/jekyll-tally-tags/hooks_doc.rb +0 -134
  38. data/lib/jekyll-tally-tags/hooks_logs.rb +0 -57
  39. data/lib/jekyll-tally-tags/subject.rb +0 -143
@@ -1,54 +1,72 @@
1
- # frozen_string_literal: true
2
-
3
- module Jekyll
4
- module TallyTags
5
- VERSION = "0.1.0"
6
- # 字段
7
- CLASSIFY = "classify".freeze
8
- SUBJECTS = "subjects".freeze
9
- SUBJECT = "subject".freeze
10
- CLASS = "class".freeze
11
- CLASSES = "classes".freeze
12
- YEAR = "year".freeze
13
- MONTH = "month".freeze
14
- DAY = "day".freeze
15
- WEEK = "week".freeze
16
- READ_METHOD = "read_".freeze
17
- ENABLED = "enabled".freeze
18
- ALL = "all".freeze
19
- # Subject
20
- SLUG_MODE = "slug_mode".freeze
21
- INDEX_HTML = "index.html".freeze
22
- LAYOUT = "layout".freeze
23
- LAYOUTS = "layouts".freeze
24
- PERMALINK = "permalink".freeze
25
- PERMALINKS = "permalinks".freeze
26
- NUMBER = "number".freeze
27
- TALLY = "tally".freeze
28
- KEYS = "keys".freeze
29
- # Hooks
30
- NO_NAME = %r!^(?>.+/)*?(\d{2,4}-\d{1,2}-\d{1,2})(-([^/]*))?(\.[^.]+)$!.freeze
31
- ###
32
- COUNTER = 'counter'.freeze # 总配置字段
33
- TEMPLATES = 'templates'.freeze # 对应的 key 表
34
- KEY = "key".freeze
35
- UNIT = 'unit'.freeze # 表内 计算后的单位
36
- NAME = 'name'.freeze # key 表的名称
37
- COUNT = 'count'.freeze # 需要计算的下标
38
- CATEGORY = 'category'.freeze # 分类下标
39
- TAG = 'tag'.freeze # 标签下标
40
- TAGS = 'tags'.freeze # 需要分类的下标
41
- FORMATTER = 'formatter'.freeze
42
- INT = 'int'.freeze
43
-
44
- # Doc
45
- ID = 'id'.freeze
46
- DATA = 'data'.freeze
47
- TITLE = 'title'.freeze
48
- COMBINE = 'combine'.freeze
49
- DEFAULT = 'default'.freeze
50
- FIND = 'find'.freeze
51
- TO = 'to'.freeze
52
- DEEP = 'deep'.freeze
53
- end
54
- end
1
+ # frozen_string_literal: true
2
+
3
+ require "jekyll"
4
+
5
+ module Jekyll
6
+ module TallyTags
7
+
8
+ VERSION = "0.1.2"
9
+
10
+ # Hooks
11
+ NO_NAME = %r!^(?>.+/)*?(\d{2,4}-\d{1,2}-\d{1,2})(-([^/]*))?(\.[^.]+)$!.freeze
12
+ YEAR = "year".freeze
13
+ MONTH = "month".freeze
14
+ DAY = "day".freeze
15
+ WEEKS = "weeks".freeze
16
+ WEEK = "week".freeze
17
+ DATE_HASH = {
18
+ YEAR => "%Y".freeze,
19
+ MONTH => "%m".freeze,
20
+ WEEKS => "%W".freeze,
21
+ WEEK => "%w".freeze,
22
+ DAY => "%d".freeze,
23
+ }
24
+ WEEK_VALUE = [
25
+ "周日".freeze,
26
+ "周一".freeze,
27
+ "周二".freeze,
28
+ "周三".freeze,
29
+ "周四".freeze,
30
+ "周五".freeze,
31
+ "周六".freeze,
32
+ ]
33
+ # Config
34
+ TALLY = "tally".freeze
35
+ COMBINE = 'combine'.freeze
36
+ DEFAULT = 'default'.freeze
37
+ FIND = 'find'.freeze
38
+ TO = 'to'.freeze
39
+ DEEP = 'deep'.freeze
40
+ TEMPLATES = 'templates'.freeze
41
+ TEMPLATE = 'template'.freeze
42
+ KEY = 'key'.freeze
43
+ KEYS = 'keys'.freeze
44
+ VALUE = 'value'.freeze
45
+ VALUES = 'values'.freeze
46
+ ID = 'id'.freeze
47
+ PERMALINK = "permalink".freeze
48
+ PERMALINKS = "permalinks".freeze
49
+ DATE = 'date'.freeze
50
+ DATE_KEY = 'DATE'.freeze
51
+ DATES = 'date_str'.freeze
52
+ SLUG = 'slug'.freeze
53
+ LAYOUT = 'layout'.freeze
54
+ LAYOUTS = 'layouts'.freeze
55
+ KEYS_EXTEND = 'keys_extend'.freeze
56
+ VALUES_EXTEND = 'values_extend'.freeze
57
+ #
58
+ CLASSIFY = 'classify'.freeze
59
+ PAGES = 'pages'.freeze
60
+ ENABLED = "enabled".freeze
61
+ ALL = "all".freeze
62
+ COUNT = 'count'.freeze
63
+ TITLE = 'title'.freeze
64
+ TAG = 'tag'.freeze
65
+ MAX_LENGTH = 'max_length'.freeze
66
+ SYMBOL = 'symbol'.freeze
67
+ MD_URL = 'md_url'.freeze
68
+ DATE_CONTENTS = 'date_contents'.freeze
69
+ DATE_TITLE = 'date_title'.freeze
70
+ CONTENTS = 'contents'.freeze
71
+ end
72
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tally-tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danyow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-13 00:00:00.000000000 Z
11
+ date: 2021-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -51,29 +51,20 @@ executables: []
51
51
  extensions: []
52
52
  extra_rdoc_files: []
53
53
  files:
54
- - ".gitignore"
55
- - ".idea/.gitignore"
56
- - ".idea/inspectionProfiles/Project_Default.xml"
57
- - ".idea/jekyll-tally-tags.iml"
58
- - ".idea/misc.xml"
59
- - ".idea/modules.xml"
60
- - ".idea/vcs.xml"
61
- - ".rubocop.yml"
62
- - CHANGELOG.md
63
- - CODE_OF_CONDUCT.md
64
- - Gemfile
65
- - Gemfile.lock
66
- - LICENSE.txt
67
- - README.md
68
- - Rakefile
69
- - bin/console
70
- - bin/setup
71
- - jekyll-tally-tags.gemspec
72
- - lib/jekyll-tally-tags/classify.rb
73
- - lib/jekyll-tally-tags/counter.rb
74
- - lib/jekyll-tally-tags/hooks_doc.rb
75
- - lib/jekyll-tally-tags/hooks_logs.rb
76
- - lib/jekyll-tally-tags/subject.rb
54
+ - lib/jekyll-tally-tags.rb
55
+ - lib/jekyll-tally-tags/docs_to_items.rb
56
+ - lib/jekyll-tally-tags/item.rb
57
+ - lib/jekyll-tally-tags/items_to_page.rb
58
+ - lib/jekyll-tally-tags/methods.rb
59
+ - lib/jekyll-tally-tags/pages/base_page.rb
60
+ - lib/jekyll-tally-tags/pages/day_page.rb
61
+ - lib/jekyll-tally-tags/pages/month_page.rb
62
+ - lib/jekyll-tally-tags/pages/multiple_page.rb
63
+ - lib/jekyll-tally-tags/pages/single_page.rb
64
+ - lib/jekyll-tally-tags/pages/week_page.rb
65
+ - lib/jekyll-tally-tags/pages/weeks_page.rb
66
+ - lib/jekyll-tally-tags/pages/year_page.rb
67
+ - lib/jekyll-tally-tags/utils.rb
77
68
  - lib/jekyll-tally-tags/version.rb
78
69
  homepage: https://github.com/danyow/jekyll-tally-tags
79
70
  licenses:
data/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
data/.idea/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- # 默认忽略的文件
2
- /shelf/
3
- /workspace.xml
4
- # 数据源本地存储已忽略文件
5
- /dataSources/
6
- /dataSources.local.xml
7
- # 基于编辑器的 HTTP 客户端请求
8
- /httpRequests/
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
5
- </profile>
6
- </component>
@@ -1,44 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
9
- <sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
10
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
11
- </content>
12
- <orderEntry type="inheritedJdk" />
13
- <orderEntry type="sourceFolder" forTests="false" />
14
- <orderEntry type="library" scope="PROVIDED" name="addressable (v2.8.0, ruby-3.0.2-p107) [gem]" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.23, ruby-3.0.2-p107) [gem]" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="colorator (v1.1.0, ruby-3.0.2-p107) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.9, ruby-3.0.2-p107) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="em-websocket (v0.5.2, ruby-3.0.2-p107) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="eventmachine (v1.2.7, ruby-3.0.2-p107) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.3, ruby-3.0.2-p107) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="forwardable-extended (v2.6.0, ruby-3.0.2-p107) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="http_parser.rb (v0.6.0, ruby-3.0.2-p107) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="i18n (v1.8.10, ruby-3.0.2-p107) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="jekyll (v4.2.0, ruby-3.0.2-p107) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="jekyll-sass-converter (v2.1.0, ruby-3.0.2-p107) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="jekyll-watch (v2.2.1, ruby-3.0.2-p107) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="kramdown (v2.3.1, ruby-3.0.2-p107) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="kramdown-parser-gfm (v1.1.0, ruby-3.0.2-p107) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="liquid (v4.0.3, ruby-3.0.2-p107) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="listen (v3.5.1, ruby-3.0.2-p107) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="mercenary (v0.4.0, ruby-3.0.2-p107) [gem]" level="application" />
32
- <orderEntry type="library" scope="PROVIDED" name="pathutil (v0.16.2, ruby-3.0.2-p107) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="public_suffix (v4.0.6, ruby-3.0.2-p107) [gem]" level="application" />
34
- <orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.0, ruby-3.0.2-p107) [gem]" level="application" />
35
- <orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, ruby-3.0.2-p107) [gem]" level="application" />
36
- <orderEntry type="library" scope="PROVIDED" name="rbs (v1.0.4, ruby-3.0.2-p107) [gem]" level="application" />
37
- <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, ruby-3.0.2-p107) [gem]" level="application" />
38
- <orderEntry type="library" scope="PROVIDED" name="rouge (v3.26.0, ruby-3.0.2-p107) [gem]" level="application" />
39
- <orderEntry type="library" scope="PROVIDED" name="safe_yaml (v1.0.5, ruby-3.0.2-p107) [gem]" level="application" />
40
- <orderEntry type="library" scope="PROVIDED" name="sassc (v2.4.0, ruby-3.0.2-p107) [gem]" level="application" />
41
- <orderEntry type="library" scope="PROVIDED" name="terminal-table (v2.0.0, ruby-3.0.2-p107) [gem]" level="application" />
42
- <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.7.0, ruby-3.0.2-p107) [gem]" level="application" />
43
- </component>
44
- </module>
data/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="ruby-3.0.2-p107" project-jdk-type="RUBY_SDK" />
4
- </project>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/jekyll-tally-tags.iml" filepath="$PROJECT_DIR$/.idea/jekyll-tally-tags.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
data/.rubocop.yml DELETED
@@ -1,13 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 2.4
3
-
4
- Style/StringLiterals:
5
- Enabled: true
6
- EnforcedStyle: double_quotes
7
-
8
- Style/StringLiteralsInInterpolation:
9
- Enabled: true
10
- EnforcedStyle: double_quotes
11
-
12
- Layout/LineLength:
13
- Max: 120
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2021-07-13
4
-
5
- - Initial release
data/CODE_OF_CONDUCT.md DELETED
@@ -1,84 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
-
7
- We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
-
9
- ## Our Standards
10
-
11
- Examples of behavior that contributes to a positive environment for our community include:
12
-
13
- * Demonstrating empathy and kindness toward other people
14
- * Being respectful of differing opinions, viewpoints, and experiences
15
- * Giving and gracefully accepting constructive feedback
16
- * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
- * Focusing on what is best not just for us as individuals, but for the overall community
18
-
19
- Examples of unacceptable behavior include:
20
-
21
- * The use of sexualized language or imagery, and sexual attention or
22
- advances of any kind
23
- * Trolling, insulting or derogatory comments, and personal or political attacks
24
- * Public or private harassment
25
- * Publishing others' private information, such as a physical or email
26
- address, without their explicit permission
27
- * Other conduct which could reasonably be considered inappropriate in a
28
- professional setting
29
-
30
- ## Enforcement Responsibilities
31
-
32
- Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
-
34
- Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
-
36
- ## Scope
37
-
38
- This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
-
40
- ## Enforcement
41
-
42
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at i.zuucol@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
-
44
- All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
-
46
- ## Enforcement Guidelines
47
-
48
- Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
-
50
- ### 1. Correction
51
-
52
- **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
-
54
- **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
-
56
- ### 2. Warning
57
-
58
- **Community Impact**: A violation through a single incident or series of actions.
59
-
60
- **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
-
62
- ### 3. Temporary Ban
63
-
64
- **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
-
66
- **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
-
68
- ### 4. Permanent Ban
69
-
70
- **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
-
72
- **Consequence**: A permanent ban from any sort of public interaction within the community.
73
-
74
- ## Attribution
75
-
76
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
- available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
-
79
- Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
-
81
- [homepage]: https://www.contributor-covenant.org
82
-
83
- For answers to common questions about this code of conduct, see the FAQ at
84
- https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile DELETED
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- # Specify your gem's dependencies in jekyll-tally-tags.gemspec
6
- gemspec
7
-
8
- if ENV["GH_PAGES"]
9
- gem "github-pages"
10
- elsif ENV["JEKYLL_VERSION"]
11
- gem "jekyll", ENV["JEKYLL_VERSION"]
12
- end
data/Gemfile.lock DELETED
@@ -1,74 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- jekyll-tally-tags (0.1.0)
5
- jekyll (>= 3.6, < 5.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.8.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- colorator (1.1.0)
13
- concurrent-ruby (1.1.9)
14
- em-websocket (0.5.2)
15
- eventmachine (>= 0.12.9)
16
- http_parser.rb (~> 0.6.0)
17
- eventmachine (1.2.7-x64-mingw32)
18
- ffi (1.15.3-x64-mingw32)
19
- forwardable-extended (2.6.0)
20
- http_parser.rb (0.6.0)
21
- i18n (1.8.10)
22
- concurrent-ruby (~> 1.0)
23
- jekyll (4.2.0)
24
- addressable (~> 2.4)
25
- colorator (~> 1.0)
26
- em-websocket (~> 0.5)
27
- i18n (~> 1.0)
28
- jekyll-sass-converter (~> 2.0)
29
- jekyll-watch (~> 2.0)
30
- kramdown (~> 2.3)
31
- kramdown-parser-gfm (~> 1.0)
32
- liquid (~> 4.0)
33
- mercenary (~> 0.4.0)
34
- pathutil (~> 0.9)
35
- rouge (~> 3.0)
36
- safe_yaml (~> 1.0)
37
- terminal-table (~> 2.0)
38
- jekyll-sass-converter (2.1.0)
39
- sassc (> 2.0.1, < 3.0)
40
- jekyll-watch (2.2.1)
41
- listen (~> 3.0)
42
- kramdown (2.3.1)
43
- rexml
44
- kramdown-parser-gfm (1.1.0)
45
- kramdown (~> 2.0)
46
- liquid (4.0.3)
47
- listen (3.5.1)
48
- rb-fsevent (~> 0.10, >= 0.10.3)
49
- rb-inotify (~> 0.9, >= 0.9.10)
50
- mercenary (0.4.0)
51
- pathutil (0.16.2)
52
- forwardable-extended (~> 2.6)
53
- public_suffix (4.0.6)
54
- rb-fsevent (0.11.0)
55
- rb-inotify (0.10.1)
56
- ffi (~> 1.0)
57
- rexml (3.2.5)
58
- rouge (3.26.0)
59
- safe_yaml (1.0.5)
60
- sassc (2.4.0-x64-mingw32)
61
- ffi (~> 1.9)
62
- terminal-table (2.0.0)
63
- unicode-display_width (~> 1.1, >= 1.1.1)
64
- unicode-display_width (1.7.0)
65
-
66
- PLATFORMS
67
- x64-mingw32
68
-
69
- DEPENDENCIES
70
- bundler
71
- jekyll-tally-tags!
72
-
73
- BUNDLED WITH
74
- 2.2.23