Sha256: fb0f12425b0202854801b54e54396d595619eaa4ee625b943d060ec55104b84f
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
=begin Ruby Number Station Author: David Kirwan https://gitub.com/davidkirwan Licence: GPL 3.0 NumberStation is a collection of utilities to aid in the running of a number station Copyright (C) 2018 David Kirwan This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. =end require 'pastel' require 'json' require 'logger' require 'number_station/cli' require 'number_station/config_reader' require 'number_station/encrypt_message' require 'number_station/decrypt_message' require 'number_station/make_onetime_pad' require 'number_station/phonetic_conversion' require 'number_station/version' module NumberStation def self.command?(name) `which #{name}` $?.success? end def self.set_log(log) @log = log end def self.log() return @log end def self.set_data(data) @data = data end def self.data() return @data end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
number_station-0.1.1 | lib/number_station.rb |
number_station-0.1.0 | lib/number_station.rb |