saddler-reporter-github 2.0.0 → 2.1.0
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 +5 -5
- data/.circleci/config.yml +35 -0
- data/.conventional-changelog.context.js +0 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +0 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/Gemfile +0 -0
- data/LICENSE.txt +0 -0
- data/README.md +3 -3
- data/Rakefile +0 -0
- data/lib/saddler/reporter/github/client.rb +0 -0
- data/lib/saddler/reporter/github/comment.rb +0 -0
- data/lib/saddler/reporter/github/commit_comment.rb +0 -0
- data/lib/saddler/reporter/github/commit_review_comment.rb +0 -0
- data/lib/saddler/reporter/github/helper.rb +0 -0
- data/lib/saddler/reporter/github/patch.rb +0 -0
- data/lib/saddler/reporter/github/patches.rb +0 -0
- data/lib/saddler/reporter/github/pull_request_comment.rb +0 -0
- data/lib/saddler/reporter/github/pull_request_review_comment.rb +0 -0
- data/lib/saddler/reporter/github/repository.rb +0 -0
- data/lib/saddler/reporter/github/version.rb +1 -1
- data/lib/saddler/reporter/github.rb +0 -0
- data/saddler-reporter-github.gemspec +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 03c683dbe483dcb944eadb334058f6da81058b7bae8fc203c7f288c60fbe647e
|
|
4
|
+
data.tar.gz: 0d7f722f5ffd1dcea27d2a479f47081447bae1590cac958569af924f7bad2dd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a719c58ccae7cfe082bd6cdb71d6147d3795c733de7a8217ea0d64838f98542c4c741c39b4a1ffeb0dd55ef44e662ed6929780ecb7df7144d546b23b87f3378f
|
|
7
|
+
data.tar.gz: b0bd8e82b5cc3ce8f4daa5fb405ae8d6eb63032527d37531db79ea68f315df839d236aa4142e886110d33c233103ad50196a94c79eae14c951819d4e0a6e7860
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
version: 2.1
|
|
2
|
+
orbs:
|
|
3
|
+
ruby: circleci/ruby@1.2
|
|
4
|
+
|
|
5
|
+
executors:
|
|
6
|
+
linux:
|
|
7
|
+
docker:
|
|
8
|
+
- image: cimg/base:stable
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
test:
|
|
12
|
+
parameters:
|
|
13
|
+
os:
|
|
14
|
+
type: executor
|
|
15
|
+
ruby-version:
|
|
16
|
+
type: string
|
|
17
|
+
executor: << parameters.os >>
|
|
18
|
+
steps:
|
|
19
|
+
- checkout
|
|
20
|
+
- ruby/install:
|
|
21
|
+
version: << parameters.ruby-version >>
|
|
22
|
+
- run:
|
|
23
|
+
name: bundle install
|
|
24
|
+
command: bundle install
|
|
25
|
+
- run:
|
|
26
|
+
name: test
|
|
27
|
+
command: bundle exec rake
|
|
28
|
+
workflows:
|
|
29
|
+
all-tests:
|
|
30
|
+
jobs:
|
|
31
|
+
- test:
|
|
32
|
+
matrix:
|
|
33
|
+
parameters:
|
|
34
|
+
os: [linux]
|
|
35
|
+
ruby-version: ["2.6", "2.7", "3.0"]
|
|
File without changes
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
|
File without changes
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# [2.1.0](https://github.com/packsaddle/ruby-saddler-reporter-github/compare/v2.0.0...v2.1.0) (2021-11-07)
|
|
2
|
+
|
|
3
|
+
* Relax git_diff_parser version
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
<a name="2.0.0"></a>
|
|
2
7
|
# [2.0.0](https://github.com/packsaddle/ruby-saddler-reporter-github/compare/v1.0.0...v2.0.0) (2017-01-15)
|
|
3
8
|
|
data/CODE_OF_CONDUCT.md
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/LICENSE.txt
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Saddler::Reporter::Github
|
|
2
2
|
|
|
3
|
-
[![Gem version][gem-image]][gem-url] [![
|
|
3
|
+
[![Gem version][gem-image]][gem-url] [![CI Status][ci-image]][ci-url] [![yard docs][docs-image]][docs-url]
|
|
4
4
|
|
|
5
5
|
> [Saddler](https://github.com/packsaddle/ruby-saddler) reporter for GitHub.
|
|
6
6
|
|
|
@@ -114,8 +114,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
114
114
|
|
|
115
115
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
116
116
|
|
|
117
|
-
[
|
|
118
|
-
[
|
|
117
|
+
[ci-url]: https://circleci.com/gh/packsaddle/ruby-saddler-reporter-github
|
|
118
|
+
[ci-image]: https://img.shields.io/circleci/build/github/packsaddle/ruby-saddler-reporter-github?style=flat-square
|
|
119
119
|
[gem-url]: https://rubygems.org/gems/saddler-reporter-github
|
|
120
120
|
[gem-image]: http://img.shields.io/gem/v/saddler-reporter-github.svg?style=flat-square
|
|
121
121
|
[docs-url]: http://www.rubydoc.info/gems/saddler-reporter-github
|
data/Rakefile
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.require_paths = ['lib']
|
|
33
33
|
|
|
34
34
|
spec.add_runtime_dependency 'octokit', '>= 0'
|
|
35
|
-
spec.add_runtime_dependency 'git_diff_parser', '>= 2.0', '<
|
|
35
|
+
spec.add_runtime_dependency 'git_diff_parser', '>= 2.0', '< 5.0'
|
|
36
36
|
spec.add_runtime_dependency 'saddler-reporter-support', '>= 1.0'
|
|
37
37
|
spec.add_runtime_dependency 'saddler-reporter-support-git', '>= 1.0'
|
|
38
38
|
spec.add_runtime_dependency 'env_pull_request', '>= 1.0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saddler-reporter-github
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sanemat
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: octokit
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '2.0'
|
|
34
34
|
- - "<"
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: '
|
|
36
|
+
version: '5.0'
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '2.0'
|
|
44
44
|
- - "<"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '
|
|
46
|
+
version: '5.0'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: saddler-reporter-support
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,6 +135,7 @@ executables: []
|
|
|
135
135
|
extensions: []
|
|
136
136
|
extra_rdoc_files: []
|
|
137
137
|
files:
|
|
138
|
+
- ".circleci/config.yml"
|
|
138
139
|
- ".conventional-changelog.context.js"
|
|
139
140
|
- ".gitignore"
|
|
140
141
|
- ".rubocop.yml"
|
|
@@ -178,10 +179,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
179
|
- !ruby/object:Gem::Version
|
|
179
180
|
version: '0'
|
|
180
181
|
requirements: []
|
|
181
|
-
|
|
182
|
-
rubygems_version: 2.5.1
|
|
182
|
+
rubygems_version: 3.1.6
|
|
183
183
|
signing_key:
|
|
184
184
|
specification_version: 4
|
|
185
185
|
summary: Saddler reporter for GitHub.
|
|
186
186
|
test_files: []
|
|
187
|
-
has_rdoc:
|