forked from wurmlab/oswitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oswitch.gemspec
29 lines (25 loc) · 951 Bytes
/
oswitch.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
Gem::Specification.new do |s|
# meta
s.name = 'oswitch'
s.version = '0.2.5'
s.authors = ['Anurag Priyam', 'Bruno Vieira', 'Yannick Wurm']
s.email = ['[email protected]']
s.homepage = 'https://github.com/yeban/oswitch'
s.license = 'MIT'
s.summary = "Use docker image as the host operating system's user and \
access host operating system's filesystem."
s.description = <<DESC
Use any docker image as the host operating system's user (same user name, same
uid, same gid, and even the same shell!) and access to host operating system's
filesystem.
DESC
# dependencies
s.add_dependency('colorize', '~> 0.7.5')
s.required_ruby_version = '>= 2.0'
# gem
s.files = Dir['lib/**/*'] + Dir['share/**/*']
s.files = s.files + ['Gemfile', 'oswitch.gemspec']
s.files = s.files + ['README.mkd']
s.require_paths = ['lib']
s.executables = ['oswitch']
end