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

29 lines
1 KiB
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
2016-06-30 20:24:51 +00:00
spec.authors = ['Adrien Waksberg']
spec.email = ['mpw@yae.im']
spec.summary = 'MPW is a software to crypt and manage your passwords'
2016-07-05 12:35:10 +00:00
spec.description = 'Manage your passwords in all security with MPW, we use GPG to encrypt your passwords'
2015-06-22 18:46:43 +00:00
spec.homepage = 'https://github.com/nishiki/manage-password'
2016-06-30 20:24:51 +00:00
spec.license = 'GPL-2.0'
2015-06-21 21:45:25 +00:00
spec.files = `git ls-files -z`.split("\x0")
2016-06-30 20:24:51 +00:00
spec.executables = ['mpw']
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
2016-06-30 20:24:51 +00:00
spec.add_dependency "i18n"
2015-07-19 19:51:05 +00:00
spec.add_dependency "gpgme"
spec.add_dependency "highline"
spec.add_dependency "locale"
spec.add_dependency "colorize"
2016-06-30 20:24:51 +00:00
spec.add_dependency "net-ssh"
spec.add_dependency "net-scp"
2016-07-09 12:06:49 +00:00
spec.add_dependency "clipboard"
2015-06-21 21:45:25 +00:00
end