I'm working on setting up NativeScript on OS X El Capitan , and I'm stuck at the point where I should install xcodeprojand cocoapods. Almost everything I try to do with gemshows the same error:
$ sudo gem install xcodeproj
ERROR: While executing gem ... (Errno::EINVAL)
Invalid argument
The following commands show the same error if I run it with sudoor not:
$ gem update
$ gem update
$ gem install whatever
$ gem install cocoapods
I have the following versions:
$ ruby --version
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]
$ gem --version
2.6.7
I tried some of the help I found on the Internet, including reinstalling gemand rubyrestarting, but nothing helped.
I assume I have a configuration problem with Ruby.
Any suggestions for troubleshooting?