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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e6078d6a1ae9c744685c2dc6b7184645e6166b3
4
- data.tar.gz: 5d3861e3aa79e49bfdd98f5c6e5d6b733e3321de
3
+ metadata.gz: 26a4b4a5c7ff1fa90f93d4c91300104c35bd2ead
4
+ data.tar.gz: d27bd498c4aebc441e7a45311bb458d65185dff0
5
5
  SHA512:
6
- metadata.gz: d5ca50afafe11503f1f0173e7bc3907eda8698a21f9183da883b8239b9872968652591522f5c8214e81608ce13b1f2f13c61a522f315c573b2bb3fd8668f2a77
7
- data.tar.gz: 1a8249a02d2392b4bb079e5d1b10fa0495b8efe22e4118a27d82616f6a678088732c93ee5243bb8ce9dfde5d16ec2021d00f093d245b44b6f9ca2b9b2187d87f
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 |filename|
18
- basename, newname, metadata = Propre.basename_newname_metadata(filename)
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 "#{filename} -> #{newname}#{File.extname(filename)}".colorize(unchanged)
23
+ puts "#{oldpath} -> #{newpath}".colorize(unchanged)
22
24
  else
23
- File.rename(filename, "#{newname}#{File.extname(filename)}")
25
+ File.rename(oldpath, "#{newpath}")
24
26
  end
25
27
  end
26
28
  end
@@ -1,3 +1,3 @@
1
1
  module Version
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
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.1
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-01-17 00:00:00.000000000 Z
11
+ date: 2016-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor