Move ERB into lib?

This commit is contained in:
Netscape Navigator 2020-04-18 12:45:51 -05:00
parent ab66ecd25b
commit 697b0da1df
6 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ require "set"
module Pigeon
SEED_CONFIG_KEY = "SEED"
VERSION = "0.0.2"
TPL_DIR = "views"
TPL_DIR = File.join("lib", "views")
PIGEON_DB_PATH = File.join("db.pigeon")
DEFAULT_BUNDLE_PATH = "./pigeon.bundle"

Binary file not shown.

View File

@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.description = "A Ruby client for Pigeon, an offline peer-to-peer protocol"
s.authors = ["Navigator"]
s.email = "netscape_navigator@tilde.town"
s.files = (Dir["views/**/*.erb"] + Dir["lib/**/*.rb"])
s.files = (Dir["lib/**/*.erb"] + 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"