propre 0.3.1 → 0.3.2
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 +9 -0
- data/bin/propre +6 -4
- data/lib/propre/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: 26a4b4a5c7ff1fa90f93d4c91300104c35bd2ead
|
4
|
+
data.tar.gz: d27bd498c4aebc441e7a45311bb458d65185dff0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 064c32f705f564fec7a8de0d253771f51d10caece2b5559b01b976e7bb0b9b5906aceb1f34c6c24e95aea9d8418565f9b71502f457f193069088242347e2e763
|
7
|
+
data.tar.gz: 9bf50c95592441900aada1bdbb04463ac3ec45f8d4b5904e89b34350dbb78481ad4f7825d7b61389a9055cc15d01f0340ad8558bfed357524bc6885314583b21
|
data/README.md
CHANGED
@@ -29,6 +29,15 @@ Propre will extract the title of a movie from it's filename and then rename it b
|
|
29
29
|
|
30
30
|
##Changelog
|
31
31
|
|
32
|
+
### 0.3.2
|
33
|
+
- Fix working directory issue when renaming with path ([#13](https://github.com/yadomi/propre/issues/13))
|
34
|
+
|
35
|
+
### 0.3.1
|
36
|
+
|
37
|
+
- Added Rubocop
|
38
|
+
- Dynamically find words seperator by counting the more redundant char
|
39
|
+
- Update blacklist
|
40
|
+
|
32
41
|
### 0.3.0
|
33
42
|
|
34
43
|
- Extract quality as metadata
|
data/bin/propre
CHANGED
@@ -14,13 +14,15 @@ class CLI < Thor
|
|
14
14
|
option :color, type: :boolean, default: true
|
15
15
|
def lint(*args)
|
16
16
|
String.disable_colorization(true) unless options[:color]
|
17
|
-
args.each do |
|
18
|
-
basename, newname, metadata = Propre.basename_newname_metadata(
|
17
|
+
args.each do |oldpath|
|
18
|
+
basename, newname, metadata = Propre.basename_newname_metadata(oldpath)
|
19
|
+
working_directory = File.dirname(oldpath)
|
20
|
+
newpath = "#{File.join(working_directory, newname + File.extname(oldpath))}"
|
19
21
|
if options[:dry]
|
20
22
|
unchanged = basename == newname ? :green : :yellow
|
21
|
-
puts "#{
|
23
|
+
puts "#{oldpath} -> #{newpath}".colorize(unchanged)
|
22
24
|
else
|
23
|
-
File.rename(
|
25
|
+
File.rename(oldpath, "#{newpath}")
|
24
26
|
end
|
25
27
|
end
|
26
28
|
end
|
data/lib/propre/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: propre
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Yadomi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|