Sha256: c55b738cd3ceb87006e89b44942008b79175b53b861ee898d70c8e372c7cad33
Contents?: true
Size: 863 Bytes
Versions: 1
Compression:
Stored size: 863 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "rhp/version" Gem::Specification.new do |s| s.name = "RHP" s.version = RHP::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Arthur Gunn"] s.email = ["arthur@gunn.co.nz"] s.homepage = "" s.summary = %q{The RHP (or ruby) Hypertext Preprocessor. (VaporWare)} s.description = %q{Pages are written in any templating language supported by the tilt gem. Routes are based only on directory structure and file names. Simple!} s.add_dependency "rack", "~>1.2.0" s.add_dependency "tilt", "~>1.2.0" 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"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
RHP-0.0.2a | rhp.gemspec |