Sha256: d31250ead0a470c5c4a479cf5436fa491d0dd5eb4ef9bf018538218b1596b8ff

Contents?: true

Size: 1.33 KB

Versions: 5

Compression:

Stored size: 1.33 KB

Contents

# -*- Ruby -*-
# -*- encoding: utf-8 -*-
require 'rake'
require 'rubygems' unless 
  Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/columnize/version" unless 
  Object.const_defined?(:'Columnize')

Gem::Specification.new do |spec|
  spec.authors      = ['R. Bernstein']
  spec.date         = Time.now
  spec.description  = '
In showing a long lists, sometimes one would prefer to see the value
arranged aligned in columns. Some examples include listing methods
of an object or debugger commands. 
See Examples in the rdoc documentation for examples.
'
  spec.email        = 'rockyb@rubyforge.net'
  spec.files        = `git ls-files`.split("\n")
  spec.homepage     = 'https://github.com/rocky/columnize'
  spec.name         = 'columnize'
  spec.licenses     = ['Ruby', 'GPL2']
  spec.platform     = Gem::Platform::RUBY
  spec.require_path = 'lib'
  spec.required_ruby_version = '>= 1.8.2'
  spec.rubyforge_project = 'columnize'
  spec.summary      = 'Module to format an Array as an Array of String aligned in columns'
  spec.version      = Columnize::VERSION
  spec.has_rdoc     = true
  spec.extra_rdoc_files = %w(README.md lib/columnize.rb COPYING)

  # Make the readme file the start page for the generated html
  spec.rdoc_options += %w(--main README)
  spec.rdoc_options += ['--title', "Columnize #{Columnize::VERSION} Documentation"]

end

Version data entries

5 entries across 3 versions & 3 rubygems

Version Path
candlepin-api-0.4.0 bundle/ruby/1.8/gems/columnize-0.3.6/columnize.gemspec
candlepin-api-0.4.0 bundle/ruby/1.9.1/gems/columnize-0.3.6/columnize.gemspec
candlepin-api-0.4.0 bundle/ruby/gems/columnize-0.3.6/columnize.gemspec
radiant-1.0.0 ruby-debug/ruby/1.8/gems/columnize-0.3.6/columnize.gemspec
columnize-0.3.6 columnize.gemspec