jekyll-dewey-decimal 0.1.0
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.
- checksums.yaml +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +77 -0
- data/LICENSE.txt +21 -0
- data/README.md +62 -0
- data/_config.yml +12 -0
- data/_includes/footer.html +6 -0
- data/_includes/header.html +27 -0
- data/_includes/post-list.html +11 -0
- data/_layouts/default.html +24 -0
- data/_layouts/home.html +11 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +30 -0
- data/_posts/2023-10-12-file-1.md +8 -0
- data/_posts/2023-10-13-file-2.md +26 -0
- data/_site/2023/10/12/file-1.html +86 -0
- data/_site/2023/10/13/file-2.html +99 -0
- data/_site/LICENSE.txt +21 -0
- data/_site/README.md +62 -0
- data/_site/about.html +57 -0
- data/_site/assets/styles.css +127 -0
- data/_site/assets/syntax.css +199 -0
- data/_site/contact.html +57 -0
- data/_site/favicon.ico +0 -0
- data/_site/index.html +77 -0
- data/_site/jekyll-dewey-decimal.gemspec +16 -0
- data/_site/profile.png +0 -0
- data/_site/resume.pdf +0 -0
- data/_site/screenshot.png +0 -0
- data/about.md +4 -0
- data/assets/styles.css +127 -0
- data/assets/syntax.css +199 -0
- data/contact.md +4 -0
- data/favicon.ico +0 -0
- data/index.md +4 -0
- data/jekyll-dewey-decimal.gemspec +16 -0
- data/profile.png +0 -0
- data/resume.pdf +0 -0
- data/screenshot.png +0 -0
- metadata +95 -0
data/assets/syntax.css
ADDED
@@ -0,0 +1,199 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0;}
|
3
|
+
.highlight .gh {
|
4
|
+
color: #999999;
|
5
|
+
}
|
6
|
+
.highlight .sr {
|
7
|
+
color: #f6aa11;
|
8
|
+
}
|
9
|
+
.highlight .go {
|
10
|
+
color: #888888;
|
11
|
+
}
|
12
|
+
.highlight .gp {
|
13
|
+
color: #555555;
|
14
|
+
}
|
15
|
+
.highlight .gs {
|
16
|
+
}
|
17
|
+
|
18
|
+
.highlight .gu {
|
19
|
+
color: #aaaaaa;
|
20
|
+
}
|
21
|
+
.highlight .nb {
|
22
|
+
color: #f6aa11;
|
23
|
+
}
|
24
|
+
.highlight .cm {
|
25
|
+
color: #75715e;
|
26
|
+
}
|
27
|
+
.highlight .cp {
|
28
|
+
color: #75715e;
|
29
|
+
}
|
30
|
+
.highlight .c1 {
|
31
|
+
color: #75715e;
|
32
|
+
}
|
33
|
+
.highlight .cs {
|
34
|
+
color: #75715e;
|
35
|
+
}
|
36
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
37
|
+
color: #75715e;
|
38
|
+
}
|
39
|
+
.highlight .err {
|
40
|
+
color: #960050;
|
41
|
+
}
|
42
|
+
.highlight .gr {
|
43
|
+
color: #960050;
|
44
|
+
}
|
45
|
+
.highlight .gt {
|
46
|
+
color: #960050;
|
47
|
+
}
|
48
|
+
.highlight .gd {
|
49
|
+
color: #49483e;
|
50
|
+
}
|
51
|
+
.highlight .gi {
|
52
|
+
color: #49483e;
|
53
|
+
}
|
54
|
+
.highlight .ge {
|
55
|
+
color: #49483e;
|
56
|
+
}
|
57
|
+
.highlight .kc {
|
58
|
+
color: #66d9ef;
|
59
|
+
}
|
60
|
+
.highlight .kd {
|
61
|
+
color: #66d9ef;
|
62
|
+
}
|
63
|
+
.highlight .kr {
|
64
|
+
color: #66d9ef;
|
65
|
+
}
|
66
|
+
.highlight .no {
|
67
|
+
color: #66d9ef;
|
68
|
+
}
|
69
|
+
.highlight .kt {
|
70
|
+
color: #66d9ef;
|
71
|
+
}
|
72
|
+
.highlight .mf {
|
73
|
+
color: #ae81ff;
|
74
|
+
}
|
75
|
+
.highlight .mh {
|
76
|
+
color: #ae81ff;
|
77
|
+
}
|
78
|
+
.highlight .il {
|
79
|
+
color: #ae81ff;
|
80
|
+
}
|
81
|
+
.highlight .mi {
|
82
|
+
color: #ae81ff;
|
83
|
+
}
|
84
|
+
.highlight .mo {
|
85
|
+
color: #ae81ff;
|
86
|
+
}
|
87
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
88
|
+
color: #ae81ff;
|
89
|
+
}
|
90
|
+
.highlight .sc {
|
91
|
+
color: #ae81ff;
|
92
|
+
}
|
93
|
+
.highlight .se {
|
94
|
+
color: #ae81ff;
|
95
|
+
}
|
96
|
+
.highlight .ss {
|
97
|
+
color: #ae81ff;
|
98
|
+
}
|
99
|
+
.highlight .sd {
|
100
|
+
color: #e6db74;
|
101
|
+
}
|
102
|
+
.highlight .s2 {
|
103
|
+
color: #e6db74;
|
104
|
+
}
|
105
|
+
.highlight .sb {
|
106
|
+
color: #e6db74;
|
107
|
+
}
|
108
|
+
.highlight .sh {
|
109
|
+
color: #e6db74;
|
110
|
+
}
|
111
|
+
.highlight .si {
|
112
|
+
color: #e6db74;
|
113
|
+
}
|
114
|
+
.highlight .sx {
|
115
|
+
color: #e6db74;
|
116
|
+
}
|
117
|
+
.highlight .s1 {
|
118
|
+
color: #e6db74;
|
119
|
+
}
|
120
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
121
|
+
color: #e6db74;
|
122
|
+
}
|
123
|
+
.highlight .na {
|
124
|
+
color: #a6e22e;
|
125
|
+
}
|
126
|
+
.highlight .nc {
|
127
|
+
color: #a6e22e;
|
128
|
+
}
|
129
|
+
.highlight .nd {
|
130
|
+
color: #a6e22e;
|
131
|
+
}
|
132
|
+
.highlight .ne {
|
133
|
+
color: #a6e22e;
|
134
|
+
}
|
135
|
+
.highlight .nf, .highlight .fm {
|
136
|
+
color: #a6e22e;
|
137
|
+
}
|
138
|
+
.highlight .vc {
|
139
|
+
color: #ffffff;
|
140
|
+
background-color: #272822;
|
141
|
+
}
|
142
|
+
.highlight .nn {
|
143
|
+
color: #ffffff;
|
144
|
+
background-color: #272822;
|
145
|
+
}
|
146
|
+
.highlight .nl {
|
147
|
+
color: #ffffff;
|
148
|
+
background-color: #272822;
|
149
|
+
}
|
150
|
+
.highlight .ni {
|
151
|
+
color: #ffffff;
|
152
|
+
background-color: #272822;
|
153
|
+
}
|
154
|
+
.highlight .bp {
|
155
|
+
color: #ffffff;
|
156
|
+
background-color: #272822;
|
157
|
+
}
|
158
|
+
.highlight .vg {
|
159
|
+
color: #ffffff;
|
160
|
+
background-color: #272822;
|
161
|
+
}
|
162
|
+
.highlight .vi {
|
163
|
+
color: #ffffff;
|
164
|
+
background-color: #272822;
|
165
|
+
}
|
166
|
+
.highlight .nv, .highlight .vm {
|
167
|
+
color: #ffffff;
|
168
|
+
background-color: #272822;
|
169
|
+
}
|
170
|
+
.highlight .w {
|
171
|
+
color: #ffffff;
|
172
|
+
background-color: #272822;
|
173
|
+
}
|
174
|
+
.highlight {
|
175
|
+
color: #ffffff;
|
176
|
+
background-color: #272822;
|
177
|
+
}
|
178
|
+
.highlight .n, .highlight .py, .highlight .nx {
|
179
|
+
color: #ffffff;
|
180
|
+
background-color: #272822;
|
181
|
+
}
|
182
|
+
.highlight .ow {
|
183
|
+
color: #f92672;
|
184
|
+
}
|
185
|
+
.highlight .nt {
|
186
|
+
color: #f92672;
|
187
|
+
}
|
188
|
+
.highlight .k, .highlight .kv {
|
189
|
+
color: #f92672;
|
190
|
+
}
|
191
|
+
.highlight .kn {
|
192
|
+
color: #f92672;
|
193
|
+
}
|
194
|
+
.highlight .kp {
|
195
|
+
color: #f92672;
|
196
|
+
}
|
197
|
+
.highlight .o {
|
198
|
+
color: #f92672;
|
199
|
+
}
|
data/contact.md
ADDED
data/favicon.ico
ADDED
Binary file
|
data/index.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "jekyll-dewey-decimal"
|
5
|
+
spec.version = "0.1.0"
|
6
|
+
spec.authors = ["Revati Tambe"]
|
7
|
+
spec.email = ["109561627+djarty24@users.noreply.github.com"]
|
8
|
+
|
9
|
+
spec.summary = "A content-first, minimal personal weblog and portfolio."
|
10
|
+
spec.homepage = "https://github.com/djarty24/jekyll-dewey-decimal"
|
11
|
+
spec.license = "MIT"
|
12
|
+
|
13
|
+
spec.files = Dir["**/*"]
|
14
|
+
|
15
|
+
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
16
|
+
end
|
data/profile.png
ADDED
Binary file
|
data/resume.pdf
ADDED
Binary file
|
data/screenshot.png
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-dewey-decimal
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Revati Tambe
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-12-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.3'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- 109561627+djarty24@users.noreply.github.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- Gemfile
|
35
|
+
- Gemfile.lock
|
36
|
+
- LICENSE.txt
|
37
|
+
- README.md
|
38
|
+
- _config.yml
|
39
|
+
- _includes/footer.html
|
40
|
+
- _includes/header.html
|
41
|
+
- _includes/post-list.html
|
42
|
+
- _layouts/default.html
|
43
|
+
- _layouts/home.html
|
44
|
+
- _layouts/page.html
|
45
|
+
- _layouts/post.html
|
46
|
+
- _posts/2023-10-12-file-1.md
|
47
|
+
- _posts/2023-10-13-file-2.md
|
48
|
+
- _site/2023/10/12/file-1.html
|
49
|
+
- _site/2023/10/13/file-2.html
|
50
|
+
- _site/LICENSE.txt
|
51
|
+
- _site/README.md
|
52
|
+
- _site/about.html
|
53
|
+
- _site/assets/styles.css
|
54
|
+
- _site/assets/syntax.css
|
55
|
+
- _site/contact.html
|
56
|
+
- _site/favicon.ico
|
57
|
+
- _site/index.html
|
58
|
+
- _site/jekyll-dewey-decimal.gemspec
|
59
|
+
- _site/profile.png
|
60
|
+
- _site/resume.pdf
|
61
|
+
- _site/screenshot.png
|
62
|
+
- about.md
|
63
|
+
- assets/styles.css
|
64
|
+
- assets/syntax.css
|
65
|
+
- contact.md
|
66
|
+
- favicon.ico
|
67
|
+
- index.md
|
68
|
+
- jekyll-dewey-decimal.gemspec
|
69
|
+
- profile.png
|
70
|
+
- resume.pdf
|
71
|
+
- screenshot.png
|
72
|
+
homepage: https://github.com/djarty24/jekyll-dewey-decimal
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubygems_version: 3.3.26
|
92
|
+
signing_key:
|
93
|
+
specification_version: 4
|
94
|
+
summary: A content-first, minimal personal weblog and portfolio.
|
95
|
+
test_files: []
|