Sha256: 599324905da6258a683f94cfac45548aa3b7eb774ac2312871caa2fd75210535
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 $LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__)) require 'nanoc' Gem::Specification.new do |s| s.name = 'nanoc' s.version = Nanoc::VERSION s.homepage = 'http://nanoc.stoneship.org/' s.summary = 'a web publishing system written in Ruby for building small to medium-sized websites.' s.description = 'nanoc is a simple but very flexible static site generator written in Ruby. It operates on local files, and therefore does not run on the server. nanoc “compiles” the local source files into HTML (usually), by evaluating eRuby, Markdown, etc.' s.author = 'Denis Defreyne' s.email = 'denis.defreyne@stoneship.org' s.files = Dir['[A-Z]*'] + Dir['doc/yardoc_templates/**/*'] + Dir['{bin,lib,tasks,test}/**/*'] + [ 'nanoc.gemspec' ] s.executables = [ 'nanoc' ] s.require_paths = [ 'lib' ] s.rdoc_options = [ '--main', 'README.md' ] s.extra_rdoc_files = [ 'ChangeLog', 'LICENSE', 'README.md', 'NEWS.md' ] s.add_runtime_dependency('cri', '~> 2.2') s.add_development_dependency('minitest') s.add_development_dependency('mocha') s.add_development_dependency('rake') s.add_development_dependency('rdiscount') s.add_development_dependency('yard') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
nanoc-3.5.0 | nanoc.gemspec |
nanoc-3.5.0b2 | nanoc.gemspec |
nanoc-3.5.0b1 | nanoc.gemspec |
nanoc-3.4.3 | nanoc.gemspec |