From f4cf79a47362305c1c1d876dea58b84b248e09c4 Mon Sep 17 00:00:00 2001 From: taylormonacelli Date: Tue, 27 May 2014 11:43:09 -0700 Subject: [PATCH 1/2] Update README prerequisites inclues application source --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 003a73c..298cf80 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,8 @@ Note: This is done automatically if you use [CocoaPods](http://cocoapods.org/). ### Prerequisites +You need the source code for the App you're testing. You can't start with only the compiled application. You need the source. + Ensure Xcode is up-to-date. Install rvm via the instructions. Ensure your after_cd_bundler rvm hook is enabled: From 4221904e49a1408b7a163b8b8b6261e5c7fe1043 Mon Sep 17 00:00:00 2001 From: Taylor Monacelli Date: Wed, 23 Oct 2024 11:15:50 -0700 Subject: [PATCH 2/2] chore: migrate renovate.json to .renovaterc.json --- .renovaterc.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .renovaterc.json diff --git a/.renovaterc.json b/.renovaterc.json new file mode 100644 index 0000000..e6fc5f7 --- /dev/null +++ b/.renovaterc.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "packageRules": [ + { + "matchDepTypes": ["*"], + "automerge": true, + "automergeType": "branch", + "automergeStrategy": "fast-forward", + "requiredStatusChecks": null + } + ], + "platformAutomerge": true +}