-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathkeight.gemspec
35 lines (30 loc) · 1.25 KB
/
keight.gemspec
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
# -*- coding: utf-8 -*-
Gem::Specification.new do |o|
o.name = "keight"
o.version = "$Release: 0.0.0 $".split[1]
o.author = "makoto kuwata"
o.email = "kwa(at)kuwata-lab.com"
o.platform = Gem::Platform::RUBY
o.homepage = "https://github.com/kwatch/keight/tree/ruby"
o.license = "MIT" # ref: http://spdx.org/licenses/
o.summary = "Jet-speed webapp framework for Ruby"
o.description = <<'END'
Keight.rb is the crazy-fast webapp framework for Ruby.
It is about 100 times faster than Rails and 20 times faster than Sinatra.
See https://github.com/kwatch/keight/tree/ruby for details.
END
o.files = Dir[*%w[
README.md CHANGES.md MIT-LICENSE keight.gemspec Rakefile
bin/k8rb
lib/keight.rb
test/*_test.rb test/data/* test/oktest.rb
bench/bench.rb bench/benchmarker.rb
]]
o.executables = ["k8rb"]
o.bindir = ["bin"]
#o.test_files = o.files.grep(/^test\//)
o.test_file = "test/keight_test.rb"
o.required_ruby_version = '>= 2.0'
#o.add_development_dependency "oktest", "~> 0"
o.add_development_dependency 'rack-test_app', '~> 1.0', '>= 1.0.0'
end