tracker_api 1.15.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby-tests.yml +4 -5
- data/LICENSE.txt +1 -1
- data/README.md +3 -3
- data/lib/tracker_api/version.rb +1 -1
- data/tracker_api.gemspec +3 -3
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df344c4e05bc3a54ad755104ab4d92ea149d1cce27b9d15960b931a88182e9c3
|
4
|
+
data.tar.gz: a8fa23f0811a3a71926ab6a811f8666d6cbe40fedd7611d26efa74fb5c303dff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa36505611df92d2e1da0af52fc03f896dcd32fb14d2971f1247ff5dffddcaf52f1e89f00b99b5b56e3bc0418f27f77a973f58d8b7b1ef1cab864aab86167e04
|
7
|
+
data.tar.gz: 749818253f7ef14da7d768ade22c481214729ff2b763e674e7872a90fa7e3d05c340984ee5d5641d7d793682185b0ed2b06421f57fdcc834fe15f3d39a0b4660
|
@@ -12,7 +12,7 @@ jobs:
|
|
12
12
|
name: Specs - Ruby ${{ matrix.ruby-version }} ${{matrix.gemfile}}
|
13
13
|
runs-on: ubuntu-latest
|
14
14
|
env:
|
15
|
-
CC_TEST_REPORTER_ID:
|
15
|
+
CC_TEST_REPORTER_ID: 8d1cf5f9b65f4b22efbdbb85b82f31ecdf132ea9e7f6728cd288fb05e9fa549a
|
16
16
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
|
17
17
|
|
18
18
|
strategy:
|
@@ -21,10 +21,9 @@ jobs:
|
|
21
21
|
- faraday-1
|
22
22
|
- faraday-2
|
23
23
|
ruby-version:
|
24
|
+
- "3.3"
|
24
25
|
- "3.2"
|
25
26
|
- "3.1"
|
26
|
-
- "3.0"
|
27
|
-
- "2.7"
|
28
27
|
- jruby
|
29
28
|
- truffleruby
|
30
29
|
|
@@ -36,11 +35,11 @@ jobs:
|
|
36
35
|
ruby-version: ${{ matrix.ruby-version }}
|
37
36
|
- name: Set environment
|
38
37
|
run: echo "COVERAGE=true" >> "$GITHUB_ENV"
|
39
|
-
if: matrix.ruby-version == '3.
|
38
|
+
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'
|
40
39
|
- name: Install dependencies
|
41
40
|
run: bundle install
|
42
41
|
- name: Run tests
|
43
42
|
run: bundle exec rake test
|
44
43
|
- name: Upload Coverage
|
45
44
|
uses: paambaati/codeclimate-action@v3.2.0
|
46
|
-
if: matrix.ruby-version == '3.
|
45
|
+
if: matrix.ruby-version == '3.3' && matrix.gemfile == 'faraday-2'
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# TrackerApi
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/tracker_api.svg)](http://badge.fury.io/rb/tracker_api)
|
4
|
-
[![Build Status](https://github.com/
|
5
|
-
[![Maintainability](https://api.codeclimate.com/v1/badges/
|
6
|
-
[![Test Coverage](https://api.codeclimate.com/v1/badges/
|
4
|
+
[![Build Status](https://github.com/irphilli/tracker_api/actions/workflows/ruby-tests.yml/badge.svg?branch=master)](https://github.com/irphilli/tracker_api/actions)
|
5
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/71aa9cdefa7ff7e9561c/maintainability)](https://codeclimate.com/github/irphilli/tracker_api/maintainability)
|
6
|
+
[![Test Coverage](https://api.codeclimate.com/v1/badges/71aa9cdefa7ff7e9561c/test_coverage)](https://codeclimate.com/github/irphilli/tracker_api/test_coverage)
|
7
7
|
|
8
8
|
This gem allows you to easily use the [Pivotal Tracker v5 API](https://www.pivotaltracker.com/help/api/rest/v5).
|
9
9
|
|
data/lib/tracker_api/version.rb
CHANGED
data/tracker_api.gemspec
CHANGED
@@ -6,11 +6,11 @@ require 'tracker_api/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'tracker_api'
|
8
8
|
spec.version = TrackerApi::VERSION
|
9
|
-
spec.authors = ['ProductPlan']
|
10
|
-
spec.email = ['
|
9
|
+
spec.authors = ['Phil Phillips', 'Forest Carlisle', 'ProductPlan']
|
10
|
+
spec.email = ['irving.phillips@gmail.com']
|
11
11
|
spec.summary = %q{API client for the Pivotal Tracker v5 API}
|
12
12
|
spec.description = %q{This gem allows you to easily use the Pivotal Tracker v5 API.}
|
13
|
-
spec.homepage = 'https://github.com/
|
13
|
+
spec.homepage = 'https://github.com/irphilli/tracker_api'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tracker_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
+
- Phil Phillips
|
8
|
+
- Forest Carlisle
|
7
9
|
- ProductPlan
|
8
10
|
autorequire:
|
9
11
|
bindir: bin
|
10
12
|
cert_chain: []
|
11
|
-
date:
|
13
|
+
date: 2024-07-13 00:00:00.000000000 Z
|
12
14
|
dependencies:
|
13
15
|
- !ruby/object:Gem::Dependency
|
14
16
|
name: bundler
|
@@ -228,7 +230,7 @@ dependencies:
|
|
228
230
|
version: '0'
|
229
231
|
description: This gem allows you to easily use the Pivotal Tracker v5 API.
|
230
232
|
email:
|
231
|
-
-
|
233
|
+
- irving.phillips@gmail.com
|
232
234
|
executables: []
|
233
235
|
extensions: []
|
234
236
|
extra_rdoc_files: []
|
@@ -461,7 +463,7 @@ files:
|
|
461
463
|
- test/vcr/x-cassettes/update_story_to_create_activity.json
|
462
464
|
- test/workspace_test.rb
|
463
465
|
- tracker_api.gemspec
|
464
|
-
homepage: https://github.com/
|
466
|
+
homepage: https://github.com/irphilli/tracker_api
|
465
467
|
licenses:
|
466
468
|
- MIT
|
467
469
|
metadata: {}
|
@@ -480,7 +482,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
480
482
|
- !ruby/object:Gem::Version
|
481
483
|
version: '0'
|
482
484
|
requirements: []
|
483
|
-
rubygems_version: 3.
|
485
|
+
rubygems_version: 3.5.11
|
484
486
|
signing_key:
|
485
487
|
specification_version: 4
|
486
488
|
summary: API client for the Pivotal Tracker v5 API
|