diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000000000000000000000000000000000000..29955274e0d42e164337c411ad9144e8ffd7e46e --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" diff --git a/jekyll-pandoc-multiple-formats.gemspec b/jekyll-pandoc-multiple-formats.gemspec new file mode 100644 index 0000000000000000000000000000000000000000..f911cd9e9e269c7e2de4f4b49a83d6d4f0b37a1d --- /dev/null +++ b/jekyll-pandoc-multiple-formats.gemspec @@ -0,0 +1,25 @@ +# encoding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'jekyll-pandoc-multiple-formats/version' + +Gem::Specification.new do |gem| + gem.name = "jekyll-pandoc-multiple-formats" + gem.version = JekyllPandoc::VERSION + gem.authors = ["Mauricio Pasquier Juan", "Nicolás Reynolds"] + gem.email = ["mauricio@pasquierjuan.com.ar", "fauno@endefensadelsl.org"] + gem.description = %q{This jekyll plugin was inspired by + jekyll-pandoc-plugin but it was changed to generate multiple outputs, + rather than just using pandoc to generate jekyll html posts. Besides, + it doesn't require the 'pandoc-ruby' gem.} + gem.summary = %q{Use pandoc on jekyll to generate posts in multiple formats} + gem.homepage = "https://github.com/fauno/jekyll-pandoc-multiple-formats" + gem.license = "MIT" + + gem.files = `git ls-files`.split($/) + gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } + gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) + gem.require_paths = ["lib"] + + gem.add_dependency('jekyll') +end diff --git a/pandoc.rb b/lib/jekyll-pandoc-multiple-formats.rb similarity index 100% rename from pandoc.rb rename to lib/jekyll-pandoc-multiple-formats.rb diff --git a/lib/jekyll-pandoc-multiple-formats/version.rb b/lib/jekyll-pandoc-multiple-formats/version.rb new file mode 100644 index 0000000000000000000000000000000000000000..aeee3ae062b1367a84505b91f406b7f18701047b --- /dev/null +++ b/lib/jekyll-pandoc-multiple-formats/version.rb @@ -0,0 +1,3 @@ +module JekyllPandoc + VERSION = "0.0.3" +end