-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrably.gemspec
More file actions
25 lines (23 loc) · 945 Bytes
/
grably.gemspec
File metadata and controls
25 lines (23 loc) · 945 Bytes
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
require_relative 'lib/grably/version'
Gem::Specification.new do |s|
s.name = 'grably'
s.version = Grably.version
s.licenses = ['Apache-2.0']
s.summary = 'Ruby library turning Rake into extreemly powerful build tool'
s.authors = ['Ilya Arkhanhelsky']
s.email = 'ilya.arkhanhelsky@vizor-games.com'
s.files = Dir['lib/**/*'] + %w(README.md LICENSE.txt)
s.bindir = 'exe'
s.executables = Dir['exe/*'].map { |e| File.basename(e) }
s.homepage = 'https://rubygems.org/gems/grably'
s.metadata = {
'source_code_uri' => 'https://github.com/vizor-games/grably'
}
s.add_runtime_dependency 'colorize', '~> 0.8.1'
s.add_runtime_dependency 'jac', '~> 0.0.5'
s.add_runtime_dependency 'powerpack', '~> 0.1.0'
s.add_runtime_dependency 'rake'
s.add_runtime_dependency 'rubyzip', '>= 1.2.1', '< 2.1.0'
s.add_runtime_dependency 'thor', '~> 0'
s.add_runtime_dependency 'ffi'
end