Sha256: c6e35c8d5e8865903411d56831fbd98b285a98fc3d55f4a1b12f2034975a867c
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'termichunk/version' Gem::Specification.new do |spec| spec.name = "termichunk" spec.version = TermiChunk::VERSION spec.authors = ["Kevin McDonald"] spec.email = ["kevinstuffandthings@gmail.com"] spec.summary = %q{Organize chunks of text within terminals} spec.description = spec.summary spec.homepage = "https://github.com/kevinstuffandthings/termichunk" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "pry" spec.add_development_dependency "pry-byebug" spec.add_development_dependency "rack-test" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "yard" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
termichunk-0.0.4 | termichunk.gemspec |
termichunk-0.0.3 | termichunk.gemspec |
termichunk-0.0.2 | termichunk.gemspec |