Sha256: caa58030d3d21e97e825b4a3a318d229c67981f82f69e67ccf62fc8f0de94026

Contents?: true

Size: 1.98 KB

Versions: 4

Compression:

Stored size: 1.98 KB

Contents

# encoding: utf-8

$LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__))
require 'nanoc3'

Gem::Specification.new do |s|
  s.name        = 'nanoc3'
  s.version     = Nanoc3::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}/**/*'] +
                         [ 'nanoc3.gemspec', '.gemtest' ]
  s.executables        = [ 'nanoc3' ]
  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.0')

  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')

  s.post_install_message = %q{------------------------------------------------------------------------------
Thanks for installing nanoc 3.2! Here are some resources to help you get
started:

* The web site at <http://nanoc.stoneship.org/>
* The tutorial at <http://nanoc.stoneship.org/docs/3-getting-started/>
* The manual at <http://nanoc.stoneship.org/docs/4-basic-concepts/>

If you have questions, issues or simply want to share ideas, join the
discussion at <http://groups.google.com/group/nanoc> or stop by in the IRC
channel on irc.freenode.net, channel #nanoc. See you there!

Enjoy!
------------------------------------------------------------------------------
}
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
nanoc3-3.2.4 nanoc3.gemspec
nanoc3-3.2.3 nanoc3.gemspec
nanoc3-3.2.2 nanoc3.gemspec
nanoc3-3.2.1 nanoc3.gemspec