Skip to content

Instantly share code, notes, and snippets.

@sbellware
Created August 5, 2010 19:25
Show Gist options
  • Select an option

  • Save sbellware/510244 to your computer and use it in GitHub Desktop.

Select an option

Save sbellware/510244 to your computer and use it in GitHub Desktop.
require 'lib/plugin'
class Bar < Plugin
end
puts Bar.dirname
# in lib/plugin
class Plugin
def self.dirname
eval "File.expand_path(File.dirname(__FILE__))"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment