Skip to content

Commit

Permalink
ci: more ruby fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
polito-mobile committed May 14, 2024
1 parent 22390e0 commit 56961c0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ install_if -> { RUBY_PLATFORM =~ /darwin/ } do
gem 'cocoapods', '~> 1.14', '>= 1.14.3'
end

plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
plugins_path = File.join(File.dirname(__FILE__), 'ios', 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)

plugins_path = File.join(File.dirname(__FILE__), 'android', 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)
5 changes: 5 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ GEM
xcodeproj (>= 1.13.0, < 2.0.0)
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
fastlane-plugin-sentry (1.22.1)
os (~> 1.1, >= 1.1.4)
fastlane-plugin-versioning_android (0.1.1)
ffi (1.16.3)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
Expand Down Expand Up @@ -286,6 +289,8 @@ PLATFORMS
DEPENDENCIES
cocoapods (~> 1.14, >= 1.14.3)
fastlane
fastlane-plugin-sentry
fastlane-plugin-versioning_android

RUBY VERSION
ruby 3.1.4p223
Expand Down
9 changes: 7 additions & 2 deletions ios/fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## fastlane documentation
fastlane documentation
----

# Installation

Expand All @@ -20,13 +21,17 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
[bundle exec] fastlane ios release
```



### ios verify

```sh
[bundle exec] fastlane ios verify
```

---


----

This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.

Expand Down

0 comments on commit 56961c0

Please sign in to comment.