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/"
|
2013-11-17 08:30:04 -05:00
|
|
|
s.license = 'MIT'
|
2016-02-02 04:00:38 -05:00
|
|
|
s.files = %w(.yardopts AUTHORS.md CHANGELOG.md CONTRIBUTING.md Gemfile LICENSE MAINTENANCE.md Rakefile SECURITY.md sinatra.gemspec) + Dir['README*.md', 'lib/**/*', 'examples/*']
|
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'
|
2012-07-06 16:44:21 -04:00
|
|
|
s.rdoc_options = %w[--line-numbers --inline-source --title Sinatra --main README.rdoc --encoding=UTF-8]
|
2011-06-05 09:21:19 -04:00
|
|
|
|
2015-09-05 16:46:17 -04:00
|
|
|
s.required_ruby_version = '>= 2.2.0'
|
2015-09-05 04:55:42 -04:00
|
|
|
|
2016-06-30 22:14:08 -04:00
|
|
|
s.add_dependency 'rack', '~> 2.0'
|
2015-07-27 01:51:25 -04:00
|
|
|
s.add_dependency 'tilt', '~> 2.0'
|
2016-08-22 10:18:03 -04:00
|
|
|
s.add_dependency 'rack-protection', Sinatra::VERSION
|
2016-08-22 10:10:44 -04:00
|
|
|
s.add_dependency 'mustermann', '1.0.0.beta1'
|
2008-08-31 03:49:22 -04:00
|
|
|
end
|