next-big-sound-lite 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/next-big-sound-lite.rb +1 -1
- data/next-big-sound-lite.gemspec +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
|
|
3
3
|
require 'rake'
|
4
4
|
require 'echoe'
|
5
5
|
|
6
|
-
Echoe.new('next-big-sound-lite', '0.1.
|
6
|
+
Echoe.new('next-big-sound-lite', '0.1.2') do |p|
|
7
7
|
p.description = "Thin wrapper for the Next Big Sound API."
|
8
8
|
p.url = "http://github.com/rpbertp13/next-big-sound-lite"
|
9
9
|
p.author = "Roberto Thais"
|
data/lib/next-big-sound-lite.rb
CHANGED
@@ -3,7 +3,7 @@ require 'rest_client'
|
|
3
3
|
#for version 2.0 of the NBS API
|
4
4
|
module NBS
|
5
5
|
|
6
|
-
BASE = RestClient::Resource.new("http://#{KEY
|
6
|
+
BASE = RestClient::Resource.new("http://#{const_defined? KEY ? KEY : 'key'}.api2.nextbigsound.com")
|
7
7
|
|
8
8
|
class Artist
|
9
9
|
|
data/next-big-sound-lite.gemspec
CHANGED