Skip to content

Instantly share code, notes, and snippets.

View Raven24's full-sized avatar

Florian Staudacher Raven24

  • Self-employed
  • Vienna, Austria
  • X @raven24
View GitHub Profile
@Raven24
Raven24 / bundle_gems_overview_table.rb
Created February 23, 2012 16:24 — forked from groovehunter/bundle_gems_overview_table
Display table with all gems in a bundle, each with ie. summary and description, render in MediaWiki table
require "rubygems"
require "bundler"
dia = '/home/florian/src/diaspora'
Dir.chdir dia
def allm obj
obj.methods.sort.each { |m|
puts m
}