Couldn't found Gemfile in react-native

319 Views Asked by At

I cloned react-native project from github. I tried to run on iOS simulator when I run bundle install it is saying Couldn't found Gemfile. I don't have Gemfile in my project directory. How I can create Gemfile?

Thanks

1

There are 1 best solutions below

0
spickermann On

You can use bundle init to create a Gemfile in the current working directory.

Or you can create a very basic Gemfile manually with this content:

# frozen_string_literal: true

source "https://rubygems.org"

# gem "rails"