Reputation: 179
My iMac(Mac OS Sierra V10.12) doesn't have Xcode. so I get below error during 'bundle install'. When I tried to install Xcode from AppStore, I realized it's of size 4 GB. SO just wanted to ensure I am not doing something wrong.
current directory: /Users/xecckq4/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/capybara-webkit-1.11.1 /Users/xecckq4/.rbenv/versions/2.3.1/bin/ruby -r ./siteconf20170813-3495-gf683v.rb extconf.rb Project ERROR: Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild.
* extconf.rb failed *
Upvotes: 0
Views: 32
Reputation: 10673
extconf.rb
configures the makefile that specifies all the things you'll need to build a gem. In your case, XCode is required, so yes, by all means, download and install it.
If you're on a Mac, you're probably going to be making use of Homebrew as well, which also depends on XCode (as do a number of other gems you'll run into sooner or later), so even if decided to ignore this issue, you'd need XCode sooner or later.
Upvotes: 1