Sha256: 7d4f4ad1114295dd742bf94090582dafb578912ef5ebdccefcb99340004811be
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 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'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
inline_encryption-1.0.2 | inline_encryption.gemspec |
inline_encryption-1.0.0 | inline_encryption.gemspec |