2021-04-21 17:58:36 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-05-11 13:39:58 +02:00
|
|
|
# workaround https://github.com/CocoaPods/CocoaPods/issues/11355
|
2022-11-04 05:20:27 +01:00
|
|
|
# sed -i '' $'1s/^/source "https:\\/\\/github.com\\/CocoaPods\\/Specs.git"\\\n\\\n/' Podfile
|
2022-05-11 13:39:58 +02:00
|
|
|
|
2022-04-29 09:06:28 +02:00
|
|
|
# Install Ruby Bundler
|
2022-04-29 10:49:24 +02:00
|
|
|
gem install bundler:2.3.11
|
2022-04-29 09:06:28 +02:00
|
|
|
|
|
|
|
# Install Ruby Gems
|
|
|
|
bundle install
|
2021-04-27 10:29:10 +02:00
|
|
|
|
2022-10-08 08:01:21 +02:00
|
|
|
# Setup notification endpoint
|
|
|
|
bundle exec arkana
|
2021-04-27 10:29:10 +02:00
|
|
|
|
2022-04-29 09:06:28 +02:00
|
|
|
bundle exec pod install
|