2011-07-14 19:50:51 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "penchant/version"
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "penchant"
|
|
|
|
s.version = Penchant::VERSION
|
|
|
|
s.platform = Gem::Platform::RUBY
|
2011-07-14 19:52:14 +00:00
|
|
|
s.authors = ["John Bintz"]
|
|
|
|
s.email = ["john@coswellproductions.com"]
|
2011-07-14 19:50:51 +00:00
|
|
|
s.homepage = ""
|
2011-07-14 19:52:14 +00:00
|
|
|
s.summary = %q{Things I do for my Rails projects to get up to speed in new environments fast}
|
|
|
|
s.description = %q{Things I do for my Rails projects to get up to speed in new environments fast}
|
2011-07-14 19:50:51 +00:00
|
|
|
|
|
|
|
s.rubyforge_project = "penchant"
|
|
|
|
|
|
|
|
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
|