imp3 0.1.3 → 0.1.4

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
data/bin/imp3 CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  $LOAD_PATH.unshift(File.dirname(__FILE__))
4
- $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
4
+ $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
5
5
 
6
6
  require 'rubygems'
7
- require "lib/imp3"
7
+ require "imp3"
8
8
  require 'commander/import'
9
9
 
10
10
  program :name, 'imp3'
data/lib/imp3.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  module IMP3
2
- VERSION = "0.1.3".freeze
2
+ VERSION = "0.1.4".freeze
3
3
  APP_DIR = File.expand_path(File.join("~", ".imp3"))
4
- end
5
-
6
- require 'lib/imp3/cli'
4
+ require "imp3/cli"
5
+ end
data/lib/imp3/cli.rb CHANGED
@@ -8,9 +8,9 @@ require 'rbosa'
8
8
  require 'pp'
9
9
  require 'commander/user_interaction'
10
10
  require 'singleton'
11
- require 'lib/imp3/config'
12
- require 'lib/imp3/cache'
13
- require 'lib/imp3/commands.rb'
11
+ require 'imp3/config'
12
+ require 'imp3/cache'
13
+ require 'imp3/commands'
14
14
 
15
15
  OSA.utf8_strings = true
16
16
 
data/lib/imp3/commands.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module IMP3::Commands
2
- require "lib/imp3/commands/genres"
3
- require "lib/imp3/commands/artists"
2
+ require "imp3/commands/genres"
3
+ require "imp3/commands/artists"
4
4
 
5
5
  include IMP3::Commands::Artists
6
6
  include IMP3::Commands::Genres
@@ -1,7 +1,4 @@
1
1
  module IMP3::Commands::Artists
2
-
3
- #
4
- # For every artist in iTunes,
5
2
  def artists_misspelled_command
6
3
  artist_choices = {}
7
4
  tagged = 0
data/test/helper.rb CHANGED
@@ -1,9 +1,8 @@
1
1
  require 'rubygems'
2
2
  require 'test/unit'
3
- require 'lib/imp3'
4
3
 
5
4
  $LOAD_PATH.unshift(File.dirname(__FILE__))
6
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
+ $LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
7
6
 
8
7
  require 'imp3'
9
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imp3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - "V\xC3\xADctor Mart\xC3\xADnez"