Skip to content
Snippets Groups Projects
Commit 492b7a75 authored by Mauricio Pasquier Juan's avatar Mauricio Pasquier Juan
Browse files

Merge branch 'gema'

parents b2cb9d72 4bd46ee1
Branches
Tags v0.0.1
No related merge requests found
*.gem
*.rbc
.bundle
.config
.yardoc
Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
source 'https://rubygems.org'
gemspec
require "bundler/gem_tasks"
# 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
require 'jekyll-torrent/version'
# Creates a torrent file with your generated site. You should serve the files # Creates a torrent file with your generated site. You should serve the files
# with your cliente. # with your cliente.
# #
......
module JekyllTorrent
VERSION = "0.0.1"
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment