-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from Backbase/develop
Release 1.0.0
- Loading branch information
Showing
10 changed files
with
208 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'slather' | ||
gem 'nokogiri', '1.11.4' | ||
gem 'nokogiri', '1.12.5' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
require File.expand_path('parameters/appstore_params.rb', __dir__) | ||
require File.expand_path('parameters/project_params.rb', __dir__) | ||
|
||
USERNAME = APPSTORE_PARAMS[:APPSTORE_USERNAME] | ||
APPLE_ID = APPSTORE_PARAMS[:APPSTORE_APPLE_ID] | ||
XCCONFIG_PATH = PROJECT_PARAMS[:XCCONFIG_PATH] | ||
|
||
# --- Appstore | ||
|
||
# | ||
# ATTENTION: | ||
# | ||
# Deploying directly to AppStore | ||
# using `pilot`, `deliver` or their aliases require | ||
# authentication to AppStoreConnect. | ||
# | ||
# In order to have this handled automatically in | ||
# your CI machine, you'll need an Application Specific Password | ||
# | ||
# Find more about it and how to generate yours in: | ||
# https://docs.fastlane.tools/best-practices/continuous-integration/#application-specific-passwords | ||
# | ||
|
||
desc 'deploy app to AppStore' | ||
private_lane :appstore_deploy do |options| | ||
# Retrieve app identifier from config | ||
app_identifier = get_xcconfig_value( | ||
path: XCCONFIG_PATH, | ||
name: 'V_BUNDLE_ID' | ||
) | ||
|
||
deliver( | ||
submit_for_review: false, | ||
automatic_release: false, | ||
force: true, # Skip HTMl report verification | ||
skip_metadata: true, | ||
skip_screenshots: true, | ||
skip_binary_upload: false | ||
) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
require File.expand_path('parameters/match_params.rb', __dir__) | ||
|
||
CODE_SIGNING_IDENTITY = MATCH_PARAMS[:TEAMNAME] | ||
TEAM_ID = MATCH_PARAMS[:TEAMID] | ||
EXPORT_METHOD = MATCH_PARAMS[:EXPORTMETHOD] | ||
|
||
# This is the example Deliverfile | ||
# | ||
# You can remove those parts you don't need | ||
# | ||
# Everything next to a # is a comment and will be ignored | ||
|
||
######################################## | ||
# App Metadata | ||
######################################## | ||
|
||
apple_id '' | ||
|
||
# This folder has to include one folder for each language | ||
# More information about automatic screenshot upload: | ||
# https://github.com/KrauseFx/deliver#upload-screenshots-to-itunes-connect | ||
screenshots_path "" | ||
|
||
app_icon "" | ||
|
||
title({ | ||
"en-US" => "" | ||
}) | ||
|
||
# This log has to include the changes made for the release. It has been commented out for the purpose of developer interest to choose either from repository or from fastlane. | ||
# changelog({ | ||
# "en-US" => "iPhone 6 (Plus) Support" | ||
# }) | ||
|
||
description({ | ||
'en-US' => "" | ||
}) | ||
|
||
copyright "" | ||
|
||
app_review_information({ | ||
first_name: "", | ||
last_name: "", | ||
phone_number: "", | ||
email_address: "", | ||
demo_user: "", | ||
demo_password: "", | ||
notes: "" | ||
}) | ||
|
||
primary_category "" | ||
secondary_category "" | ||
|
||
ratings_config_path "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters