Module: XCRes::FileHelper
- Included in:
- Analyzer, BuildCommand, ResourcesBuilder, XCAssets::Resource
- Defined in:
- lib/xcres/helper/file_helper.rb
Instance Method Summary collapse
-
#basename_without_ext(file_path) ⇒ String
Return the basename without its extname e.g: ‘dir/test.jpg’ => ‘test’.
Instance Method Details
#basename_without_ext(file_path) ⇒ String
Return the basename without its extname e.g: ‘dir/test.jpg’ => ‘test’
11 12 13 |
# File 'lib/xcres/helper/file_helper.rb', line 11 def basename_without_ext file_path File.basename file_path, File.extname(file_path) end |