dealmap 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/dealmap.rb +1 -1
  2. data/lib/dealmap/version.rb +1 -1
  3. metadata +1 -1
@@ -80,7 +80,7 @@ module Dealmap
80
80
  # businesses, total = @client.search_businesses(:l => "Miami, FL", :d => 50, :q => "bar")
81
81
  # @example Search for bars within a 50 mile radius of Miami, FL and return 100 results
82
82
  # businesses, total = @client.search_businesses(:l => "Miami, FL", :d => 50, :q => "bar", :ps => 100)
83
- def search_busineses(options = {})
83
+ def search_businesses(options = {})
84
84
  options = options.merge(:key => api_key)
85
85
  response = conn.get("/search/businesses/") { |req| req.params = options }
86
86
  doc = Nokogiri::XML(response.body)
@@ -1,3 +1,3 @@
1
1
  module Dealmap
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: dealmap
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.7
5
+ version: 0.0.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Joshua Deeden