Sha256: 58a8fc549bb2e1156bce329b23b1d681386310e153611aa9a6374f4209fe0956
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path("../lib/mangos/version", __FILE__) Gem::Specification.new do |s| s.name = "mangos" s.version = Mangos::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Brenton Fletcher"] s.email = ["i@bloople.net"] s.homepage = "http://rubygems.org/gems/mangos" s.summary = "Mangos indexes a collection of manga or comis and generates a SPA that browses the collection." s.description = "A collection of manga or comics is a directory (the container) containing 1..* directories (books), each directory containing 1..* image files (pages). Mangos indexes a collection in this format, and generates a HTML/JS Single Page Application (SPA) that allows you to browse and view manga/comics in your collection. The SPA UI is much easier to use than using a filesystem browser or normal image viewer; 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 = "mangos" 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 "rmagick", ">= 2.13.1" 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 |
---|---|
mangos-0.0.2 | mangos.gemspec |
mangos-0.0.1 | mangos.gemspec |