Sha256: 82bd05f25a5730b54f19d8262949ee9224eb78f87dc75c919e04431220b14c2d
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path("../lib/storys/version", __FILE__) Gem::Specification.new do |s| s.name = "storys" s.version = Storys::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Brenton "B-Train" Fletcher'] s.email = ["i@bloople.net"] s.homepage = "http://github.com/bloopletech/storys" s.summary = "Storys indexes a collection of stories and generates a SPA that browses the collection." s.description = "A collection of stories is a directory (the container) containing 1..* HTML files (stories). Storys indexes a collection in this format, and generates a HTML/JS Single Page Application (SPA) that allows you to browse and view stories in your collection. The SPA UI is much easier to use than using a filesystem browser; and the SPA, along with the collection can be trivially served over a network by putting the collection and the SPA in a directory served by nginx or Apache." s.required_rubygems_version = ">= 1.3.6" s.rubyforge_project = "storys" s.add_development_dependency "bundler", ">= 1.0.0" s.add_dependency "addressable", ">= 2.3.5" s.add_dependency "naturally", ">= 1.0.3" s.add_dependency "nsf" s.files = `git ls-files`.split("\n") s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact s.require_path = 'lib' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
storys-0.0.3 | storys.gemspec |
storys-0.0.2 | storys.gemspec |