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 +4 -4
- data/README.md +84 -0
- data/bin/octopod +1 -1
- data/lib/jekyll/octopod/version.rb +1 -1
- metadata +3 -3
- data/README.rdoc +0 -56
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4143b4e5b9c764dac80ca6550cf93d6bbfcf3f8d
|
|
4
|
+
data.tar.gz: 935e7fe0f2634fc66870813688075f608e327012
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5b25715dbd71b6e86fcf1836f89790fc4d447e82b819dcf66002035a883aa2f06c001b3433267502ea90e9c3ff3a823a85e367d7d42755423d9e6e2ff7b0932
|
|
7
|
+
data.tar.gz: 48b33700cbc6e0d71660838b83f3c7950416aac6fa13a99efc20f7ff89f83289e1bad20265577eb457e5e0b3eb7fc3a7f81ccc6dd15235515c78f55ee04eea15
|
data/README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Jekyll - Octopod
|
|
2
|
+
|
|
3
|
+

|
|
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
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.
|
|
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.
|
|
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
|