Sha256: 9035a8639ec4a2ed61d6cd06b1d9da7df1436a0e2b0e1a289ce26b14121c4b0a
Contents?: true
Size: 388 Bytes
Versions: 11
Compression:
Stored size: 388 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true if !File.exist?("./Rakefile") && !File.exist?("./Gemfile") abort "Please run annotaterb from the root of the project." end begin require "bundler" Bundler.setup rescue end $LOAD_PATH.unshift("#{__dir__}/../lib") require "annotate_rb" _exit_status = ::AnnotateRb::Runner.run(ARGV) # TODO: Return exit status # exit exit_status
Version data entries
11 entries across 11 versions & 1 rubygems