Skip to content

Commit

Permalink
added gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
rkh committed Feb 15, 2010
1 parent 7e3cd82 commit bfee3dc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions sinatra-test-helper.gemspec
@@ -0,0 +1,23 @@
SPEC = Gem::Specification.new do |s|

# Get the facts.
s.name = "sinatra-test-helper"
s.version = "0.4.0.a"
s.description = "Test helper for Sinatra (usefull for other Sintatra extensions, part of BigBand)."

# BigBand depedencies
s.add_dependency "monkey-lib", s.version

# External dependencies
s.add_dependency "sinatra", ">= 0.9.4"

# Those should be about the same in any BigBand extension.
s.authors = ["Konstantin Haase"]
s.email = "konstantin.mailinglists@googlemail.com"
s.files = Dir["**/*.{rb,md}"]
s.has_rdoc = 'yard'
s.homepage = "http://github.com/rkh/#{s.name}"
s.require_paths = ["lib"]
s.summary = s.description

end

0 comments on commit bfee3dc

Please sign in to comment.