Pigeon v0.0.1

This commit is contained in:
Netscape Navigator 2020-04-18 12:31:57 -05:00
parent d6553aa632
commit b2b1731f51
3 changed files with 3 additions and 4 deletions

View File

@ -3,9 +3,6 @@ require "ed25519"
require "securerandom"
require "set"
# Remove this when we launch or add ENVs:
require "pry"
module Pigeon
SEED_CONFIG_KEY = "SEED"
VERSION = "0.0.1"

BIN
pigeon-0.0.1.gem Normal file

Binary file not shown.

View File

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = "pigeon"
s.version = "0.0.0"
s.version = "0.0.1"
s.date = "2020-04-20"
s.summary = "An offline peer-to-peer protocol"
s.description = "A Ruby client for Pigeon, an offline peer-to-peer protocol"
@ -9,4 +9,6 @@ Gem::Specification.new do |s|
s.files = Dir["lib/**/*.rb"]
s.homepage = "https://tildegit.org/PigeonProtocolConsortium/pigeon_ruby"
s.license = "GPL-3.0-or-later"
s.add_runtime_dependency "thor", "~> 0.20", ">= 0.20.3"
s.add_runtime_dependency "ed25519", "~> 1.2", ">= 1.2.4"
end