forked from fastlane-old/deliver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeliver.gemspec
More file actions
54 lines (45 loc) · 2.7 KB
/
deliver.gemspec
File metadata and controls
54 lines (45 loc) · 2.7 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# 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 = ["krausefx@gmail.com"]
spec.summary = %q{Deliver - Continuous Deployment for iOS - automatically publish new app updates and app screenshots to the AppStore}
spec.description = %q{Using Deliver you can easily integrate a real continuous delivery
solution for iOS applications. You can update the app metadata, upload screenshots
in all languages for different screensizes to iTunesConnect and even publish a new
ipa file to iTunesConnect. You define your prefered deployment information once in a so called
Deliverfile and store it in git, to easily deploy from every machine, even your Continuos Integration server}
spec.homepage = "http://felixkrause.at"
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 'json' # Because sometimes it's just not installed
spec.add_dependency 'security', '~> 0.1.3' # Mac OS Keychain manager
spec.add_dependency 'highline', '~> 1.6.21' # user inputs (e.g. passwords)
spec.add_dependency 'nokogiri', '~> 1.6.3.1' # 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 'colored' # coloured terminal output
spec.add_dependency 'commander', '~> 4.2.0' # CLI parser
spec.add_dependency 'prawn' # generating PDF file for the applied changes
# Frontend Scripting
spec.add_dependency 'capybara', '~> 2.4.3' # for controlling iTC
spec.add_dependency 'poltergeist', '~> 1.5.1' # headless Javascript browser for controlling iTC
# 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'
spec.post_install_message = "This gem requires phantomjs. Install it using 'brew update && brew install phantomjs'"
end