Sha256: b52f061a8f6966af75186537e1270c0b1871825a6e99a6711bac2294b3028cea
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
# encoding: utf-8 $LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__)) require 'nanoc/version' Gem::Specification.new do |s| s.name = 'nanoc' s.version = Nanoc::VERSION s.homepage = 'http://nanoc.ws/' 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.license = 'MIT' s.files = Dir['[A-Z]*'] + Dir['doc/yardoc_{templates,handlers}/**/*'] + 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.required_ruby_version = '>= 1.9.3' s.add_runtime_dependency('cri', '~> 2.3') s.add_development_dependency('bundler', '>= 1.7.10', '< 2.0') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nanoc-4.0.0a1 | nanoc.gemspec |
nanoc-3.8.0 | nanoc.gemspec |
nanoc-3.7.5 | nanoc.gemspec |