Sha256: d3652903b9f3af4bb0aa5f0bc5f1091cd5c7cdee155cc16b31a0804b813583bf
Contents?: true
Size: 618 Bytes
Versions: 11
Compression:
Stored size: 618 Bytes
Contents
#!/usr/bin/env ruby if /^2/.match?(RUBY_VERSION) # suppress warnings for 'experimental' pattern matching # for ruby versions < 3.x require "warning" Warning.ignore(/Pattern matching/) end require_relative "giblish/version" require_relative "giblish/application" require_relative "giblish/search/request_manager" require_relative "giblish/github_trigger/webhook_manager" module Giblish # The main entry point to the giblish application class << self def application @application ||= Giblish::EntryPoint end end end if __FILE__ == $PROGRAM_NAME Giblish.application.run_from_cmd_line end
Version data entries
11 entries across 11 versions & 1 rubygems