Sha256: ddac717f0656c935339f08778e7deb20c3874defbde9321190780f7c0926386e

Contents?: true

Size: 313 Bytes

Versions: 2

Compression:

Stored size: 313 Bytes

Contents

module GerminateGist
  class UserError < RuntimeError
  end

  class GithubConfigError < UserError
    MESSAGE = <<END
No global Github config found.  See
http://github.com/blog/180-local-github-config for how to set up your login and
token.
END

    def initialize(message=MESSAGE)
      super
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
devver-germinate-gist-1.0.0 lib/germinate-gist/errors.rb
germinate-gist-1.0.0 lib/germinate-gist/errors.rb