initial commit

This commit is contained in:
Konstantin Haase 2011-03-24 08:43:39 +01:00
commit 07a649ab6d
3 changed files with 20 additions and 0 deletions

2
sinatra-contrib/Gemfile Normal file
View File

@ -0,0 +1,2 @@
source "http://rubygems.org" unless ENV['QUICK']
gemspec

View File

@ -0,0 +1 @@
TODO: More imports/rewrites, documentation.

View File

@ -0,0 +1,17 @@
Gem::Specification.new do |s|
s.name = "sinatra-contrib"
s.version = "1.2.0"
s.description = "Collection of useful Sinatra extensions"
s.authors = ["Konstantin Haase"]
s.email = "konstantin.mailinglists@googlemail.com"
s.files = Dir["**/*.{rb,md}"] << "LICENSE"
s.has_rdoc = 'yard'
s.homepage = "http://github.com/rkh/#{s.name}"
s.require_paths = ["lib"]
s.summary = s.description
s.add_dependency "sinatra", "~> 1.2.0"
s.add_dependency "backports", ">= 2.0"
s.add_development_dependency "rspec", "~> 2.3"
end