Skip to content

Instantly share code, notes, and snippets.

@pbosetti
Created May 4, 2009 13:41
Show Gist options
  • Save pbosetti/106467 to your computer and use it in GitHub Desktop.
Save pbosetti/106467 to your computer and use it in GitHub Desktop.
# -*- encoding: utf-8 -*-
# Stub for gemspec
Gem::Specification.new do |s|
s.name = %q{GEMNAME}
s.version = "GEMVERSION"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Paolo Bosetti"]
s.date = %q{2009-05-04}
s.description = %q{GEMDESCRIPTION}
s.email = %q{[email protected]}
s.files = [FILELIST]
s.has_rdoc = true
s.homepage = %q{http://github.com/pbosetti/PROJECTNAME}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{PROJECTNAME}
s.rubygems_version = %q{1.2.0}
s.has_rdoc = false
s.summary = %q{PROJECTDESCRIPTION}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<erubis>, [">= 2.6.4"])
else
s.add_dependency(%q<erubis>, [">= 2.6.4"])
end
else
s.add_dependency(%q<erubis>, [">= 2.6.4"])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment