Skip to content

Commit

Permalink
Dependency fix (#857)
Browse files Browse the repository at this point in the history
* change gem name

* fix wrong n of arg error

* bump version

* docs: Update README
  • Loading branch information
DominikAlberski committed Apr 4, 2024
1 parent 5c992ae commit 4fef990
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
gemspec

gem 'gh', git: 'https://github.com/travis-ci/gh'
gem 'travis-gh'
gem 'rake'
gem 'activesupport', '~> 7.0.6'

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,7 @@ If you do not have write access to the system gem directory, you'll need to perf
Now make sure everything is working:
$ travis version
1.10.0
1.13.1
See also [Note on Ubuntu](#ubuntu) below.
Expand Down
4 changes: 2 additions & 2 deletions lib/travis/tools/completion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def install_completion
end

def update_completion
mkdir_p(config_path)
cp(Assets['travis.sh'], cmp_file)
FileUtils.mkdir_p(config_path)
FileUtils.cp(Assets['travis.sh'], cmp_file)
end

def completion_installed?
Expand Down
2 changes: 1 addition & 1 deletion lib/travis/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Travis
VERSION = '1.13.0'
VERSION = '1.13.1'
end
4 changes: 2 additions & 2 deletions travis.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# frozen_string_literal: true

require_relative 'lib/travis/version'
# Run `rake travis.gemspec` to update the gemspec.
Gem::Specification.new do |s|
# general info
s.name = 'travis'
s.version = '1.13.0'
s.version = Travis::VERSION
s.required_ruby_version = '>= 3.2.0'
s.description = 'CLI and Ruby client library for Travis CI'
s.homepage = 'https://github.com/travis-ci/travis.rb'
Expand Down

0 comments on commit 4fef990

Please sign in to comment.