Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion example/Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '2.7.4'
ruby '>= 2.7.4'

gem 'cocoapods', '~> 1.11', '>= 1.11.2'
gem 'rexml', '>= 3.4.2'
# add to example/Gemfile
gem 'json', '>= 2.17.1.2'
gem 'activesupport', '>= 7.2.3.1'
31 changes: 16 additions & 15 deletions example/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.9)
activesupport (7.1.6)
CFPropertyList (3.0.8)
activesupport (7.2.3.1)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
mutex_m
minitest (>= 5.1, < 6)
securerandom (>= 0.3)
tzinfo (~> 2.0)
tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
algoliasearch (1.27.5)
Expand All @@ -23,7 +22,7 @@ GEM
atomos (0.1.3)
base64 (0.3.0)
benchmark (0.5.0)
bigdecimal (3.3.1)
bigdecimal (4.1.2)
claide (1.1.0)
cocoapods (1.16.2)
addressable (~> 2.8)
Expand Down Expand Up @@ -63,8 +62,8 @@ GEM
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.3.5)
connection_pool (2.5.5)
concurrent-ruby (1.3.7)
connection_pool (3.0.2)
drb (2.2.3)
escape (0.0.4)
ethon (0.15.0)
Expand All @@ -75,11 +74,11 @@ GEM
gh_inspector (1.1.3)
httpclient (2.9.0)
mutex_m
i18n (1.14.7)
i18n (1.15.2)
concurrent-ruby (~> 1.0)
json (2.17.1)
json (2.20.0)
logger (1.7.0)
minitest (5.26.1)
minitest (5.27.0)
molinillo (0.8.0)
mutex_m (0.3.0)
nanaimo (0.4.0)
Expand All @@ -88,7 +87,7 @@ GEM
public_suffix (4.0.7)
rexml (3.4.4)
ruby-macho (2.5.1)
securerandom (0.3.2)
securerandom (0.4.1)
typhoeus (1.5.0)
ethon (>= 0.9.0, < 0.16.0)
tzinfo (2.0.6)
Expand All @@ -105,11 +104,13 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 7.2.3.1)
cocoapods (~> 1.11, >= 1.11.2)
json (>= 2.17.1.2)
rexml (>= 3.4.2)

RUBY VERSION
ruby 2.7.4p191
ruby 2.7.4p191

BUNDLED WITH
2.4.22
4.0.9
20 changes: 10 additions & 10 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "^0.71.19"
"react-native": "0.71.19"
},
"resolutions": {
"@babel/runtime": "^7.26.10",
"@babel/helpers": "^7.26.10",
"brace-expansion": "^1.1.12"
"@babel/runtime": "7.26.10",
"@babel/helpers": "7.26.10",
"brace-expansion": "1.1.12"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"babel-plugin-module-resolver": "^5.0.0",
"metro-react-native-babel-preset": "^0.67.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"@babel/core": "7.12.10",
"@babel/runtime": "7.12.5",
"babel-plugin-module-resolver": "5.0.0",
"metro-react-native-babel-preset": "0.67.0",
"patch-package": "6.4.7",
"postinstall-postinstall": "2.1.0",
"react-test-renderer": "18.1.0"
}
}
14 changes: 14 additions & 0 deletions example/patches/react-native+0.71.19.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/node_modules/react-native/template/Gemfile b/node_modules/react-native/template/Gemfile
index 68f1b2a..e3d722d 100644
--- a/node_modules/react-native/template/Gemfile
+++ b/node_modules/react-native/template/Gemfile
@@ -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 'activesupport', '>= 6.1.7.3', '< 7.1.0'
+gem 'cocoapods', '>= 1.13'
+gem 'activesupport', '>= 7.2.3.1'
Loading
Loading