type-on-strap 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type-on-strap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylhare
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-27 00:00:00.000000000 Z
12
+ date: 2019-09-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -31,6 +31,20 @@ dependencies:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 3.8.5
34
+ - !ruby/object:Gem::Dependency
35
+ name: jekyll-feed
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.9'
41
+ type: :runtime
42
+ prerelease: false
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
34
48
  - !ruby/object:Gem::Dependency
35
49
  name: jekyll-paginate
36
50
  requirement: !ruby/object:Gem::Requirement
@@ -102,18 +116,20 @@ files:
102
116
  - _includes/post_info.html
103
117
  - _includes/post_nav.html
104
118
  - _includes/share_buttons.html
119
+ - _includes/share_thumbnail.html
105
120
  - _includes/tags_list.html
106
121
  - _layouts/custom.html
107
122
  - _layouts/default.html
108
- - _layouts/feed.xml
109
123
  - _layouts/home.html
110
124
  - _layouts/page.html
111
125
  - _layouts/post.html
112
126
  - _layouts/search.html
113
127
  - _layouts/tags.html
128
+ - _sass/.DS_Store
114
129
  - _sass/base/_global.scss
115
130
  - _sass/base/_utility.scss
116
131
  - _sass/base/_variables.scss
132
+ - _sass/external/.DS_Store
117
133
  - _sass/external/_font-awesome.scss
118
134
  - _sass/external/_katex.scss
119
135
  - _sass/external/_pacifico.scss
@@ -147,12 +163,14 @@ files:
147
163
  - _sass/layouts/_search.scss
148
164
  - _sass/layouts/_tags.scss
149
165
  - _sass/type-on-strap.scss
166
+ - assets/css/.DS_Store
150
167
  - assets/css/bootstrap-iso.less
151
168
  - assets/css/main.scss
152
169
  - assets/css/vendor/bootstrap-iso.css
153
170
  - assets/css/vendor/bootstrap-iso.min.css
154
171
  - assets/css/vendor/bootstrap.css
155
172
  - assets/data/search.json
173
+ - assets/fonts/.DS_Store
156
174
  - assets/fonts/Pacifico/Pacifico.eot
157
175
  - assets/fonts/Pacifico/Pacifico.svg
158
176
  - assets/fonts/Pacifico/Pacifico.ttf
@@ -276,8 +294,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
276
294
  - !ruby/object:Gem::Version
277
295
  version: '0'
278
296
  requirements: []
279
- rubyforge_project:
280
- rubygems_version: 2.7.7
297
+ rubygems_version: 3.0.4
281
298
  signing_key:
282
299
  specification_version: 4
283
300
  summary: A simple and responsive jekyll theme template
data/_layouts/feed.xml DELETED
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <rss version="2.0"
3
- xmlns:atom="http://www.w3.org/2005/Atom"
4
- xmlns:webfeeds="http://webfeeds.org/rss/1.0">
5
- <channel>
6
- <title>{{ site.title | xml_escape }}</title>
7
- <atom:link href="{{ "/feed.xml" | absolute_url }}" rel="self" type="application/rss+xml"/>
8
- <link>{{ "/" | absolute_url }}</link>
9
- <description>{{ site.description | xml_escape }}</description>
10
- <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
11
- <webfeeds:icon>{{ site.theme_settings.avatar | absolute_url }}</webfeeds:icon>
12
- {% for post in site.posts limit:15 %}
13
- <item>
14
- {% if post.thumbnail %}
15
- <enclosure length="1" type="image" url="{{ post.thumbnail | absolute_url }}"/>
16
- {% endif %}
17
- <title>{{ post.title | xml_escape }}</title>
18
- <link>{{ post.url | absolute_url }}</link>
19
- <guid isPermaLink="false">{{ post.url | relative_url }}</guid>
20
- <description>{{ post.content | xml_escape }}</description>
21
- <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
22
- </item>
23
- {% endfor %}
24
- </channel>
25
- </rss>