Sha256: 7223d5e147ed2504ec41017862d8f2acb27ed5d667de0f223c125fa2933c0efb

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'inline_encryption/version'

Gem::Specification.new do |spec|
  spec.name          = 'inline_encryption'
  spec.version       = InlineEncryption::VERSION
  spec.authors       = ['rubyisbeautiful']
  spec.email         = 'bcptaylor+github@gmail.com'
  spec.description   = %q{ A simple encryption tool based on common convention }
  spec.summary       = %q{ A simple encryption tool based on common convention and designed as a drop in for Stringish things }
  spec.homepage      = 'http://github.com/rubyisbeautiful/inline_encryption'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']
  spec.required_ruby_version = '>= 2.1.5'

  spec.executables   = ['inline_encryption']

  spec.add_runtime_dependency 'hashie'
  spec.add_runtime_dependency 'i18n'
  spec.add_runtime_dependency 'thor'


end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
inline_encryption-2.0.1 inline_encryption.gemspec