Sha256: 6adb235dc1ef1f409fdbd186231d6f52f6bb0e6ea0cfe00160fba0ecd4fd8e3e
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
# 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rash-shell-0.3.1 | rash-shell.gemspec |
rash-shell-0.3.0 | rash-shell.gemspec |
rash-shell-0.2.0 | rash-shell.gemspec |