would it make sense to include the version of Bundler used? #619
Replies: 2 comments
-
not really, we are taking things in a different direction actually by removing the ruby requirements: facebook/react-native@e57b6d1 we'll have that commit land in all currently supported versions (0.69/0.70/0.71) in the next patch releases and 0.72 |
Beta Was this translation helpful? Give feedback.
-
Just a small note to echo what @kelset mentioned: we removed
Nope, you should not care about the Bundler version used |
Beta Was this translation helpful? Give feedback.
-
the react-native template has taken steps to include versions of toolsets used, with files such a
Gemfile
(Cocoapods),.node-version
and.ruby-version
.the react-native template, however, does not come with various
.lock
files, such asyarn.lock
,Podfile.lock
andGemfile.lock
.if you go to the bottom of the
Gemfile.lock
file, you can see these lines of code:we already have the RUBY VERSION in the
.ruby-version
file, so we can confirm that this is fine. but we dont have the version of Bundler, which is shown under BUNDLED WITH. this means that until you runbundle install
to generate theGemfile.lock
file, you wont see the version of Bundler you use.should we worry/care about the version of Bundler used? does it make sense to include it in the project template?
Beta Was this translation helpful? Give feedback.
All reactions