Sha256: ba21c857441c0a7bcdf17e2fbdbe0eee7c39ceb46b1aa97ce9907caf7d0937f1

Contents?: true

Size: 910 Bytes

Versions: 1

Compression:

Stored size: 910 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "shift_cipher"
  spec.version       = ShiftCipher::VERSION
  spec.authors       = ["elsapet"]

  spec.summary       = "encrypt and de-crypt messages"
  spec.description   = "encrypt and de-crypt messages using a simple Caesar cipher, given an offset"
  spec.homepage      = "https://github.com/elsapet/shift_cipher"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.executables   = ["shift_cipher"]
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"

  # testing
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "pry"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shift_cipher-1.1.0 shift_cipher.gemspec