Sha256: 1f3ba7e79ac8edcf9064486605e52d0b998d7728933a10c0e9c4f6dbf440805a

Contents?: true

Size: 1.81 KB

Versions: 2

Compression:

Stored size: 1.81 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "mars-nesta"
  s.version     = Nesta::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Graham Ashton", "Mars Cheng"]
  s.email       = ["graham@effectif.com", "kidrane@gmail.com"]
  s.homepage    = "http://nestacms.com"
  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('haml', '~> 3.0')
  s.add_dependency('redcarpet', '>= 1.11.0')
  s.add_dependency('RedCloth', '~> 4.2')
  s.add_dependency('sinatra', '1.1.2')
  s.add_dependency('coderay', '>= 0.9.7')
  
  # 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

2 entries across 2 versions & 1 rubygems

Version Path
mars-nesta-0.9.6 nesta.gemspec
mars-nesta-0.9.5 nesta.gemspec