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
#!/bin/bash | |
# Note files need to be in correct order to start with. ie. number chapters first | |
# Required tools: | |
# * http://www.pdflabs.com/tools/pdftk-server/ | |
# * brew install mupdf | |
# Works as follows: |
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
module Fastlane | |
module Actions | |
module SharedValues | |
GET_PROVISIONING_PROFILE_SPECIFIER_CUSTOM_VALUE = :GET_PROVISIONING_PROFILE_SPECIFIER_CUSTOM_VALUE | |
end | |
class GetProvisioningProfileSpecifierAction < Action | |
def self.run(params) | |
profile_path = params[:profile] | |
UI.message "Provisioning profile: #{profile_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
require 'produce' | |
require 'produce/merchant' | |
module Fastlane | |
module Actions | |
class CreateMerchantAction < Action | |
def self.run(params) | |
Produce.config = params | |
Produce::Merchant.new.create(params, nil) | |
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
require 'produce' | |
require 'produce/merchant' | |
module Fastlane | |
module Actions | |
class AssociateMerchantsAction < Action | |
def self.run(params) | |
Produce.config = params | |
Produce::Merchant.new.associate(nil, params[:merchant_identifiers]) | |
end |