saddler-reporter-github 2.0.0 → 2.1.0

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
- SHA1:
3
- metadata.gz: b036b94fb82096ae2dac76cd1cbf90b9d7dde433
4
- data.tar.gz: f4f9daf4300e1ac4abf6e9c07a92e6efa011294b
2
+ SHA256:
3
+ metadata.gz: 03c683dbe483dcb944eadb334058f6da81058b7bae8fc203c7f288c60fbe647e
4
+ data.tar.gz: 0d7f722f5ffd1dcea27d2a479f47081447bae1590cac958569af924f7bad2dd0
5
5
  SHA512:
6
- metadata.gz: 108bee0ac8c6c2a104f258110c55f0c6d59411ff7238864f35cbe52850dd0dd5fb905d95397fc506eaf6e2d3c46566d275a58f949b3e43419cc5c58c1d5729cb
7
- data.tar.gz: 03dae52e0dd51bd27fc93e200381c1213b23c7427b5229a48dfe0d331e317263a6bb350dbe41fbcc0e2487982e099266ec33209e5de36a8ac11359615ef97baf
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
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  /node_modules
11
+ /package-lock.json
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] [![Travis-CI Status][travis-image]][travis-url] [![yard docs][docs-image]][docs-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
- [travis-url]: https://travis-ci.org/packsaddle/ruby-saddler-reporter-github
118
- [travis-image]: https://img.shields.io/travis/packsaddle/ruby-saddler-reporter-github/master.svg?style=flat-square&label=build%20%28linux%29
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
@@ -1,7 +1,7 @@
1
1
  module Saddler
2
2
  module Reporter
3
3
  module Github
4
- VERSION = '2.0.0'.freeze
4
+ VERSION = '2.1.0'.freeze
5
5
  end
6
6
  end
7
7
  end
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', '< 3.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.0.0
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: 2017-01-15 00:00:00.000000000 Z
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: '3.0'
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: '3.0'
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
- rubyforge_project:
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: