Skip to content

Commit

Permalink
Change bounds in Gemfile, remove installing gems from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tboba committed Feb 16, 2024
1 parent 2fe313b commit 0225109
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 19 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ios-build-test-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jobs:
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn

- name: Install Ruby gems
run: gem install cocoapods -v 1.15.2

- name: Install pods
id: install_pods
continue-on-error: true
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ios-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Install Ruby gems
run: gem install cocoapods -v 1.15.2
- name: Install pods
id: install_pods
continue-on-error: true
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ios-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ jobs:
- name: Install node dependencies
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Install Ruby gems
run: gem install cocoapods -v 1.15.2
- name: Install pods
working-directory: ${{ env.WORKING_DIRECTORY }}/ios
run: pod install
Expand Down
4 changes: 1 addition & 3 deletions Example/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '>= 2.6.10'

# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'cocoapods', '~> 1.15.2'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
4 changes: 1 addition & 3 deletions FabricExample/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'cocoapods', '~> 1.15.2'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
4 changes: 1 addition & 3 deletions FabricTestExample/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'cocoapods', '~> 1.15.2'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
4 changes: 1 addition & 3 deletions TestsExample/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'cocoapods', '~> 1.15.2'
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'

0 comments on commit 0225109

Please sign in to comment.