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

31 lines
1.2 KiB
Ruby
Raw Normal View History

2015-06-21 21:45:25 +00:00
# coding: utf-8
2017-03-30 18:07:47 +00:00
2015-06-21 21:45:25 +00:00
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
2017-03-30 18:07:47 +00:00
spec.files = %x(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
2017-04-20 21:26:40 +00:00
spec.required_ruby_version = '>= 2.1'
2017-03-30 18:07:47 +00:00
spec.add_dependency 'i18n', '~> 0.7', '>= 0.7.0'
spec.add_dependency 'gpgme', '~> 2.0', '>= 2.0.12'
spec.add_dependency 'highline', '~> 1.7', '>= 1.7.8'
spec.add_dependency 'locale', '~> 2.1', '>= 2.1.2'
spec.add_dependency 'colorize', '~> 0.8', '>= 0.8.1'
spec.add_dependency 'clipboard', '~> 1.1', '>= 1.1.1'
spec.add_dependency 'rotp', '~> 3.1', '>= 3.1.0'
2015-06-21 21:45:25 +00:00
end