-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrmk.gemspec
25 lines (24 loc) · 1.02 KB
/
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
25
# frozen_string_literal: true
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 =~ %r{^spec/..rb} }
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ }
s.add_dependency 'em-http-request', '~> 1.1'
s.add_dependency 'eventmachine', '~> 1.2'
s.add_dependency 'semantic', '~> 1.6'
s.add_dependency 'sinatra', '~> 2.0'
s.add_dependency 'sinatra-contrib', '~> 2.0'
s.add_dependency 'slim', '~> 4.0'
s.add_dependency 'thin', '~> 1.7'
s.require_path = 'lib'
s.bindir = 'bin'
s.license = 'MIT'
s.executables += %w[rmk rmksrv]
s.default_executable = 'bin/rmk'
s.required_ruby_version = '>= 1.9.0'
end