Skip to content

Instantly share code, notes, and snippets.

@mojombo
Created December 22, 2008 04:58
Show Gist options
  • Select an option

  • Save mojombo/38893 to your computer and use it in GitHub Desktop.

Select an option

Save mojombo/38893 to your computer and use it in GitHub Desktop.
>> Dir.entries('_layouts')
=> [".", "..", ".svn"]
>> Dir.entries('_layouts').reject { |x| File.directory?(x) }
=> [".svn"]
>> Dir.chdir('_layouts')
=> 0
>> Dir.entries('.')
=> [".", "..", ".svn"]
>> Dir.entries('.').reject { |x| File.directory?(x) }
=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment