Skip to content

Commit

Permalink
Merge pull request #37 from volodya-lombrozo/fix_cron
Browse files Browse the repository at this point in the history
Fix Failed Cron
  • Loading branch information
yegor256 authored Jun 19, 2024
2 parents 96d2aaf + 6492456 commit 1290242
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gem 'cucumber', '9.1.0', require: false
gem 'minitest', '5.20.0', require: false
gem 'rake', '13.1.0', require: false
gem 'rdoc', '6.6.1', require: false
gem 'rubocop', '1.52.1', require: false
gem 'rubocop', '1.64.1', require: false
gem 'rubocop-rspec', '2.25.0', require: false
gem 'simplecov', '0.22.0', require: false
gem 'xcop', '0.7.1', require: false
2 changes: 1 addition & 1 deletion features/step_definitions/steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
FileUtils.mkdir_p(File.dirname(file)) unless File.exist?(file)
File.write(file, text.gsub(/\\xFF/, 0xFF.chr))
File.write(file, text.gsub('\\xFF', 0xFF.chr))
end

When(%r{^I run bin/mergem with "([^"]*)"$}) do |arg|
Expand Down
2 changes: 1 addition & 1 deletion test/test_repos.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_find_real

def test_ignore_archived
api = Octokit::Client.new
r = Mergem::Repos.new(api, Loog::VERBOSE, ['yegor256/netbout'])
r = Mergem::Repos.new(api, Loog::VERBOSE, ['polystat/j2ast'])
assert_equal(0, r.each)
rescue Octokit::TooManyRequests => e
puts e.message
Expand Down

0 comments on commit 1290242

Please sign in to comment.