handcrafted-a2ws 0.1.5 → 0.1.6

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.yml CHANGED
@@ -1,3 +1,3 @@
1
1
  :major: 0
2
2
  :minor: 1
3
- :patch: 5
3
+ :patch: 6
data/a2ws.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{a2ws}
5
- s.version = "0.1.5"
5
+ s.version = "0.1.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Andy Shen", "Josh Owens"]
data/lib/a2ws.rb CHANGED
@@ -5,6 +5,7 @@ require 'pp'
5
5
 
6
6
  $:.unshift File.join(File.dirname(__FILE__),'..','lib')
7
7
  require 'a2ws/base'
8
+ require 'a2ws/methodize'
8
9
  require 'a2ws/item'
9
10
  require 'a2ws/image'
10
11
  require 'a2ws/item_search'
@@ -9,7 +9,6 @@ module A2WS
9
9
 
10
10
  def find(keywords, options = {})
11
11
  options.merge!({:Keywords => keywords, :SearchIndex => @search_index})
12
- puts options.inspect
13
12
  result = self.class.get('/onca/xml', :query => options)
14
13
 
15
14
  @items = result["ItemSearchResponse"]["Items"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: handcrafted-a2ws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Shen