Sha256: 1abece8566b031f4ef3c05264185ada57096aa8fb31a1fd62c2843fbaab932f1
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sym/crypt/version' Gem::Specification.new do |spec| spec.name = 'sym-crypt' spec.version = Sym::Crypt::VERSION spec.authors = ['Konstantin Gredeskoul'] spec.email = %w(kigster@gmail.com) spec.summary = %q{Base encryption/decryption core of the encryption app Sym. If you need simple convenience wrappers around symmetric encryption provided by OpenSSL with sensible defaults, this gem is for you. If you require a CLI tool, please take a look at the gem 'sym'.} spec.description = Sym::Crypt::DESCRIPTION spec.homepage = 'https://github.com/kigster/sym-crypt' 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.add_development_dependency 'simplecov' spec.add_development_dependency 'colored2' spec.add_development_dependency 'irbtools' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3' spec.add_development_dependency 'rspec-its' spec.add_development_dependency 'yard' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sym-crypt-1.2.0 | sym-crypt.gemspec |