forked from fastlane-old/deliver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeliver.gemspec
39 lines (33 loc) · 1.75 KB
/
deliver.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
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'deliver/version'
Gem::Specification.new do |spec|
spec.name = "deliver"
spec.version = Deliver::VERSION
spec.authors = ["Felix Krause"]
spec.email = ["[email protected]"]
spec.summary = %q{Upload screenshots, metadata and your app to the App Store using a single command}
spec.description = %q{Upload screenshots, metadata and your app to the App Store using a single command}
spec.homepage = "https://fastlane.tools"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.0.0'
spec.files = Dir["lib/**/*"] + %w{ bin/deliver README.md LICENSE }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency 'fastlane_core', '>= 0.2.0' # all shared code and dependencies
spec.add_dependency 'nokogiri', '~> 1.6.5' # parsing and updating XML files
spec.add_dependency 'fastimage', '~> 1.6.3' # fetch the image sizes from the screenshots
spec.add_dependency 'rubyzip', '~> 1.1.6' # needed for extracting the ipa file
spec.add_dependency 'plist', '~> 3.1.0' # for reading the Info.plist of the ipa file
spec.add_dependency 'prawn' # generating PDF file for the applied changes
# Development only
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 3.1.0'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'yard', '~> 0.8.7.4'
spec.add_development_dependency 'webmock', '~> 1.19.0'
spec.add_development_dependency 'codeclimate-test-reporter'
end