Skip to content

Commit

Permalink
Bump dependencies to avoid SIGABORT with Xcode 9
Browse files Browse the repository at this point in the history
xcodeproj-1.1.0 was using a private framework from within Xcode.app
bundle to generate the xcodeproj (using ffi to call Apple's private
C/ObjC library). That private framework was updated in Xcode 9 and
its API has changed, leading to a SIGABORT during the ffi call if
Xcode 9 was xcode-select'd.

More recent versions of xcodeproj fixed that problem by not relying
on that private framework anymore, using the nanaimo gem instead
  • Loading branch information
Olivier Halligon authored and gfontenot committed Nov 20, 2017
1 parent 0a931c7 commit 1353bf3
Showing 1 changed file with 22 additions and 31 deletions.
53 changes: 22 additions & 31 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,39 +1,30 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.6)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
claide (1.0.0)
colored (1.2)
diff-lcs (1.2.5)
CFPropertyList (2.3.5)
claide (1.0.2)
colored2 (3.1.2)
diff-lcs (1.3)
highline (1.7.8)
i18n (0.7.0)
json (1.8.3)
minitest (5.9.0)
rspec (3.4.0)
rspec-core (~> 3.4.0)
rspec-expectations (~> 3.4.0)
rspec-mocks (~> 3.4.0)
rspec-core (3.4.1)
rspec-support (~> 3.4.0)
rspec-expectations (3.4.0)
nanaimo (0.2.3)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.0)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-mocks (3.4.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.4.0)
rspec-support (3.4.1)
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
xcodeproj (1.1.0)
activesupport (>= 3)
claide (>= 1.0.0, < 2.0)
colored (~> 1.2)
rspec-support (~> 3.7.0)
rspec-support (3.7.0)
xcodeproj (1.5.3)
CFPropertyList (~> 2.3.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.2.3)

PLATFORMS
ruby
Expand All @@ -44,4 +35,4 @@ DEPENDENCIES
xcodeproj (~> 1.0)

BUNDLED WITH
1.11.2
1.16.0

0 comments on commit 1353bf3

Please sign in to comment.