bbc_api 0.1.2 → 0.2.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.md +3 -1
- data/lib/bbc/version.rb +3 -3
- data/lib/bbc_api.rb +3 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
<h1>BBC WORLD NEWS API Integration</h1>
|
|
7
7
|
<p>
|
|
8
8
|
<a href="https://travis-ci.org/rajcybage/bbc_api"><img src="https://travis-ci.org/rajcybage/bbc_api.png?branch=master" alt="Build Status" /></a>
|
|
9
|
+
<a href="http://badge.fury.io/rb/bbc_api"><img src="https://badge.fury.io/rb/bbc_api.png"/></a>
|
|
10
|
+
<a href="https://codeclimate.com/repos/5208c2667e00a422170529c8/feed"><img src="https://codeclimate.com/repos/5208c2667e00a422170529c8/badges/6612734c270cd4165df5/gpa.png" /></a>
|
|
9
11
|
</p>
|
|
10
12
|
<div>
|
|
11
13
|
<p>
|
|
@@ -26,7 +28,7 @@
|
|
|
26
28
|
In Gemfile
|
|
27
29
|
</p>
|
|
28
30
|
<p>
|
|
29
|
-
<code>gem "bbc_api", "0.
|
|
31
|
+
<code>gem "bbc_api", "0.2.0" </code>
|
|
30
32
|
</p>
|
|
31
33
|
</div>
|
|
32
34
|
|
data/lib/bbc/version.rb
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
module BbcApi
|
|
2
|
-
Version = "0.
|
|
3
|
-
end
|
|
1
|
+
module BbcApi
|
|
2
|
+
Version = "0.2.0"
|
|
3
|
+
end
|
data/lib/bbc_api.rb
CHANGED