Module: RakeScript::FileSystem
- Included in:
- RakeMethods
- Defined in:
- lib/rake_script/file_system.rb
Instance Method Summary collapse
-
#folder_exist?(path) ⇒ TruClass, FalseClass
Check if folder exists.
Instance Method Details
#folder_exist?(path) ⇒ TruClass, FalseClass
Check if folder exists.
8 9 10 |
# File 'lib/rake_script/file_system.rb', line 8 def folder_exist?(path) File.directory?(path) end |