jekyll-octopod 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 397d681111c05a14e5b0efb6229f937c03c845b5
4
+ data.tar.gz: f522a27e931755627a0435b494c3df6eb62067d2
5
+ SHA512:
6
+ metadata.gz: 885248f53c8a38a055810ae2bee83c11345236cc4c22f1a94550dc391e23221f789ddab7d48b21051794fb090e2663ff55c105883e8842d48831e13b1e6dad90
7
+ data.tar.gz: 7972fece845fd30b6813038af6a6c15adf04fa04ea3303c25b02ab218174446bca00a80862b8d02cfff955b51307f1d8bf4a8054bf00748bb67c805979da272f
data/README.rdoc ADDED
@@ -0,0 +1,35 @@
1
+ = Jekyll - Octopod
2
+
3
+ Podcasting publishing extension for Jekyll
4
+
5
+ == Installation
6
+
7
+ $ gem install jekyll-octopod
8
+
9
+ == Usage
10
+
11
+ missing
12
+
13
+ == Contributions
14
+
15
+ are welcomed!
16
+
17
+ == Author
18
+
19
+ Stefan Haslinger <mailto:stefan.haslinger@informatom.com>
20
+
21
+
22
+ == Credits
23
+
24
+ This Gem is sitting on the shoulder of giants, lots of the code was not written by me and/or depends on other code.
25
+ Especially to be mentioned: Arne Eilermann eilermann@lavabit.com from Octopod https://github.com/pattex/octopod
26
+
27
+ == License
28
+
29
+ The MIT License
30
+
31
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
32
+
33
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
34
+
35
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require 'rake/testtask'
2
+
3
+ task :default => [:test]
4
+
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << '.'
7
+ t.pattern = 'test/all.rb'
8
+ t.verbose = true
9
+ end
10
+ Rake::Task['test'].comment = "Run all tests"
@@ -0,0 +1,11 @@
1
+ module Jekyll
2
+ class Octopod
3
+ module VERSION #:nodoc:
4
+ MAJOR = 0
5
+ MINOR = 1
6
+ TINY = 0
7
+
8
+ STRING = [MAJOR, MINOR, TINY].join('.')
9
+ end
10
+ end
11
+ end
data/lib/octopod.rb ADDED
@@ -0,0 +1 @@
1
+ require "octopod/version"
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-octopod
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Stefan Haslinger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-05-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.9'
27
+ description: Enables you to publish your podcast using the Jekyll static site generator,
28
+ creating feeds and a reasonably looking website
29
+ email:
30
+ - stefan.haslinger@informatom.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - README.rdoc
36
+ - Rakefile
37
+ - lib/jekyll/octopod/version.rb
38
+ - lib/octopod.rb
39
+ homepage: https://github.com/haslinger/jekyll-
40
+ licenses:
41
+ - MIT
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project: jekyll-
59
+ rubygems_version: 2.6.4
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Podcasting Publishing Extension for Jekyll
63
+ test_files: []
64
+ has_rdoc: