Sha256: 408fc9517152388c6d8297229a702a6e47f50b495693e26be232e4c1e5d93b9b
Contents?: true
Size: 975 Bytes
Versions: 1
Compression:
Stored size: 975 Bytes
Contents
require 'rubygems' require 'rake' HAML_GEMSPEC = Gem::Specification.new do |s| s.name = 'hamgen' s.rubyforge_project = 'hamgen' s.summary = "Hampton's preferred Rails 3.0 generator based off Shawn Allison's work" s.version = File.read('VERSION').strip s.authors = ['Hampton Catlin'] s.email = 'hampton@hamptoncatlin.com' s.description = <<-END A Rails 3.0 generator (like for the whole project) that pre-generates a bunch of shit I like. Most of it is stolen directly from Shawn's Rails Template at http://github.com/shawn/shawns-rails3-template but with changes just for ole' me END s.add_runtime_dependency('colored', ['~> 1.2']) s.add_runtime_dependency('rails', ['~> 3.0.0']) s.add_runtime_dependency('haml', ['~> 3.0.18']) s.add_development_dependency('rake', ['~> 0.8.7']) s.executables = ['hamgen'] s.files = Dir['**/**'].to_a.select { |f| f[0..2] != "pkg"} s.homepage = 'http://www.hamptoncatlin.com/' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hamgen-0.1 | hamgen.gemspec |