# dsym_uuid_extractor This gem provides a ruby module to extract UUID/architecture info from a dSYM file generated by Apple's Xcode or a similar environment. ## Installation Add this line to your application's Gemfile: ```ruby gem 'dsym_uuid_extractor' ``` And then execute: $ bundle ## Usage ```ruby DsymUuidExtractor.run(dsym_file_path) => {'4383705b-72ab-4b89-815e-dae35cce2e52'=>'arm64','048c3790-07fb-428d-a330-91fe1d30d2c1'=>'armv7s'} ```