recls-ruby 2.7.1 → 2.7.2

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
  SHA1:
3
- metadata.gz: ea5f4b792cc0f8882a7a4e9779fd32fb2ce231cd
4
- data.tar.gz: 98f5d6b1cae89e306aa303c5e383a2951d7ff09f
3
+ metadata.gz: 92adb0b237ff0e43eb67cfde5bd673537c31cb03
4
+ data.tar.gz: a5c76adb6dc6322bed1b763716a9f4640d24c4ee
5
5
  SHA512:
6
- metadata.gz: b403a936e24d295db49df5eae668953325af07df610655858eeb98e61cdf9dca4927354b3b35012e1a7088a8057a1a4f2431a16291bfb88e2acfb3a537b4ce42
7
- data.tar.gz: 2f79d4ba659fe1484f74ba0a23653f41fb7aa6e298596e026fe3eebc1b831058d9408b0fd78561192a52dfd1ca114e42ff2f776aa751ef3fc2f974b5898183b6
6
+ metadata.gz: 757797e28970c2c89c49bf565932fedbfd3dac4857557068b355a7565dd7644df44aeb3a709b9dc1f87a69a4932e81b623e69a762eb35198378b7742548a5478
7
+ data.tar.gz: 99f83fa859a427e1ea3b9b828b3067080446faec2a476e24246785b3491c5e5ac2529567ed0eaae309d4b703768c78b8dcc281538255d8f9ef3248bc410ec65e
data/lib/recls/version.rb CHANGED
@@ -4,7 +4,7 @@
4
4
  # Purpose: Version for recls library
5
5
  #
6
6
  # Created: 14th February 2014
7
- # Updated: 9th June 2016
7
+ # Updated: 18th June 2016
8
8
  #
9
9
  # Author: Matthew Wilson
10
10
  #
@@ -39,7 +39,7 @@
39
39
  module Recls
40
40
 
41
41
  # Current version of the recls.Ruby library
42
- VERSION = '2.7.1'
42
+ VERSION = '2.7.2'
43
43
 
44
44
  private
45
45
  VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
@@ -4,11 +4,11 @@
4
4
  # Purpose: Windows-specific constructs for the recls library.
5
5
  #
6
6
  # Created: 19th February 2014
7
- # Updated: 29th December 2015
7
+ # Updated: 18th June 2016
8
8
  #
9
9
  # Author: Matthew Wilson
10
10
  #
11
- # Copyright (c) 2012-2015, Matthew Wilson and Synesis Software
11
+ # Copyright (c) 2012-2016, Matthew Wilson and Synesis Software
12
12
  # All rights reserved.
13
13
  #
14
14
  # Redistribution and use in source and binary forms, with or without
@@ -131,7 +131,8 @@ module Recls
131
131
  @by_handle_information = ByHandleInformation.new(path)
132
132
 
133
133
  buff = ' ' * MAX_PATH
134
- n = GetShortPathName.call(path, buff, buff.length)
134
+ # not forcing this new string causes 'can't modify frozen string (TypeError)'
135
+ n = GetShortPathName.call("#{path}", buff, buff.length)
135
136
  @short_path = (0 == n) ? nil : buff[0...n]
136
137
  end
137
138
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recls-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-13 00:00:00.000000000 Z
11
+ date: 2016-06-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  RECursive LS for Ruby
@@ -76,3 +76,4 @@ signing_key:
76
76
  specification_version: 4
77
77
  summary: recls.Ruby
78
78
  test_files: []
79
+ has_rdoc: