Sha256: 2b9a5c1fa05e699fe37cd9db755f0918649c6f4e3757dfb9e1956f12d214a286

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "geordi/version"

Gem::Specification.new do |s|
  s.name        = "geordi"
  s.version     = Geordi::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Henning Koch"]
  s.email       = ["henning.koch@makandra.de"]
  s.homepage    = "http://makandra.com"
  s.summary     = 'Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.'
  s.description = 'Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.'
  s.license     = 'MIT'

  s.rubyforge_project = "geordi"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # s.add_development_dependency 'debugger'

  s.post_install_message = <<-ATTENTION

    ********************************************

    geordi 1.0.0 moves most of the scripts to
    the `geordi` binary. Run `geordi` and
    `geordi help <cmd>` for further information.

    Tip: Create an alias for geordi for quick 
    access. Add this to your ~/.bashrc:

      alias g="geordi"

    ********************************************

  ATTENTION
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
geordi-1.0.1 geordi.gemspec
geordi-1.0.0 geordi.gemspec