-
Notifications
You must be signed in to change notification settings - Fork 0
/
doing
executable file
·136 lines (109 loc) · 2.48 KB
/
doing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#! /usr/bin/ruby
# ____ _
# | _ \ ___ (_)_ __ __ _
# | | | |/ _ \| | '_ \ / _` |
# | |_| | (_) | | | | | (_| |
# |____/ \___/|_|_| |_|\__, |
# |___/
#
# Keeps track of the one thing you should be focusing on.
# A managment tool for spread-thinners. Really a one line todo list for idiots.
# Usage:
# cmd: "doing something or another"
# > something or another
# cmd: "wwid"
# > something or another
FILE_NAME_TODO = "/var/tmp/.doing-#{File.basename(Dir.getwd)}"
_currentTodo = ""
def help
puts <<-HEREDOC
doing: a singular todo list for multitaskers.
Its a todo list for the current directory with one todo.
Setting the todo: `doing [whatever you\'re doing]`
Checking the todo: `doing`
Completing the todo: `doing done` or `doing clear`
Help: `doing --help`
HEREDOC
end
def todoExists
exists = File.exist? FILE_NAME_TODO
exists
end
def writeTodo(todo)
File.open(FILE_NAME_TODO, 'w') { |file| file.write(todo) }
end
def readTodo
File.open(FILE_NAME_TODO, 'r') do |file|
file.each_line do |line|
puts "\n🔹 #{line}\n\n"
end
end
end
def removeFile
if todoExists
File.delete FILE_NAME_TODO
end
exit
end
# # Main # #
# grab the current todo in case we need it
if todoExists
File.open(FILE_NAME_TODO, 'r') do |file|
file.each_line do |line|
_currentTodo += line
end
end
end
# grab any arguments / new todos from the command line
todo = ARGV.join(' ').strip()
# show help when no todo is set
if !todoExists and (todo.nil? or todo.empty?)
help
exit
end
# catch help option
HELP_OPTIONS = ['help', '--help', '-h']
if HELP_OPTIONS.any? { |option| option == todo }
help
exit
end
# catch done marker
if todo == 'done'
# put a checkmark next to the todo
if todoExists
File.open(FILE_NAME_TODO, 'r') do |file|
file.each_line do
|line| puts "✅ #{line}"
end
end
end
removeFile
exit
end
# catch clear marker
if todo == 'clear' or todo == 'cancel'
puts 'Incinerating the todo.. 🔥'
removeFile
exit
end
# catch commit marker
if todo == 'commit' || todo == '-c'
puts '⏳ Committing...'
commit = "git commit -m \"#{_currentTodo}\""
puts commit
`#{commit}`
puts 'Done! Committed! ✨✅✨'
removeFile
end
# # normal operations. file the todo or read it back
# if there is a todo
if not todo.nil? and not todo.empty?
# write the todo
writeTodo todo
# confirm the todo
puts "\n🔸 #{todo}\n\n"
else # we just want the current todo
# read the todo
readTodo
end
exit