Sha256: 489d0f65b09d189e2d5e3eb4c7793c5e3d068d5aeca16c4ec9422c0a4e90abf6

Contents?: true

Size: 259 Bytes

Versions: 3

Compression:

Stored size: 259 Bytes

Contents

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

$LOAD_PATH.unshift("#{__dir__}/../lib")

require 'smart_todo'

unless ENV['ENABLE_SMART_TODO']
  puts 'Not running SmartTodo since the ENABLE_SMART_TODO ENV is not set'

  exit(0)
end

SmartTodo::CLI.new.run

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
smart_todo-1.0.2 exe/smart_todo
smart_todo-1.0.1 exe/smart_todo
smart_todo-1.0.0 exe/smart_todo