# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'dsym_uuid_extractor/version' Gem::Specification.new do |spec| spec.name = "dsym_uuid_extractor" spec.version = DsymUuidExtractor::VERSION spec.authors = ["Marwan Tanager"] spec.email = ["marwan.tanager@gmail.com"] spec.summary = "dSYM UUID/arch extractor" spec.description = "Extract UUIDs/architecture information from a standard dSYM file" spec.homepage = "https://github.com/Instabug/dsym_uuid_extractor" if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_dependency "ffi", "~> 1.9", ">= 1.9.10" end