# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rash/shell/version' Gem::Specification.new do |spec| spec.name = 'rash-shell' spec.version = Rash::Shell::VERSION spec.authors = ['Jean Mertz'] spec.email = ['jean@mertz.fm'] spec.summary = 'Write a short summary, because Rubygems requires one.' spec.description = 'Write a longer description or delete this line.' spec.homepage = 'https://github.com/JeanMertz/rash-shell' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.11' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_dependency 'pry', '~> 0.12' spec.add_dependency 'pry-theme', '~> 1' end