forked from wonderix/rmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rmk.gemspec
24 lines (23 loc) · 990 Bytes
/
rmk.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
Gem::Specification.new 'rmk', '0.1.0' do |s|
s.description = "rmk is a fast building tool"
s.summary = "building tool"
s.authors = ["Ulrich Kramer"]
s.email = "wonderix@googlemail.com"
s.homepage = "https://github.com/wonderix/rmk"
s.files = `git ls-files bin lib plugins`.split("\n") + %w(README.md LICENSE)
s.test_files = s.files.select { |p| p =~ /^spec\/..rb/ }
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ }
s.add_dependency 'sinatra', '~> 1.3'
s.add_dependency 'eventmachine', '~> 1.0'
s.add_dependency 'em-http-request', '~> 1.0'
s.add_dependency 'tee', '~> 1.0'
s.add_dependency 'thin', '~> 1.0'
s.add_dependency 'slim'
s.add_dependency 'semantic'
s.require_path = "lib"
s.bindir = "bin"
s.license = "LICENSE"
s.executables += %w(rmk rmksrv)
s.default_executable = 'bin/rmk'
s.required_ruby_version = '>= 1.9.0'
end