Sha256: f653016064c7fd915d2122558ed5d89ce7081893b03a52056367f13f059c951c
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
# -*- encoding: utf-8 -*- require 'base64' 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 = ["Bryan Taylor"] spec.email = ['YmNwdGF5bG9yQGdtYWlsLmNvbQ==\n'].collect{ |foo| Base64.decode64(foo) } 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 = '>= 1.9.3' spec.executables = ['inline_encryption'] spec.add_runtime_dependency 'hashie' spec.add_runtime_dependency 'thor' spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "guard" spec.add_development_dependency "guard-rspec" spec.add_development_dependency "guard-spork" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "yard" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
inline_encryption-0.0.6 | inline_encryption.gemspec |