epitools 0.5.69 → 0.5.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/epitools/path.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38967ec03846985bd06392dd9998a38e0cb64159
|
4
|
+
data.tar.gz: f38dba6be646582491f1ef7eb6a9d37b9d2b8628
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf75df485cedefe8fcc6aff229c916ba51598aa63605d50a65e0a074e6b7afb844e2cc4618294a50e0bd54ed45968eeb81ee4eec17e45ed002c868fd0f446426
|
7
|
+
data.tar.gz: cb400a62fc6949d65f239ff8c67c4c6cf60c93df1fe1c4b032bc095361bba4464394af8b448db71415df0dd67d4c18f0ba9e016126b2d57cc9ae10de799c8de7
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.70
|
data/lib/epitools/path.rb
CHANGED
@@ -639,7 +639,10 @@ class Path
|
|
639
639
|
|
640
640
|
def ls; Path[File.join(path, "*")]; end
|
641
641
|
|
642
|
-
def ls_r
|
642
|
+
def ls_r(symlinks=false)
|
643
|
+
glob = symlinks ? "**{,/*/**}/*" : "**/*"
|
644
|
+
Path[File.join(path, glob)]
|
645
|
+
end
|
643
646
|
alias_method :ls_R, :ls_r
|
644
647
|
|
645
648
|
def ls_dirs
|