Sha256: 03fcdbde39e78dc63201ffaac15e253212e5b68d9cd450c73a4df8e69ee0ba0b
Contents?: true
Size: 871 Bytes
Versions: 1
Compression:
Stored size: 871 Bytes
Contents
# -*- encoding: utf-8 -*- require File.expand_path("../lib/chinstrap/version", __FILE__) Gem::Specification.new do |gem| gem.authors = ["Brandon Weiss"] gem.email = ["brandon@anti-pattern.com"] gem.description = %q{Manually building out the skeleton for larger, well-organized Sinatra apps sucks. There's no reason it shouldn't be as simple as 'chinstrap new APP_NAME'.} gem.summary = %q{'rails new' for Sinatra} gem.homepage = "http://github.com/brandonweiss/chinstrap" gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "chinstrap" gem.require_paths = ["lib"] gem.version = Chinstrap::VERSION gem.add_dependency "thor", "~> 0.14.6" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chinstrap-0.0.1 | chinstrap.gemspec |