Skip to content

Instantly share code, notes, and snippets.

Created December 2, 2014 22:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c14a803f35e81c3662de to your computer and use it in GitHub Desktop.
Save anonymous/c14a803f35e81c3662de to your computer and use it in GitHub Desktop.
class Report::Client
end
STDERR.puts "#{'='*40}"
STDERR.puts caller
STDERR.puts "#{'-'*40}"
STDERR.puts $".select { |x| x.include? "report" }
STDERR.puts "#{'='*40}"
require "client"
class Report < ActiveRecord::Base
end
require "rubygems"
require "active_support"
require "active_record"
Dependencies.mechanism = :require
Dependencies.load_paths = [ '.' ]
require "report"
puts "Report required"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment