rdioid 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92ad9d720f318c61bec6a12e928245487533593b
4
- data.tar.gz: 33194807ec2607b86800a85601ba8012e94022f8
3
+ metadata.gz: 335b0866ead672afc0b4e9fb5fd06974bcc9bf3a
4
+ data.tar.gz: 4e505fb0d61cfadbc435c8b7054d65aff4b27716
5
5
  SHA512:
6
- metadata.gz: fe58ed8a6a93304f551684dd8193affe7cab1c9f0054d5e871bc53988f336e426d9e28a078e78b033fa4ba019a0007c2f4e2b624ecf1b41f34569802fbfb9912
7
- data.tar.gz: 8c955bf2d33b217f0fc57db12495f1c7557471614b0a7a1d16a6f5077fae355a272122ac277a29df7b0c4efea34610994223a8bc55c557a3280c75050bea1f29
6
+ metadata.gz: dbd8b66c170739b8dfd130e9b07b233c1e9dd5b996b7a7ea133ab55a4c0ee7a8fc1940d67a5dd97cfe9f911f7c9d66ed1e93b64bae3c148c7065138e7a8e9b42
7
+ data.tar.gz: d064a2865da084ecb3e8d89150cdb4ae63526ee3815eb521b8d61ce730ac457e6d9391153311d18619585ccc52677e248b40bba7d89dc3dbe56c58d161294f1e
data/Gemfile CHANGED
@@ -2,3 +2,5 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in rdioid.gemspec
4
4
  gemspec
5
+
6
+ gem 'codeclimate-test-reporter', group: :test, require: nil
data/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Rdioid
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/rdioid.svg)](http://badge.fury.io/rb/rdioid)
4
+ [![Build Status](https://travis-ci.org/reddshack/rdioid.svg)](https://travis-ci.org/reddshack/rdioid)
5
+ [![Code Climate](https://codeclimate.com/github/reddshack/rdioid/badges/gpa.svg)](https://codeclimate.com/github/reddshack/rdioid)
6
+ [![Test Coverage](https://codeclimate.com/github/reddshack/rdioid/badges/coverage.svg)](https://codeclimate.com/github/reddshack/rdioid/coverage)
7
+
3
8
  A simple Ruby Gem wrapper for the Rdio Web Service API with OAuth 2.0. Handles OAuth requests and API requests.
4
9
 
5
10
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module Rdioid
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Brent Redd"]
10
10
  spec.email = ["reddshack@gmail.com"]
11
11
 
12
- spec.summary = %q{Simple Rdio Web Service API wrapper with OAuth 2.0}
13
- spec.description = %q{Handles OAuth 2.0 authentication and API calls for Rdio Web Service API.}
12
+ spec.summary = %q{Rdio Web Service API wrapper with OAuth 2.0}
13
+ spec.description = %q{OAuth 2.0 authentication and API calls for Rdio Web Service API.}
14
14
  spec.homepage = "https://github.com/reddshack/rdioid"
15
15
  spec.license = "MIT"
16
16
 
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_dependency "httpclient", "~> 2.6.0"
22
+ spec.add_dependency "httpclient", "~> 2.7.0"
23
23
 
24
24
  spec.add_development_dependency "bundler", "~> 1.10"
25
25
  spec.add_development_dependency "rake", "~> 10.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdioid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brent Redd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-30 00:00:00.000000000 Z
11
+ date: 2015-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 2.6.0
19
+ version: 2.7.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 2.6.0
26
+ version: 2.7.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '3.0'
69
- description: Handles OAuth 2.0 authentication and API calls for Rdio Web Service API.
69
+ description: OAuth 2.0 authentication and API calls for Rdio Web Service API.
70
70
  email:
71
71
  - reddshack@gmail.com
72
72
  executables: []
@@ -110,6 +110,6 @@ rubyforge_project:
110
110
  rubygems_version: 2.4.5.1
111
111
  signing_key:
112
112
  specification_version: 4
113
- summary: Simple Rdio Web Service API wrapper with OAuth 2.0
113
+ summary: Rdio Web Service API wrapper with OAuth 2.0
114
114
  test_files: []
115
115
  has_rdoc: