jekyll-octopod 0.2.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43b02c09d5031f84ac5bf63449f516169a90a1b7
4
- data.tar.gz: 3040b8706f3214479476516e90f60fbd46b1832b
3
+ metadata.gz: 4143b4e5b9c764dac80ca6550cf93d6bbfcf3f8d
4
+ data.tar.gz: 935e7fe0f2634fc66870813688075f608e327012
5
5
  SHA512:
6
- metadata.gz: aa90cd3b533527b3b373097af3a7b7aa53a662288f4a761ae4c08ddf5698d606cd761b41704218b203f8c983cbcbd7ced45bb74d0a4ff76559f65117edb4b816
7
- data.tar.gz: 56d1217779413bfbb40ea2e8d78d32edcaf9e48ed5c3fb25088a8bb417e2f3dfe48ef6bc83ee2c05bd401db00bf66cb8fe35b925893ee0d9b62f9eec205e8a95
6
+ metadata.gz: f5b25715dbd71b6e86fcf1836f89790fc4d447e82b819dcf66002035a883aa2f06c001b3433267502ea90e9c3ff3a823a85e367d7d42755423d9e6e2ff7b0932
7
+ data.tar.gz: 48b33700cbc6e0d71660838b83f3c7950416aac6fa13a99efc20f7ff89f83289e1bad20265577eb457e5e0b3eb7fc3a7f81ccc6dd15235515c78f55ee04eea15
data/README.md ADDED
@@ -0,0 +1,84 @@
1
+ # Jekyll - Octopod
2
+
3
+ ![alt tag](assets/img/logo.jpg)
4
+
5
+ A Podcasting publishing extension for the static site generator [Jekyll](https://jekyllrb.com/).
6
+
7
+ ## Prerequesites
8
+
9
+ The programming language Ruby and it's package manager Bundler.
10
+
11
+ Nice installation guides for the different operating systems can be found at
12
+ the [Rails Girls Website](http://guides.railsgirls.com/install). You can stop
13
+ right before installing Rails, because we do not depend on Ruby on Rails here.
14
+
15
+ You can check, if you succeeded, by entering
16
+ ```
17
+ $ ruby -v
18
+ $ gem -v
19
+ ```
20
+ at the command prompt. Both commands should return version greater or equal 2.0 .
21
+
22
+ ## Installation
23
+
24
+ ```
25
+ $ gem install jekyll
26
+ $ jekyll new name-of-my-podcast
27
+ $ cd name-of-my-podcast
28
+ ```
29
+
30
+ Create file Gemfile with the contents:
31
+
32
+ ```
33
+ source 'http://rubygems.org'
34
+ gem 'jekyll-octopod'
35
+ ```
36
+
37
+ Install the dependencies and run the setup script via:
38
+
39
+ ```
40
+ $ bundle install
41
+ $ octopod setup
42
+ ```
43
+
44
+ Update the configuration settings in the configation file `_config.yaml` in the
45
+ application directory.
46
+
47
+ * You might want to change the images and logos in ...
48
+ * You might want to delete the demo episode files
49
+
50
+
51
+ ## Usage
52
+
53
+
54
+ ## Contributions
55
+
56
+ are welcome!
57
+
58
+ ## Maintainer
59
+
60
+ Stefan Haslinger <mailto:stefan.haslinger@informatom.com>
61
+
62
+
63
+ ## Credits
64
+
65
+ This Gem is sitting on the shoulder of giants, lots of the code was not written
66
+ by me and/or depends on other code.
67
+
68
+ Especially to be mentioned: Arne Eilermann eilermann@lavabit.com who started and
69
+ created Octopod https://github.com/pattex/octopod
70
+
71
+ ## License
72
+
73
+ [Licensend under the MIT-License](LICENSE)
74
+
75
+ The following assets from seperate projects are packaged in this repo:
76
+ * The cute Octopod Logo is by Thekla "TeMeL" Löhr, http://www.temel-art.de/, CC BY 3.0 Germany License
77
+ * Podlove Webplayer, version 3.0.0-beta.3, http://podlove.org/podlove-web-player/, BSD 2-Clause License
78
+ * Bootflat, version 2.0.4, http://bootflat.github.io/, MIT License
79
+ * Bootstrap, version 3.3.0 http://getbootstrap.com/, MIT License
80
+ * Glyphicons, http://glyphicons.com/, are licensed via Bootstrap
81
+ * Font Awesome, version 4.5.0, http://fontawesome.io/, Font: SIL OFL 1.1, CSS: MIT License
82
+ * iCheck, version 1.0.1, http://git.io/arlzeA, MIT License
83
+ * JQuery, version 1.11.3., https://jquery.com/, MIT License
84
+ * Demo Audio from Bensound, http://www.bensound.com/royalty-free-music, CC BY-ND 3.0 License
data/bin/octopod CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require "byebug"
2
+ # require "byebug"
3
3
  PWD = Dir.pwd
4
4
  GEM_DIR = Gem::Specification.find_by_name("jekyll-octopod").gem_dir
5
5
 
@@ -2,7 +2,7 @@ module Jekyll
2
2
  class Octopod
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
- MINOR = 2
5
+ MINOR = 3
6
6
  TINY = 0
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
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.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Eilermann
@@ -48,12 +48,12 @@ executables:
48
48
  extensions: []
49
49
  extra_rdoc_files: []
50
50
  files:
51
- - README.rdoc
51
+ - README.md
52
52
  - Rakefile
53
53
  - bin/octopod
54
54
  - lib/jekyll/octopod/version.rb
55
55
  - lib/octopod.rb
56
- homepage: https://github.com/haslinger/jekyll-
56
+ homepage: https://github.com/haslinger/jekyll-octopod
57
57
  licenses:
58
58
  - MIT
59
59
  metadata: {}
data/README.rdoc DELETED
@@ -1,56 +0,0 @@
1
- = Jekyll - Octopod
2
-
3
- Podcasting publishing extension for Jekyll
4
-
5
- == Installation
6
-
7
- $ gem install jekyll
8
- $ jekyll new name-of-my-podcast
9
- $ cd name-of-my-podcast
10
-
11
- Create file Gemfile with the contents:
12
-
13
- source 'http://rubygems.org'
14
- gem 'jekyll-octopod'
15
-
16
- Install the dependencies and run the setup script via:
17
-
18
- $ bundle install
19
- $ octopod setup
20
-
21
-
22
- == Usage
23
-
24
- FIXME! Confiruration File.
25
- FIXME! You might want to change the images and logos in ...
26
- FIXME! You might want to delete the demo episode files
27
-
28
- == Contributions
29
-
30
- are welcomed!
31
-
32
- == Author
33
-
34
- Stefan Haslinger <mailto:stefan.haslinger@informatom.com>
35
-
36
- Based on octopod by Arne Eilermann <mailto: arne@kleinerdrei.org>
37
-
38
-
39
- == Credits
40
-
41
- This Gem is sitting on the shoulder of giants, lots of the code was not written by me and/or depends on other code.
42
-
43
- Especially to be mentioned: Arne Eilermann eilermann@lavabit.com from Octopod https://github.com/pattex/octopod
44
-
45
- == License
46
-
47
- Missing: Link to MIT -License
48
-
49
- * Glyphicons
50
- * Font Awesome
51
- * Podlove Webplayer
52
- * Bootflat
53
- * Bootstrap
54
- * iCheck v1.0.1 by Damir Sultanov, http://git.io/arlzeA, MIT License
55
- * JQuery
56
- * Demo Audio