File: relation.rb

package info (click to toggle)
ruby-octokit 10.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,092 kB
  • sloc: ruby: 13,339; sh: 99; makefile: 7; javascript: 3
file content (12 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'sawyer'

patch = Module.new do
  def href(options = nil)
    # Temporary workaround for: https://github.com/octokit/octokit.rb/issues/727
    name.to_s == 'ssh' ? @href : super
  end
end

Sawyer::Relation.send(:prepend, patch)