yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob db1d50e8acb1a948b15a214ca90fbc4d67ea23ce 1208 bytes (raw)
$ git show the_metal:yahns.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
 
# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net> and all contributors
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
Gem::Specification.new do |s|
  manifest = File.read('.gem-manifest').split(/\n/)
  s.name = %q{yahns}
  s.version = ENV["VERSION"]
  s.authors = ["yahns hackers"]
  s.summary = "sleepy, multi-threaded, non-blocking application server"
  s.description = File.read("README").split(/\n\n/)[1].strip
  s.email = %q{yahns@yhbt.net}
  s.executables = manifest.grep(%r{\Abin/}).map { |s| s.sub(%r{\Abin/}, "") }
  s.files = manifest
  s.add_dependency(%q<kgio>, '~> 2.9')
  s.add_dependency(%q<sleepy_penguin>, '~> 3.2')
  s.add_dependency(%q<kgio-sendfile>, '~> 1.2')
  s.add_dependency(%q<unicorn>, '~> 4.6', '>= 4.6.3')

  # minitest is standard in Ruby 2.0, 4.3 is packaged with Ruby 2.0.0,
  # 4.7.5 with 2.1.  We work with minitest 5, too.  6.x does not exist
  # at the time of this writing.  We should always be compatible with
  # minitest (or test-unit) library packaged with the latest official
  # Matz Ruby release.
  s.add_development_dependency(%q<minitest>, '>= 4.3', '< 6.0')

  s.homepage = "http://yahns.yhbt.net/README"
  s.licenses = "GPLv3+"
end

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