Sha256: 1cdb1ade70d3f162c0f8c399a69c9da70f70bf71821e3eced7f8aa151eef9c50

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cryptoconditions_ruby/version'

Gem::Specification.new do |spec|
  spec.name          = "cryptoconditions_ruby"
  spec.version       = CryptoconditionsRuby::VERSION
  spec.authors       = ["Adam Groves"]
  spec.email         = ["adam.groves@gmail.com"]

  spec.summary       = %q{Cryptoconditions for Ruby}
  spec.description   = %q{Cryptoconditions gem based on the python cryptoconditions library}
  spec.homepage      = "https://github.com/LicenseRocks/cryptoconditions_ruby"
  spec.license       = "Apache License 2.0"

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

  spec.add_runtime_dependency 'rbnacl', '~> 4.0.1'
  spec.add_runtime_dependency 'base32', '~> 0.3.2'
  spec.add_runtime_dependency 'duplicate', '~> 1.1.1'

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "pry", "~> 0.10.4"
  spec.add_development_dependency "rubocop", "~> 0.48"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cryptoconditions_ruby-0.5.2 cryptoconditions_ruby.gemspec
cryptoconditions_ruby-0.5.1 cryptoconditions_ruby.gemspec