Skip to content

Commit 4fef990

Browse files
Dependency fix (#857)
* change gem name * fix wrong n of arg error * bump version * docs: Update README
1 parent 5c992ae commit 4fef990

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
source 'https://rubygems.org'
44
gemspec
55

6-
gem 'gh', git: 'https://github.com/travis-ci/gh'
6+
gem 'travis-gh'
77
gem 'rake'
88
gem 'activesupport', '~> 7.0.6'
99

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2007,7 +2007,7 @@ If you do not have write access to the system gem directory, you'll need to perf
20072007
Now make sure everything is working:
20082008
20092009
$ travis version
2010-
1.10.0
2010+
1.13.1
20112011
20122012
See also [Note on Ubuntu](#ubuntu) below.
20132013

lib/travis/tools/completion.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ def install_completion
3434
end
3535

3636
def update_completion
37-
mkdir_p(config_path)
38-
cp(Assets['travis.sh'], cmp_file)
37+
FileUtils.mkdir_p(config_path)
38+
FileUtils.cp(Assets['travis.sh'], cmp_file)
3939
end
4040

4141
def completion_installed?

lib/travis/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Travis
4-
VERSION = '1.13.0'
4+
VERSION = '1.13.1'
55
end

travis.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# frozen_string_literal: true
2-
2+
require_relative 'lib/travis/version'
33
# Run `rake travis.gemspec` to update the gemspec.
44
Gem::Specification.new do |s|
55
# general info
66
s.name = 'travis'
7-
s.version = '1.13.0'
7+
s.version = Travis::VERSION
88
s.required_ruby_version = '>= 3.2.0'
99
s.description = 'CLI and Ruby client library for Travis CI'
1010
s.homepage = 'https://github.com/travis-ci/travis.rb'

0 commit comments

Comments
 (0)