Sha256: ea1bfd83e4bcf9ace0ad9772d596d00935d351dae18c42279fa942a65da513cd

Contents?: true

Size: 1021 Bytes

Versions: 1

Compression:

Stored size: 1021 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/cryptosphere/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Tony Arcieri"]
  gem.email         = ["tony.arcieri@gmail.com"]
  gem.description   = "A decentralized globally distributed peer-to-peer data archive"
  gem.summary       = "The Cryptosphere is a P2P cryptosystem for publishing and securely distributing content anonymously with no central point of failure"
  gem.homepage      = "http://github.com/tarcieri/cryptosphere"

  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.name          = "cryptosphere"
  gem.require_paths = ["lib"]
  gem.version       = Cryptosphere::VERSION
  
  gem.add_dependency "celluloid"
  gem.add_dependency "thor"
  gem.add_dependency "hkdf"

  gem.add_development_dependency "rake"
  gem.add_development_dependency "rspec"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cryptosphere-0.0.0 cryptosphere.gemspec