Sha256: 0c1cf0c49e38ec79ed79f7187f67f8f6b0202bdee955bcce3eb1775e88bc8dc2
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'cryptify/version' Gem::Specification.new do |spec| spec.name = "cryptify" spec.version = Cryptify::VERSION spec.authors = ["Pablo Vallejo"] spec.email = ["pabloninety@gmail.com"] spec.summary = %q{RSA implementation.} spec.description = %q{Simple RSA encoder and decoder implementation. NOTE: this gem is not intended to be used in production.} spec.homepage = "" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" # spec.add_development_dependency "rspec", ">= 3.1.0" spec.add_development_dependency "rspec", "~> 3.1", ">= 3.1.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cryptify-0.0.2 | cryptify.gemspec |