We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e311225 appears to have introduced this problem.
$ ruby /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb Traceback (most recent call last): 5: from /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:1:in `<main>' 4: from /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:2:in `<module:Xcodeproj>' 3: from /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:3:in `<class:Project>' 2: from /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:4:in `<module:Object>' 1: from /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:8:in `<class:XCBuildConfiguration>' /Users/kent/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/xcodeproj-1.5.8/lib/xcodeproj/project/object/helpers/build_settings_array_settings_by_object_version.rb:27:in `<module:BuildSettingsArraySettingsByObjectVersion>': undefined method `to_set' for #<Array:0x00007fe45306c090> (NoMethodError)
I think to_set needs to be to_s.
to_set
to_s
The text was updated successfully, but these errors were encountered:
thanks for pointing this out, needs to be a require 'set' at the top of the file. PR incoming
require 'set'
Sorry, something went wrong.
#573
No branches or pull requests
e311225 appears to have introduced this problem.
I think
to_set
needs to beto_s
.The text was updated successfully, but these errors were encountered: