Skip to content

Commit 277879d

Browse files
committed
Update codeowners, test on latest ruby releases + more
Also remove the rake tasks for releasing the gem since we do this in expeditor now. Signed-off-by: Tim Smith <[email protected]>
1 parent b632685 commit 277879d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
* @chef/msys-developers
44
.expeditor/** @chef/jex-team
5+
README.md @chef/docs-team

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Issues Resolved
66

77
[List any existing issues this PR resolves, or any Discourse or
8-
StackOverflow discussion that's relevant]
8+
StackOverflow discussions that are relevant]
99

1010
### Check List
1111

.rspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
--format documentation
12
--color
2-
-fd

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
sudo: false
22
language: ruby
33
cache: bundler
4+
dist: xenial
45

56
matrix:
67
include:
7-
- rvm: 2.3.7
8-
- rvm: 2.4.4
9-
- rvm: 2.5.1
8+
- rvm: 2.3.8
9+
- rvm: 2.4.5
10+
- rvm: 2.5.3
11+
- rvm: 2.6
1012
- rvm: ruby-head
1113
allow_failures:
1214
- rvm: ruby-head
1315

1416
branches:
1517
only:
16-
- master
18+
- master
1719

1820
bundler_args: --jobs 7 --without docs debug
1921

Rakefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
require "bundler/gem_tasks"
21
require "rspec/core/rake_task"
32

43
begin
@@ -9,8 +8,6 @@ rescue Bundler::BundlerError => e
98
exit e.status_code
109
end
1110

12-
Bundler::GemHelper.install_tasks
13-
1411
desc "Run specs"
1512
RSpec::Core::RakeTask.new(:spec) do |spec|
1613
spec.pattern = "spec/**/*_spec.rb"

0 commit comments

Comments
 (0)