-
Notifications
You must be signed in to change notification settings - Fork 9
/
sudo.gemspec
33 lines (26 loc) · 1.16 KB
/
sudo.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
# coding: utf-8
require_relative 'lib/sudo/constants'
Gem::Specification.new do |spec|
spec.name = "sudo"
spec.version = Sudo::VERSION
spec.authors = ["Guido De Rosa"]
spec.email = ["[email protected]"]
spec.summary = %q{Give Ruby objects superuser privileges}
spec.description = <<~DESC
Give Ruby objects superuser privileges.
Based on dRuby and sudo (the Unix program).
DESC
spec.homepage = "https://github.com/TwilightCoders/rubysu"
spec.license = "MIT"
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*', 'libexec/**/*']
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_development_dependency 'pry-byebug', '~> 3'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec'
end