jekyll-octopod 0.7.4 → 0.7.5
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 +4 -4
- data/assets/_config.yml +47 -0
- data/assets/_posts/2016-03-22-episode0.md +2 -2
- data/assets/episodes/episode0.m4a +0 -0
- data/assets/episodes/episode0.mp3 +0 -0
- data/assets/episodes/episode0.ogg +0 -0
- data/bin/octopod +5 -2
- data/lib/octopod/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 834bf8142adcc3f127bb22a2a51b520ef3a0ca10
|
|
4
|
+
data.tar.gz: 47827ec21e7365005e0d845d1afe86f6a99b89cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c227861c30cbed1f4144a390d25176296abddec2915a95c62165f27473b1bd32935a3797ee622f02973e99bca7edbe187234c2c625942141f924c820744eae27
|
|
7
|
+
data.tar.gz: abf9080e67c4e6c752d70ab6cf0026a174e623b6a91283bba7ec77f2801700418927bca437c6929d294d9c34f4e02d77869135f15e193e77e60cbee7a26703a9
|
data/assets/_config.yml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# You have to configure this ###################################################
|
|
2
|
+
title: Octopod
|
|
3
|
+
# You should configure this ####################################################
|
|
4
|
+
url: http://localhost:4000
|
|
5
|
+
subtitle: Static Site Podcast Publishing for Geeks
|
|
6
|
+
description: My super duper cool podcast.
|
|
7
|
+
author: Uncle Octopod
|
|
8
|
+
email: octopod@example.com
|
|
9
|
+
keywords: [octopod, podcast, magic]
|
|
10
|
+
itunes_categories: [Technology]
|
|
11
|
+
# additional_feeds:
|
|
12
|
+
# itunes: http://itunes.apple.com/de/podcast/podcast_name/id42424242
|
|
13
|
+
# torrent_m4a: http://bitlove.org/example_user/example_podcast_m4a/feed
|
|
14
|
+
# torrent_mp3: http://bitlove.org/example_user/example_podcast_mp3/feed
|
|
15
|
+
episodes_per_feed_page: 100
|
|
16
|
+
## Rsync Deploy config #########################################################
|
|
17
|
+
### Be sure your public key is listed in your server's ~/.ssh/authorized_keys
|
|
18
|
+
### file.
|
|
19
|
+
ssh_host: user@host.org
|
|
20
|
+
ssh_port: 22
|
|
21
|
+
document_root: /path/to/your/htdocs/
|
|
22
|
+
rsync_delete: true
|
|
23
|
+
# You can configure this #######################################################
|
|
24
|
+
twitter_nick: my_twitter_handle
|
|
25
|
+
language: en
|
|
26
|
+
explicit: 'no' # 'yes'/'no'/clean
|
|
27
|
+
license: CC BY 4.0
|
|
28
|
+
license_url: https://creativecommons.org/licenses/by/4.0/
|
|
29
|
+
license_image_url: https://i.creativecommons.org/l/by/4.0/88x31.png
|
|
30
|
+
## Flattr ######################################################################
|
|
31
|
+
flattr_uid: # Flattr will not be used unless this is set
|
|
32
|
+
flattr_button: compact # compact | default
|
|
33
|
+
flattr_mode: auto # auto | manual(default)
|
|
34
|
+
flattr_popout: 1 # 1 | 0 (show popout when hovering mouse over button)
|
|
35
|
+
flattr_language: en_GB # available languages - https://api.flattr.com/rest/v2/languages.txt
|
|
36
|
+
flattr_category: audio # available categories - https://api.flattr.com/rest/v2/categories.txt
|
|
37
|
+
## Disqus comments #############################################################
|
|
38
|
+
disqus_shortname: # Disqus will not be used unless this is set
|
|
39
|
+
disqus_developer: 0 # 1 / 0
|
|
40
|
+
## Feed links ###########################################################
|
|
41
|
+
itunes_url: https://itunes.apple.com/at/podcast/myname/id#myid#
|
|
42
|
+
bitlove_url: https://bitlove.org/myaccount
|
|
43
|
+
fyyd_url: https://fyyd.de/podcast/myaccount/myid
|
|
44
|
+
gpodder_url: https://gpodder.net/podcast/mypodcast
|
|
45
|
+
|
|
46
|
+
gems: [jekyll-octopod]
|
|
47
|
+
theme: jekyll-bootflat
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/bin/octopod
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# require "byebug"
|
|
3
3
|
PWD = Dir.pwd
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
|
|
5
|
+
GEM_DIR = Gem::Specification.find_by_name("jekyll-octopod").gem_dir
|
|
6
|
+
# HAS20170501 disgusting hack for development
|
|
7
|
+
# GEM_DIR = "/home/user/jekyll/jekyll-octopod/"
|
|
8
|
+
|
|
6
9
|
|
|
7
10
|
require 'rubygems'
|
|
8
11
|
require 'optparse'
|
data/lib/octopod/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-octopod
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arne Eilermann
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-01-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -70,6 +70,7 @@ extra_rdoc_files: []
|
|
|
70
70
|
files:
|
|
71
71
|
- README.md
|
|
72
72
|
- Rakefile
|
|
73
|
+
- assets/_config.yml
|
|
73
74
|
- assets/_config.yml.sample
|
|
74
75
|
- assets/_includes/disqus_count.html
|
|
75
76
|
- assets/_includes/disqus_thread.html
|
|
@@ -158,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
159
|
version: '0'
|
|
159
160
|
requirements: []
|
|
160
161
|
rubyforge_project: jekyll-
|
|
161
|
-
rubygems_version: 2.5.
|
|
162
|
+
rubygems_version: 2.5.2
|
|
162
163
|
signing_key:
|
|
163
164
|
specification_version: 4
|
|
164
165
|
summary: Podcasting Publishing Extension for Jekyll
|