class Travis::Client::AssetNotFound

Public Class Methods

new(file, *args) click to toggle source
Calls superclass method
# File lib/travis/client/error.rb, line 27
def initialize(file, *args)
  if md = file.match(%r[init/(?<lang>[^\.]+)\.yml$])
    super "unknown language #{md[:lang]}", *args
  else
    super file, *args
  end
end