Sha256: 36a0fbf388bde087f6653dc1f4558a0fc82b312ec0d1fd412d36348523d0a920
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 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 = ['rubyisbeautiful'] 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 'i18n' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
inline_encryption-1.0.3 | inline_encryption.gemspec |