propre 0.0.7 → 0.0.8
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 +7 -9
- data/bin/propre +17 -4
- data/lib/propre/settings.rb +4 -1
- data/lib/propre/version.rb +2 -2
- data/lib/propre.rb +11 -2
- data/propre.gemspec +1 -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: 5c5c7606d91fe4f008d8affa8dc9d04c4d5395f0
|
4
|
+
data.tar.gz: 6455448d1277e3309711baead0bd70620570ee73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf2929a9a581eb0522d5037aa686269bc15b572c3ed2913ce75efc2fb86c64293d791ae8676553f68ee7dfb3a30be2653c9447443f460e35839a9974d7e523d2
|
7
|
+
data.tar.gz: 506f6eff152694a7422390be1c1d3ca7cea5ce0676bd16232beeac0be4a95fa2702186e566847940b1a8cca2185e09de9cbf2a9f63819655a2eeeeb932f62027
|
data/README.md
CHANGED
@@ -22,18 +22,16 @@ Propre
|
|
22
22
|
|
23
23
|
##Changelog
|
24
24
|
|
25
|
-
### 0.0.
|
26
|
-
|
27
|
-
- Fix: Sanitize params now work
|
28
|
-
|
29
|
-
### 0.0.6
|
25
|
+
### 0.0.8
|
30
26
|
|
31
|
-
-
|
27
|
+
- Add version and usage params
|
28
|
+
- Fix: Create config directory if not present
|
29
|
+
- Fix: Wording
|
30
|
+
- Better errors handling
|
32
31
|
|
33
|
-
### 0.0.
|
34
|
-
|
35
|
-
- Update directory structure to work with RubyGems
|
32
|
+
### 0.0.7
|
36
33
|
|
34
|
+
- Fix: Sanitize params now work
|
37
35
|
|
38
36
|
Disclaimer
|
39
37
|
----------
|
data/bin/propre
CHANGED
@@ -10,14 +10,14 @@ options = {}
|
|
10
10
|
OptionParser.new do |opt|
|
11
11
|
opt.banner = "Usage: #{ File.basename($0) } [OPTION]... SOURCE..."
|
12
12
|
|
13
|
-
opt.on('-R', '--recursive', 'Run recursively') do |v|
|
14
|
-
options[:recursive] = v
|
15
|
-
end
|
16
|
-
|
17
13
|
opt.on('-i', '--interactive', 'Run interactively') do |v|
|
18
14
|
options[:interactive] = v
|
19
15
|
end
|
20
16
|
|
17
|
+
opt.on('-R', '--recursive', 'Run recursively') do |v|
|
18
|
+
options[:recursive] = v
|
19
|
+
end
|
20
|
+
|
21
21
|
opt.on('-V', '--video-only', 'Search for video files only') do |v|
|
22
22
|
options[:videonly] = v
|
23
23
|
end
|
@@ -30,7 +30,18 @@ OptionParser.new do |opt|
|
|
30
30
|
options[:dotfile] = v
|
31
31
|
end
|
32
32
|
|
33
|
+
opt.on_tail("-v", "--version", "Show version information about this program and quit.") do
|
34
|
+
puts "#{Propre} - v#{Propre::VERSION}"
|
35
|
+
exit
|
36
|
+
end
|
37
|
+
|
38
|
+
opt.on_tail("-h", "--help", "--usage", "Show this help message and quit.") do |v|
|
39
|
+
puts opt.help
|
40
|
+
exit
|
41
|
+
end
|
42
|
+
|
33
43
|
options[:help] = opt.help
|
44
|
+
|
34
45
|
end.parse!
|
35
46
|
|
36
47
|
def main(options)
|
@@ -39,10 +50,12 @@ def main(options)
|
|
39
50
|
else
|
40
51
|
propre = Propre.new(options)
|
41
52
|
if File.directory?(ARGV[0])
|
53
|
+
puts "Searching for movies title..."
|
42
54
|
propre.crawlDirectory(ARGV[0])
|
43
55
|
end
|
44
56
|
|
45
57
|
if File.file?(ARGV[0])
|
58
|
+
puts "Searching for movie title..."
|
46
59
|
propre.searchMovieFromFile(ARGV[0])
|
47
60
|
end
|
48
61
|
end
|
data/lib/propre/settings.rb
CHANGED
@@ -5,7 +5,10 @@ class Settings
|
|
5
5
|
|
6
6
|
def initialize(path)
|
7
7
|
@path = path
|
8
|
-
if !File.exist?(path)
|
8
|
+
if !File.exist?(path)
|
9
|
+
FileUtils.mkdir_p("#{Dir.home}/.config/Propre/")
|
10
|
+
FileUtils.touch(path)
|
11
|
+
end
|
9
12
|
conf = YAML.load_file(path)
|
10
13
|
@settings = conf ? conf : Hash.new
|
11
14
|
end
|
data/lib/propre/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module
|
2
|
-
VERSION = "0.0.
|
1
|
+
module Version
|
2
|
+
VERSION = "0.0.8"
|
3
3
|
end
|
data/lib/propre.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require 'propre/prompt'
|
2
2
|
require 'propre/settings'
|
3
|
+
require 'propre/version'
|
3
4
|
|
4
5
|
require 'fileutils'
|
5
6
|
require 'themoviedb'
|
@@ -7,13 +8,15 @@ require 'mime/types'
|
|
7
8
|
|
8
9
|
class Propre
|
9
10
|
include Prompt
|
11
|
+
include Version
|
10
12
|
|
11
13
|
def initialize(options)
|
12
14
|
@options = options
|
13
15
|
@settings = Settings.new("#{Dir.home}/.config/Propre/settings.yaml")
|
14
16
|
if @settings.get('apikey').nil?
|
15
|
-
puts "It's seem you
|
17
|
+
puts "It's seem you didn't set your TMDB API Key (stored in ~/.config/Propre/settings.yaml) \nPlease tell me: "
|
16
18
|
@settings.set('apikey', STDIN.gets.chomp())
|
19
|
+
puts "Thanks !"
|
17
20
|
end
|
18
21
|
Tmdb::Api.key(@settings.get('apikey'))
|
19
22
|
Tmdb::Api.language(@settings.get('locale') ? @settings.get('locale') : 'en')
|
@@ -40,7 +43,13 @@ class Propre
|
|
40
43
|
return
|
41
44
|
end
|
42
45
|
if @options[:sanitize] then filename = self.sanitize(filename) end
|
43
|
-
|
46
|
+
begin
|
47
|
+
@movies = Tmdb::Movie.find(filename)
|
48
|
+
rescue
|
49
|
+
if Tmdb::Api.response['code'] === 401
|
50
|
+
abort("Error: Did you set you're API Key ? (401)")
|
51
|
+
end
|
52
|
+
end
|
44
53
|
if self.confirm
|
45
54
|
File.rename(file, File.join(File.dirname(file), self.format(@selected)))
|
46
55
|
end
|
data/propre.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.email = ["dev.yadomi@gmail.com"]
|
9
9
|
|
10
10
|
spec.name = "propre"
|
11
|
-
spec.version =
|
11
|
+
spec.version = Version::VERSION
|
12
12
|
spec.summary = %q{CLI tool to rename movies using TheMovieDB API }
|
13
13
|
|
14
14
|
spec.files = `git ls-files`.split($\)
|