mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
18 lines
1,007 B
Ruby
18 lines
1,007 B
Ruby
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
|
require 'sinatra/version'
|
|
|
|
Gem::Specification.new 'sinatra', Sinatra::VERSION do |s|
|
|
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"
|
|
s.authors = ["Blake Mizerany", "Ryan Tomayko", "Simon Rozet", "Konstantin Haase"]
|
|
s.email = "sinatrarb@googlegroups.com"
|
|
s.homepage = "http://www.sinatrarb.com/"
|
|
s.files = `git ls-files`.split("\n") - %w[.gitignore .travis.yml]
|
|
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]
|
|
|
|
s.add_dependency 'rack', '~> 1.3', '>= 1.3.6'
|
|
s.add_dependency 'rack-protection', '~> 1.2'
|
|
s.add_dependency 'tilt', '~> 1.3', '>= 1.3.3'
|
|
end
|