Skip to content

Commit f509e58

Browse files
committed
Disable platform specific gem installs via Bundler
See discussion here: #292 (comment) To ensure the setting is persisted for every user of the repository, I decided to track the Bundler config file. This seems like a good idea anyway, even though Bundler currently has a bug resulting in that file being changed sometimes, which can be confusing for developers. See rubygems/rubygems#3708
1 parent 35cb317 commit f509e58

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.bundle/config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
BUNDLE_SPECIFIC_PLATFORM: "false"
3+
BUNDLE_WITH: "test"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
.idea
66

77
# Ruby / Bundler
8-
.bundle/
98
vendor/bundle
109

1110
# Fastlane

Gemfile.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ GEM
260260
method_source (0.9.2)
261261
mini_magick (4.11.0)
262262
mini_mime (1.1.0)
263+
mini_portile2 (2.5.3)
263264
minitest (5.14.4)
264265
molinillo (0.6.6)
265266
multi_json (1.15.0)
@@ -269,7 +270,8 @@ GEM
269270
naturally (2.2.1)
270271
netrc (0.11.0)
271272
no_proxy_fix (0.1.2)
272-
nokogiri (1.11.7-x86_64-darwin)
273+
nokogiri (1.11.7)
274+
mini_portile2 (~> 2.5.0)
273275
racc (~> 1.4)
274276
octokit (4.21.0)
275277
faraday (>= 0.9)
@@ -415,4 +417,4 @@ DEPENDENCIES
415417
yard
416418

417419
BUNDLED WITH
418-
2.2.24
420+
2.2.25

0 commit comments

Comments
 (0)