Sha256: 4816b39c0bcde81b7c82036f79d62c20ef810ac61d37c78887eea5be1359d643

Contents?: true

Size: 402 Bytes

Versions: 4

Compression:

Stored size: 402 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

unless File.exist?('./Rakefile') || File.exist?('./Gemfile')
  abort 'Please run annotaterb from the root of the project.'
end

begin
  require 'bundler'
  Bundler.setup
rescue StandardError
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

4 entries across 4 versions & 1 rubygems

Version Path
annotaterb-4.1.1 exe/annotaterb
annotaterb-4.1.0 exe/annotaterb
annotaterb-4.0.0 exe/annotaterb
annotaterb-4.0.0.beta.1 exe/annotaterb