Sha256: d3eb233389a42d974873eb7f0e2984f6b06c9cdd38178d3e4891360c271a1b2b
Contents?: true
Size: 1.76 KB
Versions: 2
Compression:
Stored size: 1.76 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", "2.1.2") s.add_dependency("haml", "3.0.12") s.add_dependency("maruku", "0.6.0") s.add_dependency("RedCloth", "4.2.2") s.add_dependency("sinatra", "1.1.0") # Useful in development s.add_dependency("shotgun", ">= 0.8") # Test libraries s.add_development_dependency("hpricot", "0.8.2") s.add_development_dependency("rack-test", "0.5.3") 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 |
---|---|
nesta-0.9.1 | nesta.gemspec |
nesta-0.9.0 | nesta.gemspec |