mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
initial commit
This commit is contained in:
commit
07a649ab6d
3 changed files with 20 additions and 0 deletions
2
sinatra-contrib/Gemfile
Normal file
2
sinatra-contrib/Gemfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
source "http://rubygems.org" unless ENV['QUICK']
|
||||
gemspec
|
1
sinatra-contrib/README.md
Normal file
1
sinatra-contrib/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
TODO: More imports/rewrites, documentation.
|
17
sinatra-contrib/sinatra-contrib.gemspec
Normal file
17
sinatra-contrib/sinatra-contrib.gemspec
Normal 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
|
Loading…
Reference in a new issue