Sha256: 50999962bc748773f70d307e3d4e8c1346f53f86d7db3a12d3429be257394820
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $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 'rake', '~> 10.0' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_dependency 'pry' spec.add_dependency 'pry-theme' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rash-shell-0.1.1 | rash-shell.gemspec |
rash-shell-0.1.0 | rash-shell.gemspec |