buscape_api 0.5.1 → 0.5.2
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/buscape_api.gemspec +1 -1
- data/lib/buscape_api.rb +2 -2
- metadata +1 -1
data/buscape_api.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "buscape_api"
|
|
5
|
-
s.version = "0.5.
|
|
5
|
+
s.version = "0.5.2"
|
|
6
6
|
s.email = ["t@art-is-t.me"]
|
|
7
7
|
s.authors = ["Thiago Fernandes Massa"]
|
|
8
8
|
s.homepage = "http://github.com/thiagofm/buscape_api"
|
data/lib/buscape_api.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require "require_all"
|
|
2
2
|
|
|
3
3
|
# Loading and requiring all api files
|
|
4
|
-
require_all '
|
|
4
|
+
require_all 'buscape_api/base'
|
|
5
5
|
|
|
6
6
|
class Buscape
|
|
7
7
|
def initialize(options = {})
|
|
@@ -11,4 +11,4 @@ class Buscape
|
|
|
11
11
|
def method_missing(method, *args)
|
|
12
12
|
Base.new(@options).send(method, args.first)
|
|
13
13
|
end
|
|
14
|
-
end
|
|
14
|
+
end
|