rack.git  about / heads / tags
a modular Ruby webserver interface
blob f7b13b17074078a4b14c6f3aef7f316283866e97 1766 bytes (raw)
$ git show no-unicorn:rack.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 
# frozen_string_literal: true

Gem::Specification.new do |s|
  s.name = "rack"
  s.version = File.read('lib/rack.rb')[/RELEASE += +([\"\'])([\d][\w\.]+)\1/, 2]
  s.platform        = Gem::Platform::RUBY
  s.summary         = "a modular Ruby webserver interface"
  s.license         = "MIT"

  s.description = <<-EOF
Rack provides a minimal, modular and adaptable interface for developing
web applications in Ruby.  By wrapping HTTP requests and responses in
the simplest way possible, it unifies and distills the API for web
servers, web frameworks, and software in between (the so-called
middleware) into a single method call.

Also see https://rack.github.io/.
EOF

  s.files           = Dir['{bin/*,contrib/*,example/*,lib/**/*}'] +
                        %w(MIT-LICENSE rack.gemspec Rakefile README.rdoc SPEC)
  s.bindir          = 'bin'
  s.executables << 'rackup'
  s.require_path = 'lib'
  s.extra_rdoc_files = ['README.rdoc', 'CHANGELOG.md']

  s.author          = 'Leah Neukirchen'
  s.email           = 'leah@vuxu.org'
  s.homepage        = 'https://rack.github.io/'
  s.required_ruby_version = '>= 2.2.2'
  s.metadata              = {
    "bug_tracker_uri"   => "https://github.com/rack/rack/issues",
    "changelog_uri"     => "https://github.com/rack/rack/blob/master/CHANGELOG.md",
    "documentation_uri" => "https://rubydoc.info/github/rack/rack",
    "homepage_uri"      => "https://rack.github.io",
    "mailing_list_uri"  => "https://groups.google.com/forum/#!forum/rack-devel",
    "source_code_uri"   => "https://github.com/rack/rack"
  }

  s.add_development_dependency 'minitest', "~> 5.0"
  s.add_development_dependency 'minitest-sprint'
  s.add_development_dependency 'minitest-global_expectations'
  s.add_development_dependency 'rake'
end

git clone https://yhbt.net/rack.git