2011-07-05 05:13:12 -04:00
|
|
|
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
2011-07-04 20:08:16 -04:00
|
|
|
require 'sinatra/version'
|
2008-08-31 03:49:22 -04:00
|
|
|
|
2011-06-05 09:21:19 -04:00
|
|
|
Gem::Specification.new 'sinatra', Sinatra::VERSION do |s|
|
2011-07-24 04:10:58 -04:00
|
|
|
s.description = "Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort."
|
|
|
|
s.summary = "Classy web-development dressed in a DSL"
|
2011-06-05 09:21:19 -04:00
|
|
|
s.authors = ["Blake Mizerany", "Ryan Tomayko", "Simon Rozet", "Konstantin Haase"]
|
|
|
|
s.email = "sinatrarb@googlegroups.com"
|
2011-06-05 09:24:01 -04:00
|
|
|
s.homepage = "http://www.sinatrarb.com/"
|
2011-10-04 21:07:39 -04:00
|
|
|
s.files = `git ls-files`.split("\n") - %w[.gitignore .travis.yml]
|
2011-06-05 09:09:01 -04:00
|
|
|
s.test_files = s.files.select { |p| p =~ /^test\/.*_test.rb/ }
|
|
|
|
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ } << 'LICENSE'
|
|
|
|
s.rdoc_options = %w[--line-numbers --inline-source --title Sinatra --main README.rdoc]
|
2011-06-05 09:21:19 -04:00
|
|
|
|
2011-10-03 17:40:10 -04:00
|
|
|
s.add_dependency 'rack', '~> 1.3', '>= 1.3.4'
|
|
|
|
s.add_dependency 'rack-protection', '~> 1.1', '>= 1.1.2'
|
|
|
|
s.add_dependency 'tilt', '~> 1.3', '>= 1.3.3'
|
2008-08-31 03:49:22 -04:00
|
|
|
end
|