rbing 1.0.1 → 1.1.0
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/README.rdoc +1 -1
- data/Rakefile +2 -2
- data/spec/rbing_spec.rb +1 -0
- data/spec/spec_helper.rb +0 -4
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -25,7 +25,7 @@ Get a App ID at: <http://www.bing.com/developers/createapp.aspx>
|
|
25
25
|
=> "http://rubyforge.org/"
|
26
26
|
|
27
27
|
rsp = bing.news("search engines")
|
28
|
-
puts rsp.
|
28
|
+
puts rsp.news.results[0].title
|
29
29
|
=> "Microsoft Bing more popular than Yahoo"
|
30
30
|
|
31
31
|
rsp = bing.spell("coincidance")
|
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
|
8
|
+
GEM_VERSION = "1.1.0"
|
9
9
|
AUTHOR = "Mike Demers"
|
10
10
|
EMAIL = "mike@9astronauts.com"
|
11
11
|
HOMEPAGE = "http://9astronauts.com/code/ruby/rbing"
|
@@ -56,4 +56,4 @@ task :make_spec do
|
|
56
56
|
File.open("#{GEM}.gemspec", "w") do |file|
|
57
57
|
file.puts spec.to_ruby
|
58
58
|
end
|
59
|
-
end
|
59
|
+
end
|
data/spec/rbing_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Demers
|
@@ -9,7 +9,7 @@ autorequire: rbing
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-05 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|