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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2cb971191322c3c6db9f1db8836438edcf1fbc6b7f41c4d5b782c3fc32e360db
4
- data.tar.gz: c311b6d28e96cd1739e471402efdcad4fba012e0d73f9970912d456c6569f0b5
3
+ metadata.gz: 58d126120acdc3110e1f02135eedaf905cf603d168f7278e0ebe7ce99ca69ac3
4
+ data.tar.gz: 3904da7cb052542cb62660cf5817757246754332a231e812571cfd53f2a67961
5
5
  SHA512:
6
- metadata.gz: c68487087ce66a7ea55a54439c2c237df370945527bd2d551659899dddc37460b1ed72e3fd921226da087d336879b892a4568aaa01c1624c97ef297b3ea74177
7
- data.tar.gz: 17baf539117d27240f40ae9f5b26f38eec0873ea90c7fa63af46e1aa3dbb69fc517ed15114aa486cad1a95fca80635f5b46a150a453ff61e09b1e2ee694ece77
6
+ metadata.gz: 7bba4af897108c8008c071380ff829e53748f473415c9c3fcd0f037533aa6c6c3892dda34e94182349ab7098e0995251c7e7824944e060bfe300790291d0a7d5
7
+ data.tar.gz: ed3ea72b38a19bf449c8c586d0ecbd3ff3afbd0ae91af8adbbc802878b8fa136549ece65618834630aece9076bd43d9c023d593e359dec738d88e87e0414ab31
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bundler-path-build-ext (0.1.0)
4
+ bundler-path-build-ext (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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
@@ -1,3 +1,3 @@
1
1
  module BundlerPathBuildExt
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-path-build-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pganalyze Team