1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-10-27 10:43:20 +00:00
mpw/mpw.gemspec

27 lines
931 B
Ruby
Raw Normal View History

2015-06-21 21:45:25 +00:00
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'mpw'
spec.version = File.open('VERSION').read
spec.authors = ['nishiki']
spec.email = ['gems@yae.im']
spec.summary = 'Manage your password'
spec.description = 'Save and read your password with gpg'
2015-06-22 18:46:43 +00:00
spec.homepage = 'https://github.com/nishiki/manage-password'
2015-06-21 21:45:25 +00:00
spec.license = 'GPL'
spec.files = `git ls-files -z`.split("\x0")
2015-06-23 20:10:08 +00:00
spec.executables = ['mpw', 'mpw-server', 'mpw-ssh']
2015-06-21 21:45:25 +00:00
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
2015-07-19 19:51:05 +00:00
spec.add_dependency "i18n", "~> 0.6", ">= 0.6.9"
spec.add_dependency "gpgme"
spec.add_dependency "highline"
spec.add_dependency "locale"
spec.add_dependency "colorize"
spec.add_dependency "net-sftp"
2015-06-21 21:45:25 +00:00
end