Skip to content

Instantly share code, notes, and snippets.

@ephemeralsnow
Last active December 21, 2015 01:39
Show Gist options
  • Save ephemeralsnow/6228973 to your computer and use it in GitHub Desktop.
Save ephemeralsnow/6228973 to your computer and use it in GitHub Desktop.
Rubyで相対パスを使いたい場合とかのスニペット
File.expand_path(File.dirname(__FILE__))
=
File.expand_path('.', File.dirname(__FILE__))
=
File.expand_path('..', __FILE__)
File.dirname(File.expand_path(__FILE__))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment