Sha256: d272e049d5c35eeb4e5bf4eb3f85cdf3cf1bb9ce273b797e2eda8708d3a1039a
Contents?: true
Size: 1.83 KB
Versions: 4
Compression:
Stored size: 1.83 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'shhh/version' BASH_COMPLETION = File.read("#{lib}/../bin/shhh.bash-completion") Gem::Specification.new do |spec| spec.name = 'shhh' spec.version = Shhh::VERSION spec.authors = ['Konstantin Gredeskoul'] spec.email = %w(kigster@gmail.com) spec.summary = %q{Simple tool to encrypt/decrypt data using symmetric aes-256-cbc encryption with a private key and an IV vector} spec.description = %q{Store sensitive data safely as encrypted strings or entire files, using symmetric aes-256-cbc encryption/decryption with a secret key and an IV vector, and YAML-friendly base64-encoded encrypted result.} spec.homepage = 'https://github.com/kigster/shhh' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.2' spec.post_install_message = " Please copy and paste the following BASH function into your ~/.bashrc or equivalent, in order to enable command completion: #{BASH_COMPLETION} Thank you for installing Shhh! -- KG (github.com/kigster) " spec.add_dependency 'require_dir', '~> 0.1' spec.add_dependency 'colored2', '~> 2.0' spec.add_dependency 'slop', '~> 4.3' spec.add_dependency 'activesupport' spec.add_dependency 'highline', '~> 1.7' spec.add_dependency 'clipboard', '~> 1.1' spec.add_development_dependency 'codeclimate-test-reporter' spec.add_development_dependency 'bundler', '~> 1.12' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'yard', '~> 0.9' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
shhh-1.6.3 | shhh.gemspec |
shhh-1.6.2 | shhh.gemspec |
shhh-1.6.1 | shhh.gemspec |
shhh-1.5.4 | shhh.gemspec |