-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathipa_analyzer.gemspec
29 lines (23 loc) · 1.06 KB
/
ipa_analyzer.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true
$:.push File.expand_path('lib', __dir__)
require 'ipa_analyzer/version'
Gem::Specification.new do |s|
s.name = 'ipa_analyzer'
s.authors = ['Bitrise', 'Viktor Benei']
s.email = '[email protected]'
s.license = 'MIT'
s.homepage = 'https://github.com/bitrise-io/ipa_analyzer'
s.version = IpaAnalyzer::VERSION
s.platform = Gem::Platform::RUBY
s.summary = 'iOS .ipa analyzer'
s.description = 'Analyze an iOS .ipa file. Can be used as a CLI and can print the information in JSON so it can be used by other tools.'
s.add_runtime_dependency 'plist', '~> 3.1', '>= 3.1.0'
s.add_runtime_dependency 'rubyzip', '~> 1.1', '>= 1.1.7'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.files = Dir['./**/*'].reject { |file| file =~ %r{./(bin|log|pkg|script|spec|test|vendor)} }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = ['ipa_analyzer']
s.require_paths = ['lib']
end