1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# frozen_string_literal: true
require_relative "lib/console/version"
Gem::Specification.new do |spec|
spec.name = "console"
spec.version = Console::VERSION
spec.summary = "Beautiful logging for Ruby."
spec.authors = ["Samuel Williams", "Robert Schulze", "Bryan Powell", "Michael Adams", "Cyril Roelandt", "Cédric Boutillier", "Olle Jonsson"]
spec.license = "MIT"
spec.cert_chain = ['release.cert']
spec.homepage = "https://github.com/socketry/console"
spec.files = Dir.glob('{bake,lib}/**/*', File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 2.5"
spec.add_dependency "fiber-local"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end
|