recls-ruby 2.9.0 → 2.9.1

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/README.md +45 -10
  3. data/lib/recls/version.rb +2 -2
  4. metadata +21 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c02ac6f3a48f84776ec957cd2642d9b910e5169d
4
- data.tar.gz: 3d0b3e9eaffeb82e499279e32befa7ade72bc75f
3
+ metadata.gz: 633b42f5042eb49162aafc0a68e7d48cf47e1919
4
+ data.tar.gz: 9ac21ed45d384c67863c7b4fad0d782dfec077b4
5
5
  SHA512:
6
- metadata.gz: 7f7229fff4e86c2653b0652fdc617824a84aa7a47ac9dbeedfc70523b5bb937b5d182e60f147edb0cf77aeffbdc32027d59474ce7d2f94a41d28e13d52db9ec4
7
- data.tar.gz: f30f716243c9b9a19dcf3052561055fc80e89a325368bf8e9058efbb90a2842f7267f78017834a7209c6d6c284ae24a530f7f9cf6869997e26e3aeb8d7096933
6
+ metadata.gz: 5f204a82f58c74d870696c52f9f6f6b4d4a3c89a57bdb1cef6f4d6c74c017d21f78504ac67466d3b3fe068bf01c0efadbbb21d453a1bb596c4cdccc3389076c7
7
+ data.tar.gz: 4c83a6e6ecbd1c791f035a8e5f98faddf662584a21ad69d3ecc64a5e18ea255093e79f171138cdf9d7d2634df089fadab5488457cda258a0d753eab38bbda27c
data/README.md CHANGED
@@ -1,34 +1,69 @@
1
1
  # recls.Ruby
2
- recls for Ruby
2
+ **rec**ursive **ls**, for Ruby
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/recls-ruby.svg)](https://badge.fury.io/rb/recls-ruby)
5
5
 
6
+ ## Introduction
7
+
8
+ **recls** stands for **rec**ursive **ls**. The first recls library was a C
9
+ library with a C++ wrapper. There have been several implementations in other
10
+ languages. **recls.Ruby** is the Ruby version.
11
+
12
+ ## Table of Contents
13
+
14
+ 1. [Introduction](#introduction)
15
+ 2. [Installation](#installation)
16
+ 3. [Components](#components)
17
+ 4. [Examples](#examples)
18
+ 5. [Project Information](#project-information)
19
+
20
+ ## Introduction
21
+
22
+ T.B.C.
23
+
6
24
  ## Installation & usage
7
25
 
8
26
  Install using `gem install recls-ruby` or add it to your `Gemfile`.
9
27
 
10
- ## Description
28
+ ## Components
29
+
30
+ T.B.C.
11
31
 
12
- TODO
32
+ ## Examples
13
33
 
14
- ## Where to get help
34
+ Examples are provided in the ```examples``` directory, along with a markdown description for each. A detailed list TOC of them is provided in [EXAMPLES.md](./EXAMPLES.md).
35
+
36
+ ## Project Information
37
+
38
+ ### Where to get help
15
39
 
16
40
  [GitHub Page](https://github.com/synesissoftware/recls.Ruby "GitHub Page")
17
41
 
18
- ## Contribution guidelines
42
+ ### Contribution guidelines
19
43
 
20
44
  Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/recls.Ruby.
21
45
 
22
- ## Related projects
46
+ ### Dependencies
47
+
48
+ None
49
+
50
+ ### Dependents
23
51
 
24
52
  **recls.Ruby** is used in the **[libCLImate.Ruby](https://github.com/synesissoftware/libCLImate.Ruby)** library.
25
53
 
26
- ## License
54
+ ### Related projects
55
+
56
+ * [**recls**](https://github.com/synesissoftware/recls/)
57
+ * [**recls.NET**](https://github.com/synesissoftware/recls.NET/)
58
+ * [**recls.Python**](https://github.com/synesissoftware/recls.Python/)
59
+
60
+ ### License
27
61
 
28
- **recls.Ruby** is released under the 3-clause BSD license. See LICENSE for details.
62
+ **recls.Ruby** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.
29
63
 
30
- ## Compatibility
64
+ ### Compatibility
31
65
 
32
- From v2.8 onwards, recls.Ruby is compatible only with Ruby 2.0+
66
+ For v2.8.x onwards, recls.Ruby is compatible only with Ruby 2.0+; all other
67
+ past and current versions work with Ruby 1.9.3+.
33
68
 
34
69
 
@@ -4,7 +4,7 @@
4
4
  # Purpose: Version for recls library
5
5
  #
6
6
  # Created: 14th February 2014
7
- # Updated: 21st March 2019
7
+ # Updated: 10th April 2018
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.9.0'
42
+ VERSION = '2.9.1'
43
43
 
44
44
  private
45
45
  VERSION_PARTS_ = VERSION.split(/[.]/).collect { |n| n.to_i } # :nodoc:
metadata CHANGED
@@ -1,18 +1,31 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recls-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-21 00:00:00.000000000 Z
12
- dependencies: []
13
- description: 'RECursive LS for Ruby
14
-
15
- '
11
+ date: 2019-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: xqsr3
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.31'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.31'
27
+ description: |
28
+ RECursive LS for Ruby
16
29
  email: matthew@synesis.com.au
17
30
  executables: []
18
31
  extensions: []
@@ -55,7 +68,7 @@ files:
55
68
  - test/unit/test_all_separately.cmd
56
69
  - test/unit/test_all_separately.sh
57
70
  - test/unit/ts_all.rb
58
- homepage: http://recls.org/
71
+ homepage: http://github.com/synesissoftware/recls.Ruby
59
72
  licenses:
60
73
  - BSD-3-Clause
61
74
  metadata: {}
@@ -75,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
88
  version: '0'
76
89
  requirements: []
77
90
  rubyforge_project:
78
- rubygems_version: 2.6.11
91
+ rubygems_version: 2.2.5
79
92
  signing_key:
80
93
  specification_version: 4
81
94
  summary: recls.Ruby