ruser 3.0.0 → 3.0.1

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: a093290642c49a0499ceda520e1ccb099b5acd31
4
- data.tar.gz: 9bda021d3d1811cfea8d9e70eed0e08616876e78
3
+ metadata.gz: 971f95166f96e02113e5253a605ae68abc2c5132
4
+ data.tar.gz: 814a8c186a337a045627de49ed13fc0718e6e924
5
5
  SHA512:
6
- metadata.gz: 4045cc4241063f1f5b0e0624b2ab673818b5e6b66c7dc02ed1485e39e070c101fdc12bec2f3a3e2e8cb862ba60e5dbdd088eb329af3cda4bef2c8b44cb779650
7
- data.tar.gz: 020d69b5f8de2377059da9848b6833b0de19f3f84db191b3128a467379674148e4e7f8622b0afbbc5a5b2d448747237307e9920bb95caa543dfff0fb4c5a71ec
6
+ metadata.gz: 4314c1768a92f2ace28eb94c975084340d445033d12b92c5e25d1719ce369dec7d4fa90623028c8f1e707913a22500d3bc4b0eeb309d1ff8669613ad1c1b4bb2
7
+ data.tar.gz: 854ddc8aca9e1236a6884bebab6e21502b89a909cb6606c8d4fdbac2069b7682283265a0bc76dc6aed2786a8392391d1999e98f9c10f7fc290cc45dbfd3dff55
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  RUser is a simple Ruby Gem to communicate with the randomuser.me API.
4
4
 
5
- [![Build Status](https://travis-ci.org/jtkendall/ruser.png)](https://travis-ci.org/jtkendall/ruser) [![Coverage Status](https://coveralls.io/repos/jtkendall/ruser/badge.png?branch=master)](https://coveralls.io/r/jtkendall/ruser?branch=master) [![Code Climate](https://codeclimate.com/github/jtkendall/ruser.png)](https://codeclimate.com/github/jtkendall/ruser)
5
+ [![Build Status](https://travis-ci.org/jtkendall/ruser.svg?branch=master)](https://travis-ci.org/jtkendall/ruser) [![Code Climate](https://codeclimate.com/github/jtkendall/ruser/badges/gpa.svg)](https://codeclimate.com/github/jtkendall/ruser) [![Gem Version](https://badge.fury.io/rb/ruser.svg)](https://badge.fury.io/rb/ruser) [![Dependency Status](https://gemnasium.com/jtkendall/ruser.svg)](https://gemnasium.com/jtkendall/ruser)
6
6
 
7
7
  ## Installation
8
8
 
@@ -90,11 +90,11 @@ If you would like more than one user supply the `results:` key in the options ha
90
90
 
91
91
  require 'ruser'
92
92
 
93
- results = RUser.new( results: => 3 })
93
+ results = RUser.new( results: 3 })
94
94
 
95
95
  The maximum number of results is 2000. Any number larger than that will return only 2000, unless you have a [RandomAPI](http://randomapi.com) API key. With an API key you can return up to 10000 results per request, just pass your `key:` with your optinos. You can pass the `gender:` key along with results to return x number of male or female users:
96
96
 
97
- results = RUser.new({ :results => 3, :gender => 'female' })
97
+ results = RUser.new({ results: 3, gender: 'female' })
98
98
 
99
99
 
100
100
  ## Contributing & Development
@@ -4,7 +4,7 @@ module RUser
4
4
  # @author Joshua Kendall
5
5
  module Api
6
6
  # The URL for the API.
7
- URL = 'http://api.randomuser.me'.freeze
7
+ URL = 'https://api.randomuser.me'.freeze
8
8
 
9
9
  # The version of the API that is used.
10
10
  VERSION = '0.7'.freeze
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module RUser
3
- VERSION = '3.0.0'.freeze
3
+ VERSION = '3.0.1'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruser
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Kendall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-17 00:00:00.000000000 Z
11
+ date: 2016-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -125,4 +125,3 @@ signing_key:
125
125
  specification_version: 4
126
126
  summary: Random User Generator API
127
127
  test_files: []
128
- has_rdoc: