fileman 0.1.10208 → 0.1.10221
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/README.md +4 -4
- data/fileman.gemspec +1 -1
- data/lib/fileman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 571654752b5059318622ea5cdb7ba446653fd0d4
|
4
|
+
data.tar.gz: efb1bc423718d1dea0d27fdd0698fc863b352e42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69e86eb0b8d547cd51df56c2d24c90a5955b885ebcce97100c664a5920a930b8b3e4b4e87c5e7c26a9b973832b2d96c4f5d6ade3835a5637e9b4575d53725b67
|
7
|
+
data.tar.gz: f98d6f735babcf4caf511d0c2c9ddc37d553a5a64496a51f59f4df2930eec0349a28d5899abd65167777939a024b464a2b54b9af90312414cb419165b944cace
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Fileman
|
2
2
|
|
3
|
-
Fileman was originally designed to solve the Windows delete issue when a folder contains files whose path is greater than 260 characters. Over time, it got extended to support other features like renaming files
|
3
|
+
Fileman was originally designed to solve the Windows delete issue when a folder contains files whose path is greater than 260 characters. Over time, it got extended to support other features like renaming files following patterns. Though it was originally develop to solve a specific Windows limitation, Fileman can obviously also be used on any other platform supporting ruby.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,7 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
### Overview
|
21
|
-
Once installed,
|
21
|
+
Once installed, Fileman is immediately available in the terminal through the 'fileman' or 'fm' command. For more details, simply type:
|
22
22
|
```sh
|
23
23
|
fm
|
24
24
|
```
|
@@ -31,11 +31,11 @@ fm rm your_folder
|
|
31
31
|
```sh
|
32
32
|
fm rn "your_folder" "new_name"
|
33
33
|
```
|
34
|
-
#### Rename a folder as well as all its
|
34
|
+
#### Rename a folder as well as all its subfolders, including files
|
35
35
|
```sh
|
36
36
|
fm rn "your_folder" "new_name" -i
|
37
37
|
```
|
38
|
-
#### Rename a folder as well as all its
|
38
|
+
#### Rename a folder as well as all its subfolders, including files (files extension are removed)
|
39
39
|
```sh
|
40
40
|
fm rn "your_folder" "new_name" -ie
|
41
41
|
```
|
data/fileman.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.email = ["nicolas.dao@gmail.com"]
|
24
24
|
spec.summary = %q{Files and directories management in windows with super powers}
|
25
25
|
spec.description = %q{Enhance files and directories management in windows(e.g. deleting files and folders whose path is longer than 260 charatcers)}
|
26
|
-
spec.homepage = ""
|
26
|
+
spec.homepage = "https://github.com/nicolasdao/fileman"
|
27
27
|
spec.license = "MIT"
|
28
28
|
|
29
29
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/fileman/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fileman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.10221
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nicolasdao
|
@@ -79,7 +79,7 @@ files:
|
|
79
79
|
- test/toolbelt/fixture.rb
|
80
80
|
- test/unit/delete_file_and_folder_test.rb
|
81
81
|
- test/unit/rename_recursively_test.rb
|
82
|
-
homepage:
|
82
|
+
homepage: https://github.com/nicolasdao/fileman
|
83
83
|
licenses:
|
84
84
|
- MIT
|
85
85
|
metadata: {}
|