2017-04-09 02:15:28 -04:00
|
|
|
version = File.read(File.expand_path("../VERSION", __FILE__)).strip
|
2008-08-31 03:49:22 -04:00
|
|
|
|
2017-04-09 02:15:28 -04:00
|
|
|
Gem::Specification.new '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"
|
2018-06-21 08:26:40 -04:00
|
|
|
s.homepage = "http://sinatrarb.com/"
|
2013-11-17 08:30:04 -05:00
|
|
|
s.license = 'MIT'
|
2017-03-18 23:07:56 -04:00
|
|
|
s.files = Dir['README*.md', 'lib/**/*', 'examples/*'] + [
|
|
|
|
".yardopts",
|
|
|
|
"AUTHORS.md",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.md",
|
|
|
|
"Gemfile",
|
|
|
|
"LICENSE",
|
|
|
|
"MAINTENANCE.md",
|
|
|
|
"Rakefile",
|
|
|
|
"SECURITY.md",
|
2017-08-18 03:40:47 -04:00
|
|
|
"sinatra.gemspec",
|
|
|
|
"VERSION"]
|
2020-12-28 08:44:25 -05:00
|
|
|
s.extra_rdoc_files = %w[README.md LICENSE]
|
2020-12-28 08:43:30 -05:00
|
|
|
s.rdoc_options = %w[--line-numbers --title Sinatra --main README.rdoc --encoding=UTF-8]
|
2018-06-23 07:50:20 -04:00
|
|
|
|
|
|
|
if s.respond_to?(:metadata)
|
|
|
|
s.metadata = {
|
|
|
|
'source_code_uri' => 'https://github.com/sinatra/sinatra',
|
|
|
|
'changelog_uri' => 'https://github.com/sinatra/sinatra/blob/master/CHANGELOG.md',
|
|
|
|
'homepage_uri' => 'http://sinatrarb.com/',
|
|
|
|
'bug_tracker_uri' => 'https://github.com/sinatra/sinatra/issues',
|
|
|
|
'mailing_list_uri' => 'http://groups.google.com/group/sinatrarb',
|
|
|
|
'documentation_uri' => 'https://www.rubydoc.info/gems/sinatra'
|
|
|
|
}
|
|
|
|
else
|
|
|
|
raise <<-EOF
|
|
|
|
RubyGems 2.0 or newer is required to protect against public gem pushes. You can update your rubygems version by running:
|
|
|
|
gem install rubygems-update
|
|
|
|
update_rubygems:
|
|
|
|
gem update --system
|
|
|
|
EOF
|
|
|
|
end
|
2011-06-05 09:21:19 -04:00
|
|
|
|
2020-03-13 16:28:27 -04:00
|
|
|
s.required_ruby_version = '>= 2.3.0'
|
2015-09-05 04:55:42 -04:00
|
|
|
|
2020-03-10 14:10:41 -04:00
|
|
|
s.add_dependency 'rack', '~> 2.2'
|
2015-07-27 01:51:25 -04:00
|
|
|
s.add_dependency 'tilt', '~> 2.0'
|
2017-04-09 02:15:28 -04:00
|
|
|
s.add_dependency 'rack-protection', version
|
2017-03-27 22:27:10 -04:00
|
|
|
s.add_dependency 'mustermann', '~> 1.0'
|
2008-08-31 03:49:22 -04:00
|
|
|
end
|