Sha256: 7048dc1678d096b3ba17a39416bb0d33ab02e5f1ea83459a6eedcf0eadd1cfcb

Contents?: true

Size: 1.77 KB

Versions: 1

Compression:

Stored size: 1.77 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "nesta/version"

Gem::Specification.new do |s|
  s.name        = "nesta"
  s.version     = Nesta::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Graham Ashton"]
  s.email       = ["graham@effectif.com"]
  s.homepage    = "http://effectif.com/nesta"
  s.summary     = %q{Ruby CMS, written in Sinatra}
  s.description = <<-EOF
Nesta is a lightweight Content Management System, written in Ruby using
the Sinatra web framework. Nesta has the simplicity of a static site
generator, but (being a fully fledged Rack application) allows you to
serve dynamic content on demand.

Content is stored on disk in plain text files (there is no database).
Edit your content in a text editor and keep it under version control
(most people use git, but any version control system will do fine).

Implementing your site's design is easy, but Nesta also has a small
selection of themes to choose from.
EOF

  s.rubyforge_project = "nesta"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency('builder', '~> 3.0')
  s.add_dependency('haml', '~> 3.0')
  s.add_dependency('maruku', '>= 0.6.0')
  s.add_dependency('RedCloth', '~> 4.2')
  s.add_dependency('sinatra', '1.1.2')
  
  # Useful in development
  s.add_dependency('shotgun', '>= 0.8')

  # Test libraries
  s.add_development_dependency('hpricot', '0.8.3')
  s.add_development_dependency('rack-test', '0.5.7')
  s.add_development_dependency('rspec', '1.3.0')
  s.add_development_dependency('rspec_hpricot_matchers', '1.0')
  s.add_development_dependency('test-unit', '1.2.3')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nesta-0.9.2 nesta.gemspec