summaryrefslogtreecommitdiff
path: root/uwsgi.gemspec
blob: 4ff8ea7316189a1f68d37bebff4cba5d6f1a9c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name        = 'uwsgi'
  s.license     = 'GPL-2'
  s.version     = `python -c "import uwsgiconfig as uc; print uc.uwsgi_version"`.sub(/-dev-.*/,'')
  s.date        = '2014-09-05'
  s.summary     = "uWSGI"
  s.description = "The uWSGI server for Ruby/Rack"
  s.authors     = ["Unbit"]
  s.email       = 'info@unbit.it'
  s.extensions  = ['ext/uwsgi/extconf.rb']
  s.files       = []
  s.require_paths = ['.']
  s.executables << 'uwsgi'
  s.homepage    = 'https://projects.unbit.it/uwsgi'
  s.add_runtime_dependency 'rack'
end