-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pacman install within a parallel bundler install -jX
pacman invocation must be serialized to avoid locking error. Fixes #397
- Loading branch information
Showing
4 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
source "https://dummy-url.nonexit" | ||
gem "testgem2", "1.0.0" | ||
gem "testgem", "1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'testgem2' | ||
s.version = '1.0.0' | ||
s.author = 'Lars Kanis' | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/larskanis/rubyinstaller2' | ||
s.summary = 'RubyInstaller2 testgem' | ||
s.description = 'A gem to test gem installation with RubyInstaller2' | ||
s.files = `git ls-files`.split("\n") | ||
s.extensions << 'ext/extconf.rb' | ||
s.license = 'BSD-3-Clause' | ||
s.require_paths << 'lib' | ||
s.bindir = "exe" | ||
s.executables = ["testgem-exe"] | ||
s.required_ruby_version = '>= 2.1.0' | ||
s.metadata['msys2_dependencies'] = 'ed>=1.0' | ||
s.metadata['msys2_mingw_dependencies'] = 'libguess>=1.0 gcc>=8.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters