trav3 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: a86b57df53d43247e95ff1613a8d274e05357db91679014d892373efcb97c5b0
4
- data.tar.gz: da07e2429e707b577eba7a86b91cec5b2c577734346d68d01ca5b4d7670a6acc
3
+ metadata.gz: fa4cd27e0c1a0343759dbcf4b96ababd0fcf179a99caa526b95e8e4b6fdf120e
4
+ data.tar.gz: 6b27403fca5fc20c3134b661b76e4747c60eb23973b6ee764468dc98ecf3d41b
5
5
  SHA512:
6
- metadata.gz: dcba0aaf3064b230bfdf1e8fefc360bb2d6476c0312116f7a17b60b750decbdae0c889f08ca1ef233e525ca15e1eac4af461fc7026fb32e3775051275cd1704f
7
- data.tar.gz: 89ad1cc944a9492086799d0493257bf236da88d1e68c58df61bb07b76c82fc850578b5928ba4765dce8da07ca74288f673c11e2d98edf6aabec1694919f36acb
6
+ metadata.gz: 6ea902e6238e08d1708cd7f5f076cf1fca860c1ca82c0425d5a0e16b902f5771e641274c23daccf0f65b9fb38e2ba991c084528031e3053dce306fd8a627d781
7
+ data.tar.gz: 8fcf193c13837169146b79048c93cd38acd6435035543f35ed98e8e3e14aabca696382fb691323aac7ee529f376bbb32671fa8f2e9df2f8e0973f56eb8275ff2
data/README.md CHANGED
@@ -1,13 +1,12 @@
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
- [![Inline docs](http://inch-ci.org/github/danielpclark/trav3.svg?branch=master)](http://inch-ci.org/github/danielpclark/trav3)
4
3
  [![SayThanks.io](https://img.shields.io/badge/SayThanks.io-%E2%98%BC-1EAEDB.svg)](https://saythanks.io/to/danielpclark)
5
4
 
6
5
  # Trav3
7
6
 
8
7
  A simple abstraction layer for Travis CI API v3. The results from queries return either `Success`
9
8
  or `RequestError` which both repsond with Hash like query methods for the JSON data or the Net::HTTP
10
- resonse object methods.
9
+ resonse object methods. Documentation from the API has been added to this package. Please [check it out](http://www.rubydoc.info/github/danielpclark/trav3/master/Trav3/Travis).
11
10
 
12
11
 
13
12
  ## Installation
@@ -1,7 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  require 'net/http'
2
3
  require 'uri'
3
4
  require 'json'
4
- require 'trav3/result'
5
5
 
6
6
  module Trav3
7
7
  module GET
@@ -1,5 +1,4 @@
1
- require 'trav3/get'
2
-
1
+ # frozen_string_literal: true
3
2
  module Trav3
4
3
  class Pagination
5
4
  def initialize(result)
@@ -1,7 +1,7 @@
1
+ # frozen_string_literal: true
1
2
  require 'net/http'
2
3
  require 'uri'
3
4
  require 'json'
4
- require 'trav3/result'
5
5
 
6
6
  module Trav3
7
7
  module POST
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  require 'forwardable'
3
- require 'trav3/pagination'
4
3
 
5
4
  module Trav3
6
5
  class InvalidRepository < StandardError
@@ -1,3 +1,3 @@
1
1
  module Trav3
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  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.1.0
4
+ version: 0.1.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: 2018-03-21 00:00:00.000000000 Z
11
+ date: 2018-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -97,8 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubyforge_project:
101
- rubygems_version: 2.7.6
100
+ rubygems_version: 3.0.0
102
101
  signing_key:
103
102
  specification_version: 4
104
103
  summary: Simple Travis V3 API Client