# -*- encoding: utf-8 -*- # stub: shhh 1.6.5 ruby lib Gem::Specification.new do |s| s.name = "shhh".freeze s.version = "1.6.5".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Konstantin Gredeskoul".freeze] s.bindir = "exe".freeze s.date = "2016-09-10" s.description = "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.".freeze s.email = ["kigster@gmail.com".freeze] s.executables = ["keychain".freeze, "shhh".freeze] s.files = [".codeclimate.yml".freeze, ".document".freeze, ".gitignore".freeze, ".rspec".freeze, ".rubocop.yml".freeze, ".travis.yml".freeze, ".yardopts".freeze, "Gemfile".freeze, "LICENSE".freeze, "MANAGING-KEYS.md".freeze, "README.md".freeze, "Rakefile".freeze, "bin/console".freeze, "bin/setup".freeze, "bin/shhh.bash-completion".freeze, "exe/keychain".freeze, "exe/shhh".freeze, "lib/shhh.rb".freeze, "lib/shhh/app.rb".freeze, "lib/shhh/app/args.rb".freeze, "lib/shhh/app/cache.rb".freeze, "lib/shhh/app/cli.rb".freeze, "lib/shhh/app/commands.rb".freeze, "lib/shhh/app/commands/command.rb".freeze, "lib/shhh/app/commands/delete_keychain_item.rb".freeze, "lib/shhh/app/commands/encrypt_decrypt.rb".freeze, "lib/shhh/app/commands/generate_key.rb".freeze, "lib/shhh/app/commands/open_editor.rb".freeze, "lib/shhh/app/commands/print_key.rb".freeze, "lib/shhh/app/commands/show_examples.rb".freeze, "lib/shhh/app/commands/show_help.rb".freeze, "lib/shhh/app/commands/show_language_examples.rb".freeze, "lib/shhh/app/commands/show_version.rb".freeze, "lib/shhh/app/input/handler.rb".freeze, "lib/shhh/app/keychain.rb".freeze, "lib/shhh/app/nlp.rb".freeze, "lib/shhh/app/nlp/constants.rb".freeze, "lib/shhh/app/nlp/translator.rb".freeze, "lib/shhh/app/nlp/usage.rb".freeze, "lib/shhh/app/output.rb".freeze, "lib/shhh/app/output/base.rb".freeze, "lib/shhh/app/output/file.rb".freeze, "lib/shhh/app/output/noop.rb".freeze, "lib/shhh/app/output/stdout.rb".freeze, "lib/shhh/app/private_key/base64_decoder.rb".freeze, "lib/shhh/app/private_key/decryptor.rb".freeze, "lib/shhh/app/private_key/detector.rb".freeze, "lib/shhh/app/private_key/handler.rb".freeze, "lib/shhh/app/short_name.rb".freeze, "lib/shhh/application.rb".freeze, "lib/shhh/cipher_handler.rb".freeze, "lib/shhh/configuration.rb".freeze, "lib/shhh/data.rb".freeze, "lib/shhh/data/decoder.rb".freeze, "lib/shhh/data/encoder.rb".freeze, "lib/shhh/data/wrapper_struct.rb".freeze, "lib/shhh/encrypted_file.rb".freeze, "lib/shhh/errors.rb".freeze, "lib/shhh/extensions/class_methods.rb".freeze, "lib/shhh/extensions/instance_methods.rb".freeze, "lib/shhh/version.rb".freeze, "shhh.gemspec".freeze] s.homepage = "https://github.com/kigster/shhh".freeze s.post_install_message = "\n\nPlease copy and paste the following BASH function into your ~/.bashrc or\nequivalent, in order to enable command completion:\n\n#!/usr/bin/env bash\n#\n# Shhh command line completion\n#\n# \u00A9 2015-2016, Konstantin Gredeskoul, https://github.com/kigster/shhh\n# MIT LICENSE\n#\n\n_shhh() {\n local SHHH_OPTS SHHH_POINTS cur prev\n\n cur=\"${COMP_WORDS[COMP_CWORD]}\"\n prev=\"${COMP_WORDS[COMP_CWORD-1]}\"\n\n COMPREPLY=()\n\n SHHH_COMP_OPTIONS=$(shhh --dictionary)\n [[ $COMP_CWORD == 1 ]] && SHHH_COMP_OPTIONS=\"${SHHH_COMP_OPTIONS} ${SHHH_COMMANDS}\"\n COMPREPLY=( $(compgen -W \"${SHHH_COMP_OPTIONS}\" -- ${cur}) )\n return 0\n}\n\ncomplete -F _shhh shhh\n\n\n\nThank you for installing Shhh!\n -- KG (github.com/kigster)\n".freeze s.required_ruby_version = Gem::Requirement.new(">= 2.2".freeze) s.rubygems_version = "3.5.10".freeze s.summary = "Simple tool to encrypt/decrypt data using symmetric aes-256-cbc encryption with a private key and an IV vector".freeze s.specification_version = 4 s.add_runtime_dependency(%q.freeze, ["~> 0.1".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 2.0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 4.3".freeze]) s.add_runtime_dependency(%q.freeze, [">= 0".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 1.7".freeze]) s.add_runtime_dependency(%q.freeze, ["~> 1.1".freeze]) s.add_runtime_dependency(%q.freeze, [">= 0".freeze]) s.add_development_dependency(%q.freeze, [">= 0".freeze]) s.add_development_dependency(%q.freeze, ["~> 1.12".freeze]) s.add_development_dependency(%q.freeze, ["~> 10.0".freeze]) s.add_development_dependency(%q.freeze, ["~> 3.0".freeze]) s.add_development_dependency(%q.freeze, ["~> 0.9".freeze]) end