Skip to content

Commit fd203f8

Browse files
authored
fix: bundler issues during builds (#517)
1 parent 17bc450 commit fd203f8

File tree

4 files changed

+12
-18
lines changed

4 files changed

+12
-18
lines changed

bun.lockb

-3.63 KB
Binary file not shown.

example/Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ source 'https://rubygems.org'
33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
44
ruby '>= 2.6.10'
55

6-
gem 'cocoapods', '>= 1.14'
6+
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
7+
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
8+
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'

example/Gemfile.lock

+7-15
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,10 @@ GEM
55
base64
66
nkf
77
rexml
8-
activesupport (7.1.3.2)
9-
base64
10-
bigdecimal
8+
activesupport (7.0.8.6)
119
concurrent-ruby (~> 1.0, >= 1.0.2)
12-
connection_pool (>= 2.2.5)
13-
drb
1410
i18n (>= 1.6, < 2)
1511
minitest (>= 5.1)
16-
mutex_m
1712
tzinfo (~> 2.0)
1813
addressable (2.8.6)
1914
public_suffix (>= 2.0.2, < 6.0)
@@ -22,7 +17,6 @@ GEM
2217
json (>= 1.5.1)
2318
atomos (0.1.3)
2419
base64 (0.2.0)
25-
bigdecimal (3.1.7)
2620
claide (1.1.0)
2721
cocoapods (1.15.2)
2822
addressable (~> 2.8)
@@ -62,9 +56,7 @@ GEM
6256
netrc (~> 0.11)
6357
cocoapods-try (1.2.0)
6458
colored2 (3.1.2)
65-
concurrent-ruby (1.2.3)
66-
connection_pool (2.4.1)
67-
drb (2.2.1)
59+
concurrent-ruby (1.3.4)
6860
escape (0.0.4)
6961
ethon (0.16.0)
7062
ffi (>= 1.15.0)
@@ -73,12 +65,11 @@ GEM
7365
fuzzy_match (2.0.4)
7466
gh_inspector (1.1.3)
7567
httpclient (2.8.3)
76-
i18n (1.14.4)
68+
i18n (1.14.6)
7769
concurrent-ruby (~> 1.0)
7870
json (2.7.2)
79-
minitest (5.22.3)
71+
minitest (5.25.1)
8072
molinillo (0.8.0)
81-
mutex_m (0.2.0)
8273
nanaimo (0.3.0)
8374
nap (1.1.0)
8475
netrc (0.11.0)
@@ -102,10 +93,11 @@ PLATFORMS
10293
ruby
10394

10495
DEPENDENCIES
105-
cocoapods (>= 1.14)
96+
activesupport (>= 6.1.7.5, != 7.1.0)
97+
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
10698

10799
RUBY VERSION
108100
ruby 2.7.6p219
109101

110102
BUNDLED WITH
111-
2.1.4
103+
2.5.23

example/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ PODS:
323323
- react-native-quick-base64 (2.1.2):
324324
- RCT-Folly (= 2021.07.22.00)
325325
- React-Core
326-
- react-native-quick-crypto (0.7.5):
326+
- react-native-quick-crypto (0.7.6):
327327
- OpenSSL-Universal
328328
- RCT-Folly (= 2021.07.22.00)
329329
- React
@@ -628,7 +628,7 @@ SPEC CHECKSUMS:
628628
React-logger: 8edc785c47c8686c7962199a307015e2ce9a0e4f
629629
react-native-fast-encoder: 6f59e9b08e2bc5a8bf1f36e1630cdcfd66dd18af
630630
react-native-quick-base64: 61228d753294ae643294a75fece8e0e80b7558a6
631-
react-native-quick-crypto: df499480b8be25084f8789752ffb0f1d9d1b4363
631+
react-native-quick-crypto: 03d888b32a7d58adfe93926ee226c1adc5519c6e
632632
react-native-safe-area-context: ab8f4a3d8180913bd78ae75dd599c94cce3d5e9a
633633
React-NativeModulesApple: b6868ee904013a7923128892ee4a032498a1024a
634634
React-perflogger: 31ea61077185eb1428baf60c0db6e2886f141a5a

0 commit comments

Comments
 (0)