Sha256: 94ccdf930ba0d3ae6e598abc948d6e9c048cef0e392d7fa0390163810eaa1a70
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dsym_uuid_extractor-0.1.0 | dsym_uuid_extractor.gemspec |