=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 . =end lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "number_station/version" Gem::Specification.new do |spec| spec.name = "number_station" spec.version = NumberStation::VERSION spec.date = "2018-11-29" spec.authors = ["David Kirwan"] spec.email = ["davidkirwanirl@gmail.com"] spec.license = "GPL 3.0" spec.summary = "(WIP) Run your own number station!" spec.description = "(WIP) A collection of utilities to aid in running your own number station!" spec.homepage = "https://rubygems.org/gems/number_station" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "pastel" spec.add_dependency "thor" spec.add_development_dependency "bundler", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" end