Skip to content
This repository was archived by the owner on Aug 28, 2019. It is now read-only.

Commit 3c8ac27

Browse files
committed
Merge branch 'hotfix/1.3.0'
2 parents 90d2787 + 07f637c commit 3c8ac27

File tree

4 files changed

+53
-96
lines changed

4 files changed

+53
-96
lines changed

Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Skinny Bones Gemfile
22
source "https://rubygems.org"
33

4-
gem "jekyll", "~> 3.0"
4+
gem "jekyll"
55
gem "jekyll-sitemap"
66
gem "jekyll-gist"
7-
gem "octopress", "~> 3.0"
7+
gem "jekyll-feed"

Gemfile.lock

+21-34
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.3.8)
4+
addressable (2.4.0)
55
colorator (0.1)
66
faraday (0.9.2)
77
multipart-post (>= 1.2, < 3)
88
ffi (1.9.10)
9-
jekyll (3.1.1)
9+
ffi (1.9.10-x64-mingw32)
10+
jekyll (3.1.6)
1011
colorator (~> 0.1)
1112
jekyll-sass-converter (~> 1.0)
1213
jekyll-watch (~> 1.1)
@@ -15,56 +16,42 @@ GEM
1516
mercenary (~> 0.3.3)
1617
rouge (~> 1.7)
1718
safe_yaml (~> 1.0)
19+
jekyll-feed (0.5.1)
1820
jekyll-gist (1.4.0)
1921
octokit (~> 4.2)
2022
jekyll-sass-converter (1.4.0)
2123
sass (~> 3.4)
2224
jekyll-sitemap (0.10.0)
23-
jekyll-watch (1.3.1)
24-
listen (~> 3.0)
25-
kramdown (1.9.0)
25+
jekyll-watch (1.4.0)
26+
listen (~> 3.0, < 3.1)
27+
kramdown (1.11.1)
2628
liquid (3.0.6)
27-
listen (3.0.5)
28-
rb-fsevent (>= 0.9.3)
29-
rb-inotify (>= 0.9)
30-
mercenary (0.3.5)
29+
listen (3.0.8)
30+
rb-fsevent (~> 0.9, >= 0.9.4)
31+
rb-inotify (~> 0.9, >= 0.9.7)
32+
mercenary (0.3.6)
3133
multipart-post (2.0.0)
32-
octokit (4.2.0)
33-
sawyer (~> 0.6.0, >= 0.5.3)
34-
octopress (3.0.11)
35-
jekyll (>= 2.0)
36-
mercenary (~> 0.3.2)
37-
octopress-deploy
38-
octopress-escape-code (~> 2.0)
39-
octopress-hooks (~> 2.0)
40-
redcarpet (~> 3.0)
41-
titlecase
42-
octopress-deploy (1.3.0)
43-
colorator
44-
octopress-escape-code (2.1.1)
45-
jekyll (~> 3.0)
46-
octopress-hooks (2.6.1)
47-
jekyll (>= 2.0)
34+
octokit (4.3.0)
35+
sawyer (~> 0.7.0, >= 0.5.3)
4836
rb-fsevent (0.9.7)
49-
rb-inotify (0.9.5)
37+
rb-inotify (0.9.7)
5038
ffi (>= 0.5.0)
51-
redcarpet (3.3.4)
5239
rouge (1.10.1)
5340
safe_yaml (1.0.4)
54-
sass (3.4.21)
55-
sawyer (0.6.0)
56-
addressable (~> 2.3.5)
41+
sass (3.4.22)
42+
sawyer (0.7.0)
43+
addressable (>= 2.3.5, < 2.5)
5744
faraday (~> 0.8, < 0.10)
58-
titlecase (0.1.1)
5945

6046
PLATFORMS
6147
ruby
48+
x64-mingw32
6249

6350
DEPENDENCIES
64-
jekyll (~> 3.0)
51+
jekyll
52+
jekyll-feed
6553
jekyll-gist
6654
jekyll-sitemap
67-
octopress (~> 3.0)
6855

6956
BUNDLED WITH
70-
1.11.2
57+
1.12.5

_config.yml

+30-17
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Site wide configuration
22

3-
title:
4-
description:
3+
title: "My Site"
4+
description: "This is a description of my awesome site."
55
logo: # 120x120 px default image used for Twitter summary card
66
teaser: # 400x250 px default teaser image used in image archive grid
77
locale: en
88
url:
9+
feed:
10+
path: atom.xml
911

1012
# Jekyll configuration
1113

@@ -19,20 +21,7 @@ highlighter: rouge
1921
gems:
2022
- jekyll-sitemap
2123
- jekyll-gist
22-
23-
24-
# Octopress configuration
25-
26-
# Default extensions
27-
post_ext: md
28-
page_ext: md
29-
30-
# Found in _templates/
31-
post_layout: article
32-
page_layout: article
33-
34-
# Format titles with titlecase?
35-
titlecase: true
24+
- jekyll-feed
3625

3726

3827
# Site owner
@@ -48,4 +37,28 @@ owner:
4837
disqus-shortname:
4938

5039

51-
exclude: ["lib", "config.rb", ".sass-cache", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "*.sublime-project", "*.sublime-workspace", "Gemfile", "Gemfile.lock", "README.md", "LICENSE", "node_modules", "Gruntfile.js", "package.json"]
40+
include:
41+
- .htaccess
42+
exclude:
43+
- "*.less"
44+
- "*.sublime-project"
45+
- "*.sublime-workspace"
46+
- .asset-cache
47+
- .bundle
48+
- .jekyll-assets-cache
49+
- .sass-cache
50+
- CHANGELOG
51+
- Capfile
52+
- Gemfile
53+
- Gruntfile.js
54+
- LICENSE
55+
- README
56+
- Rakefile
57+
- config
58+
- gulpfile.js
59+
- lib
60+
- log
61+
- node_modules
62+
- package.json
63+
- spec
64+
- tmp

atom.xml

-43
This file was deleted.

0 commit comments

Comments
 (0)