mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
5b3c1ac686
- Fixes #1308
32 lines
1.2 KiB
Ruby
32 lines
1.2 KiB
Ruby
version = File.read(File.expand_path("../VERSION", __FILE__)).strip
|
|
|
|
Gem::Specification.new '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.license = 'MIT'
|
|
s.files = Dir['README*.md', 'lib/**/*', 'examples/*'] + [
|
|
".yardopts",
|
|
"AUTHORS.md",
|
|
"CHANGELOG.md",
|
|
"CONTRIBUTING.md",
|
|
"Gemfile",
|
|
"LICENSE",
|
|
"MAINTENANCE.md",
|
|
"Rakefile",
|
|
"SECURITY.md",
|
|
"sinatra.gemspec",
|
|
"VERSION"]
|
|
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 --encoding=UTF-8]
|
|
|
|
s.required_ruby_version = '>= 2.2.0'
|
|
|
|
s.add_dependency 'rack', '~> 2.0'
|
|
s.add_dependency 'tilt', '~> 2.0'
|
|
s.add_dependency 'rack-protection', version
|
|
s.add_dependency 'mustermann', '~> 1.0'
|
|
end
|