Sha256: 80fb58832c5357d4dcd83e3bf6ebb5feabbfc33116ddb51fbc0966a4489d1a1e

Contents?: true

Size: 950 Bytes

Versions: 2

Compression:

Stored size: 950 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 that you can use in your own applications.}
  gem.summary       = %q{Shelltastic is a simple *nix shell wrapper.}
  gem.homepage      = "https://github.com/bradleyd/shelltastic"

  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-1.0.0 shelltastic.gemspec
shelltastic-0.5.0 shelltastic.gemspec