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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a525d3f1c669e6e905087f35b3303eb1674a993a
4
- data.tar.gz: 2f802af6f9f660115c7cbb66366f5e13488730c0
3
+ metadata.gz: 5c5c7606d91fe4f008d8affa8dc9d04c4d5395f0
4
+ data.tar.gz: 6455448d1277e3309711baead0bd70620570ee73
5
5
  SHA512:
6
- metadata.gz: 76b083edd6da46ca4d939fa9293433e86df1fb1f1779a3fd0bd298196e435f17279ffd41d0bae66671df618a23f9d0ce89e39060846d7801593cf50a40d426ec
7
- data.tar.gz: ecf7c74f147af117de1b074b1437ae3922bcacd0a41fd5622f35336de0e4271addda85326d4bd298b3c90723e2a1fafc70f04fc6f68cb8d64c013c24a880a9b1
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.7
26
-
27
- - Fix: Sanitize params now work
28
-
29
- ### 0.0.6
25
+ ### 0.0.8
30
26
 
31
- - Fix: Resolving dependencies issues
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.5
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
@@ -5,7 +5,10 @@ class Settings
5
5
 
6
6
  def initialize(path)
7
7
  @path = path
8
- if !File.exist?(path) then FileUtils.touch(path) end
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
@@ -1,3 +1,3 @@
1
- module Propre
2
- VERSION = "0.0.7"
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 did not set your TMDB API Key, please tell me:"
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
- @movies = Tmdb::Movie.find(filename)
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 = Propre::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($\)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propre
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Yadomi