-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosp.gemspec
34 lines (26 loc) · 1.12 KB
/
osp.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
33
34
# coding: UTF-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'osp/version'
Gem::Specification.new do |spec|
spec.name = 'osp'
spec.version = TheFox::OSP::VERSION
spec.date = TheFox::OSP::DATE
spec.author = 'Christian Mayer'
spec.email = 'christian@fox21.at'
spec.summary = %q{One Shall Pass}
spec.description = %q{Password Manager: One Shall Pass for Command Line.}
spec.homepage = TheFox::OSP::HOMEPAGE
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject{ |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'bin'
spec.executables = ['osp']
spec.require_paths = ['lib']
spec.required_ruby_version = '>=2.1.0'
spec.add_development_dependency 'minitest', '~>5.8'
spec.add_development_dependency 'simplecov', '~>0.12'
spec.add_development_dependency 'simplecov-phpunit', '~>1.0'
spec.add_runtime_dependency 'highline', '~>1.7'
spec.add_runtime_dependency 'msgpack', '~>1.0'
spec.add_runtime_dependency 'thefox-ext', '~>1.2'
end