mikedemers-rbing 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +7 -7
  2. data/Rakefile +1 -1
  3. data/lib/rbing.rb +2 -2
  4. metadata +1 -1
@@ -73,20 +73,20 @@ The default source is "web" but you can specify another:
73
73
 
74
74
  == Dependencies
75
75
 
76
- * HTTParty: <http://httparty.rubyforge.org/>
76
+ - HTTParty: http://httparty.rubyforge.org/
77
77
 
78
78
 
79
79
  == Resources
80
80
 
81
81
  RBing:
82
82
 
83
- * Source Code: <http://github.com/mikedemers/rbing/tree>
84
- * Support: <http://github.com/mikedemers/rbing/issues>
83
+ - Source Code: http://github.com/mikedemers/rbing/tree
84
+ - Support: http://github.com/mikedemers/rbing/issues
85
85
 
86
86
  Bing:
87
87
 
88
- * Bing API: <http://www.bing.com/developers>
89
- * Register for App Id: <http://www.bing.com/developers/createapp.aspx>
90
- * Bing API Reference: <http://msdn.microsoft.com/en-us/library/dd251056.aspx>
91
- * Query Keywords: <http://help.live.com/help.aspx?project=wl_searchv1&market=en-US&querytype=keyword&query=redliub&tmt=&domain=www.bing.com:80>
88
+ - Bing API: http://www.bing.com/developers
89
+ - Register for App Id: http://www.bing.com/developers/createapp.aspx
90
+ - Bing API Reference: http://msdn.microsoft.com/en-us/library/dd251056.aspx
91
+ - Query Keywords: http://help.live.com/help.aspx?project=wl_searchv1&market=en-US&querytype=keyword&query=redliub&tmt=&domain=www.bing.com:80
92
92
 
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'date'
5
5
  require 'spec/rake/spectask'
6
6
 
7
7
  GEM = "rbing"
8
- GEM_VERSION = "1.0.0"
8
+ GEM_VERSION = "1.0.1"
9
9
  AUTHOR = "Mike Demers"
10
10
  EMAIL = "mike@9astronauts.com"
11
11
  HOMEPAGE = "http://9astronauts.com/code/ruby/rbing"
@@ -132,8 +132,8 @@ private
132
132
  QUERY_KEYWORDS.each do |kw|
133
133
  next unless options[kw]
134
134
  if options[kw].is_a? Array
135
- kw_query = options[kw].map {|s| "#{s}".strip }.join(" OR ")
136
- queries << " (#{kw}:#{kw_query})"
135
+ kw_query = options[kw].map {|s| "#{kw}:#{s}".strip }.join(" OR ")
136
+ queries << " (#{kw_query})"
137
137
  else
138
138
  queries << " #{kw}:#{options[kw]}"
139
139
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mikedemers-rbing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Demers