Skip to content

Commit

Permalink
Merge pull request #8 from deivid-rodriguez/travis-build
Browse files Browse the repository at this point in the history
Travis build
  • Loading branch information
rocky committed Jun 13, 2013
2 parents 18505fe + e676cf1 commit 84a8dfd
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
@@ -1,4 +1,7 @@
language: ruby

rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
20 changes: 20 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,20 @@
PATH
remote: .
specs:
columnize (0.8.9)

GEM
remote: https://rubygems.org/
specs:
json (1.8.0)
rake (10.0.4)
rdoc (4.0.1)
json (~> 1.4)

PLATFORMS
ruby

DEPENDENCIES
columnize!
rake
rdoc
8 changes: 5 additions & 3 deletions columnize.gemspec
@@ -1,9 +1,9 @@
# -*- Ruby -*-
# -*- encoding: utf-8 -*-
require 'rake'
require 'rubygems' unless
require 'rubygems' unless
Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/columnize/version" unless
require File.dirname(__FILE__) + "/lib/columnize/version" unless
Object.const_defined?(:'Columnize')

Gem::Specification.new do |spec|
Expand All @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
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.
of an object or debugger commands.
See Examples in the rdoc documentation for examples.
'
spec.email = 'rockyb@rubyforge.net'
Expand All @@ -33,4 +33,6 @@ See Examples in the rdoc documentation for examples.
spec.rdoc_options += %w(--main README)
spec.rdoc_options += ['--title', "Columnize #{Columnize::VERSION} Documentation"]

spec.add_development_dependency 'rdoc'
spec.add_development_dependency 'rake'
end

0 comments on commit 84a8dfd

Please sign in to comment.