-
- Downloads
Merge branch 'gema'
Showing
- .gitignore 17 additions, 0 deletions.gitignore
- Gemfile 3 additions, 0 deletionsGemfile
- Rakefile 1 addition, 0 deletionsRakefile
- jekyll-torrent.gemspec 23 additions, 0 deletionsjekyll-torrent.gemspec
- lib/jekyll-torrent.rb 3 additions, 1 deletionlib/jekyll-torrent.rb
- lib/jekyll-torrent/version.rb 3 additions, 0 deletionslib/jekyll-torrent/version.rb
.gitignore
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | |||
gemspec |
Rakefile
0 → 100644
jekyll-torrent.gemspec
0 → 100644
# encoding: utf-8 | |||
lib = File.expand_path('../lib', __FILE__) | |||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |||
require 'jekyll-torrent/version' | |||
Gem::Specification.new do |gem| | |||
gem.name = "jekyll-torrent" | |||
gem.version = JekyllTorrent::VERSION | |||
gem.authors = ["Mauricio Pasquier Juan"] | |||
gem.email = ["mauricio@pasquierjuan.com.ar"] | |||
gem.description = %q{A simple plugin that creates a .torrent file with your | |||
whole site after it's generated by jekyll. It | |||
monkeypatches `Jekyll::Site.process`.} | |||
gem.summary = %q{Create a .torrent file with your whole site!} | |||
gem.homepage = "https://github.com/mauriciopasquier/jekyll-torrent" | |||
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 |
lib/jekyll-torrent/version.rb
0 → 100644
Please register or sign in to comment