jekyll-octopod 0.7.2 → 0.7.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4175f562666b92f0b53914960f52e64536e43327
4
- data.tar.gz: 1e8eda37e3262689520e954488a7b4fd7418029a
3
+ metadata.gz: 6ad2d278186515175fc6f3627e0e4881e64c4915
4
+ data.tar.gz: e228a85577fbe33079b18303b49bcff41188f7bc
5
5
  SHA512:
6
- metadata.gz: 17ac8501b8f9a7b410e6099ac19d1c6700d2f60e2930730929816c87da5f7ee27f4aed92b7baf0bdeadbf2dbc7a2513156a46ce4bf5b06dc56c687a79f3b74e6
7
- data.tar.gz: 56f72e20c9bae5477c56708e045f2be3cef0c5cb00648d8ae5f51d55993a6526fb38d9ea64716b9125e477e54423e0549aece4c5166425ef668815e240db9281
6
+ metadata.gz: 91cff4be67aca09a95184b56f8a6942dae14cd5ac3515accd8ede8ecfd9e6a87cb9d16f781f8e5274a006a2b14e60576468bb9ed8f9b96fbfe9aa7fb6cabf848
7
+ data.tar.gz: 722b6b48f0acd4e77c362d4853652a6f040a702e903960f03cf9223458601104e4853a6e8a513f193e8afd65c0c400c0c07a9bbec23e874adef3136e16e6c34b
@@ -23,6 +23,7 @@
23
23
  <script type='text/javascript' src="{{ site.url }}/assets/js/jquery.fs.selecter.min.js"></script>
24
24
  <script type='text/javascript' src="{{ site.url }}/assets/js/jquery.fs.stepper.min.js"></script>
25
25
  <script type='text/javascript' src="{{ site.url }}/assets/js/custom.js"></script>
26
+ <script type='text/javascript' src="{{ site.url }}/assets/js/MathJax.js"></script>
26
27
 
27
28
  {% if site.flattr_uid %}{% include flattr_loader.html %}{% endif %}
28
29
  {% if site.disqus_shortname %}
@@ -3,13 +3,10 @@ module Jekyll
3
3
 
4
4
  def octopod_exclude
5
5
  src = path.sub("#{@base}/", '')
6
- nested_files = %w[img/bigplay.psd readme.txt
7
- screenshot-1.png screenshot-2.png settings.php standalone.html
8
- libs/mediaelement/README.md]
9
- exclude_dirs = %w[]
6
+ nested_files = %w[]
10
7
 
11
- excludes = %w[ChangeLog Gemfile Gemfile.lock README.md octopod]
12
- return true if excludes.include?(src) || exclude_dirs.include?(File.dirname(src))
8
+ excludes = %w[Gemfile Gemfile.lock README.md octopod]
9
+ return true if excludes.include?(src))
13
10
  end
14
11
 
15
12
  alias_method :_octopod_original_write, :write
@@ -3,7 +3,7 @@ module Jekyll
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 7
6
- TINY = 2
6
+ TINY = 3
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  end
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.2
4
+ version: 0.7.3
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: 2016-12-08 00:00:00.000000000 Z
12
+ date: 2016-12-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -70,7 +70,6 @@ extra_rdoc_files: []
70
70
  files:
71
71
  - README.md
72
72
  - Rakefile
73
- - assets/_config.yml
74
73
  - assets/_config.yml.sample
75
74
  - assets/_includes/disqus_count.html
76
75
  - assets/_includes/disqus_thread.html
data/assets/_config.yml DELETED
@@ -1,47 +0,0 @@
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