bundler-path-build-ext 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/bundler-path-build-ext.rb +1 -1
- data/lib/bundler-path-build-ext/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58d126120acdc3110e1f02135eedaf905cf603d168f7278e0ebe7ce99ca69ac3
|
4
|
+
data.tar.gz: 3904da7cb052542cb62660cf5817757246754332a231e812571cfd53f2a67961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bba4af897108c8008c071380ff829e53748f473415c9c3fcd0f037533aa6c6c3892dda34e94182349ab7098e0995251c7e7824944e060bfe300790291d0a7d5
|
7
|
+
data.tar.gz: ed3ea72b38a19bf449c8c586d0ecbd3ff3afbd0ae91af8adbbc802878b8fa136549ece65618834630aece9076bd43d9c023d593e359dec738d88e87e0414ab31
|
data/Gemfile.lock
CHANGED
@@ -6,7 +6,7 @@ Bundler::Plugin.add_hook(Bundler::Plugin::Events::GEM_AFTER_INSTALL) do |spec_in
|
|
6
6
|
puts format('Building native extensions for %s %s in source tree at %s', spec.name, spec.version, spec.source.expanded_original_path)
|
7
7
|
|
8
8
|
# If our current Bundler root path is identical with the base dir, add a "tmp/" directory to place extension build results in
|
9
|
-
if spec.base_dir == Bundler.root
|
9
|
+
if Pathname.new(spec.base_dir) == Bundler.root
|
10
10
|
spec.base_dir = File.join(spec.base_dir, 'tmp')
|
11
11
|
# Reset cached values for extension_dir (which is derived from base_dir)
|
12
12
|
spec.extension_dir = nil
|