path 1.3.2 → 1.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/path.rb +2 -1
  3. data/lib/path/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5cade59aa6bcb009b2323684ef2d627be4ab563e
4
- data.tar.gz: 6107ae8f292fca2e5a877d2e325fce3d6e6a75e5
3
+ metadata.gz: 41ffc63c221b5b70d67fcce07e30daf31576d0dc
4
+ data.tar.gz: 0c7c8abcc478aeb75915b56b9e7668c365ef543c
5
5
  SHA512:
6
- metadata.gz: 8464ac533da8a0ed7c5470435d56830faee1bf43101626776a81cc1239d68805217cf846ab68e9d70396f1e22e6da0024ddd81e6640a3fc87fbfcaff8a263bef
7
- data.tar.gz: 70820b2c64060ebd6b2c2104e5b97852711b5c267e2cb9d5553dd265b1e4cf1acca3da076fbf91fa7afb0072a73633e3d8e70c8a80ce695138399533f5b221f0
6
+ metadata.gz: c441e94927c79b182bc5ed61677fa7c67a378a25a5ea2e5fec1c97d59ca9f6c7b8fb38e5db68d765b8aa1b0abf81b6b239c716cd47b7923bf4b7ac771f4b8bcc
7
+ data.tar.gz: a0ba3ed7a92663942ce178ec3b755a37be4bb77f7e54bc2de04bb6d41f6d3dd4a64cc037df4a26319602b38af48fc7b594213237d34c31aec2de2d9f0e1d1042
@@ -1,6 +1,7 @@
1
1
  # Path - a Path manipulation library
2
2
 
3
- Dir.glob(File.expand_path('../path/*.rb',__FILE__)) { |file| require file }
3
+ dir = File.expand_path('..', __FILE__)
4
+ Dir.glob("#{dir}/path/*.rb") { |file| require file }
4
5
 
5
6
  require 'tempfile'
6
7
  require 'rbconfig'
@@ -1,5 +1,5 @@
1
1
  class Path
2
2
  # The version of the gem.
3
3
  # Set here to avoid duplication and allow introspection.
4
- VERSION = '1.3.2'
4
+ VERSION = '1.3.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: path
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - eregon