cuesnap 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -60,6 +60,10 @@ _Tested on Mac OS X 10.7 (Lion)._
60
60
 
61
61
  ## Changelog
62
62
 
63
+ ### 1.2.4
64
+
65
+ * Fixed error with CueSnap::VERSION not being defined.
66
+
63
67
  ### 1.2.3
64
68
 
65
69
  * Fixed extraneous output from calling `which`.
@@ -1,5 +1,5 @@
1
- require 'cuesnap/base'
2
-
3
1
  module CueSnap
2
+ autoload :VERSION, 'cuesnap/version'
4
3
  autoload :CLI, 'cuesnap/cli'
4
+ autoload :Splitter, 'cuesnap/splitter'
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module CueSnap
2
- VERSION = '1.2.3'
2
+ VERSION = '1.2.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuesnap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-06 00:00:00.000000000 Z
12
+ date: 2012-11-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubycue
@@ -120,7 +120,6 @@ files:
120
120
  - README.md
121
121
  - bin/cuesnap
122
122
  - lib/cuesnap.rb
123
- - lib/cuesnap/base.rb
124
123
  - lib/cuesnap/cli.rb
125
124
  - lib/cuesnap/splitter.rb
126
125
  - lib/cuesnap/version.rb
@@ -1,2 +0,0 @@
1
- require 'cuesnap/cli'
2
- require 'cuesnap/splitter'