trav3 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6ce7da3671a152eb6cc9bc85f50d37d8aec27c17ff9c880d168d16e8ff78dff
4
- data.tar.gz: 1d01ba5af7ad9bb160e92e975dd9ab0120d041da253580146113b2862675755e
3
+ metadata.gz: 4855acd03319dc3b7e1295f7ee184b98ffcc79dfe230e17704ea145d4b9c5a72
4
+ data.tar.gz: 7256ae70f65c3172235edd97b5009a62751e2a8048a36d275bd8c9d7e3bcf44e
5
5
  SHA512:
6
- metadata.gz: 2d840ae84e3064ec94d4eead9d1adb44d8ac70cbf8f06152cbcbd5be795bbf65d8b7b84979e48f11b541e1f8f0ab4f21baea61b520c02b69c1512f00eeb142ce
7
- data.tar.gz: a43e53a52a2a6eb16d776532d0f2cf5dd208f84f7bbabda4f29a4c145056a96953285a27ebc3017b9b64968ca90b7e778cdaf6972f11c5331a7c5c1e4058a1e1
6
+ metadata.gz: 6c03fe5e63adb1e6d87c3d0aff5f43e3b9dd1d17ca5720c1d66e397b733ec55cf3debbc85a1773237f3a35a43ce05286f8fcf12b9f34a2ad23c0b5b82cc407f4
7
+ data.tar.gz: 4452d8674a90f0ad08b2c5efdd7eddc83c486742934a6675f7b67488145049c1723668307d1c0064471ff0bc4a56532a18cd8a75b9e474c63230a671d002e354
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/trav3.svg)](http://badge.fury.io/rb/trav3)
2
2
  [![Build Status](https://travis-ci.org/danielpclark/trav3.svg?branch=master)](https://travis-ci.org/danielpclark/trav3)
3
- [![Commits Since Release](https://img.shields.io/github/commits-since/danielpclark/trav3/v0.5.0.svg)](https://github.com/danielpclark/trav3/graphs/commit-activity)
3
+ [![Commits Since Release](https://img.shields.io/github/commits-since/danielpclark/trav3/v0.5.1.svg)](https://github.com/danielpclark/trav3/graphs/commit-activity)
4
4
  [![Maintainability](https://api.codeclimate.com/v1/badges/1ed07a4baea3832b6207/maintainability)](https://codeclimate.com/github/danielpclark/trav3/maintainability)
5
5
  [![Test Coverage](https://api.codeclimate.com/v1/badges/1ed07a4baea3832b6207/test_coverage)](https://codeclimate.com/github/danielpclark/trav3/test_coverage)
6
6
  [![Red The Docs](https://img.shields.io/badge/Read-the%20docs-blue.svg)](http://danielpclark.github.io/trav3/Trav3/Travis.html)
@@ -157,6 +157,7 @@ The keys for the response are displayed with `#inspect` along with the object.
157
157
  * `#follow`
158
158
  * `#hash?`
159
159
  * `#last`
160
+ * `#warnings`
160
161
 
161
162
  Which each behave as they would on the collection type per collection type, `Hash` or `Array`, with the exception of `#each`. `#each` will wrap every item in an `Array` with another `ResponseCollection`, but if it's a `Hash` then `#each` simply works as it normally would on a `Hash`
162
163
 
data/lib/trav3.rb CHANGED
@@ -727,11 +727,8 @@ module Trav3
727
727
  # Query Parameter Type Description
728
728
  # include [String] List of attributes to eager load.
729
729
  # limit Integer How many builds to include in the response. Used for pagination.
730
- # limit Integer How many builds to include in the response. Used for pagination.
731
- # offset Integer How many builds to skip before the first entry in the response. Used for pagination.
732
730
  # offset Integer How many builds to skip before the first entry in the response. Used for pagination.
733
731
  # sort_by [String] Attributes to sort builds by. Used for pagination.
734
- # sort_by [String] Attributes to sort builds by. Used for pagination.
735
732
  #
736
733
  # Example: GET /builds?limit=5
737
734
  #
@@ -3685,9 +3682,10 @@ module Trav3
3685
3682
  get("#{without_repo}#{url}")
3686
3683
  end
3687
3684
 
3688
- def get_path_with_opts(url)
3685
+ def get_path_with_opts(url, without_limit = true)
3689
3686
  url, opt = url.match(/^(.+)\?(.*)$/)&.captures || url
3690
3687
  opts.immutable do |o|
3688
+ o.remove(:limit) if without_limit
3691
3689
  o.send(:update, opt)
3692
3690
  get_path("#{url}#{opts}")
3693
3691
  end
@@ -142,6 +142,16 @@ module Trav3
142
142
  self[-1]
143
143
  end
144
144
 
145
+ # If `@warnings` was returned with the response this will return
146
+ # a `ResponseCollection` instance of them. Otherwise this returns `nil`.
147
+ #
148
+ # @return [ResponseCollection, nil]
149
+ def warnings
150
+ return nil unless hash?
151
+
152
+ self['@warnings']
153
+ end
154
+
145
155
  private
146
156
 
147
157
  def collection?(input)
data/lib/trav3/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Trav3
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trav3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel P. Clark
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-01 00:00:00.000000000 Z
11
+ date: 2019-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler