Sha256: 6b390387de0937a6b83281ccde5611ea8937ff15d82acb50dc5647e9ca164989
Contents?: true
Size: 867 Bytes
Versions: 2
Compression:
Stored size: 867 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'shelltastic/version' Gem::Specification.new do |gem| gem.name = "shelltastic" gem.version = ShellTastic::VERSION gem.authors = ["Bradley Smith"] gem.email = ["bradleydsmith@gmail.com"] gem.description = %q{Shelltastic is a simple *nix shell wrapper} gem.summary = %q{Shelltastic is a simple *nix shell wrapper} gem.homepage = "" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_dependency('open4', '>= 1.3.0') gem.add_development_dependency 'rake' gem.add_development_dependency 'rspec' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shelltastic-0.4.0 | shelltastic.gemspec |
shelltastic-0.3.0 | shelltastic.gemspec |