forked from palexander/shotgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shotgun.gemspec
41 lines (36 loc) · 906 Bytes
/
shotgun.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
36
37
38
39
40
41
Gem::Specification.new do |s|
s.name = 'shotgun'
s.version = '0.9'
s.date = '2011-02-24'
s.description = "reloading rack development server"
s.summary = s.description
s.authors = ["Ryan Tomayko"]
s.email = "[email protected]"
s.files = %w[
COPYING
README
Rakefile
bin/shotgun
lib/shotgun.rb
lib/shotgun/favicon.rb
lib/shotgun/loader.rb
lib/shotgun/static.rb
man/index.txt
man/shotgun.1
man/shotgun.1.ronn
shotgun.gemspec
test/big.ru
test/boom.ru
test/slow.ru
test/test-sinatra.ru
test/test.ru
test/test_shotgun_loader.rb
test/test_shotgun_static.rb
]
s.executables = ['shotgun']
s.test_files = s.files.select { |f| f =~ /test_shotgun.*rb/ }
s.extra_rdoc_files = %w[README]
s.add_dependency 'rack', '>= 1.0'
s.homepage = "http://github.com/rtomayko/shotgun"
s.require_paths = %w[lib]
end