Module: XCRes::FileHelper

Included in:
Analyzer, BuildCommand, ResourcesBuilder, XCAssets::Resource
Defined in:
lib/xcres/helper/file_helper.rb

Instance Method Summary collapse

Instance Method Details

#basename_without_ext(file_path) ⇒ String

Return the basename without its extname e.g: ‘dir/test.jpg’ => ‘test’

Parameters:

  • file_path (String)

Returns:

  • (String)


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