-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo
executable file
·58 lines (46 loc) · 1.43 KB
/
todo
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
#!/usr/bin/env ruby
require 'rubygems'
require 'optparse'
options = {:project => nil, :verbose => false}
opts = OptionParser.new do |opts|
opts.banner = "Usage: todo -m 'message'"
opts.on( '-m', '--message "message"', 'The task message' ) do |message|
options[:message] = message
end
opts.on( '-p', '--project "project"', "The project in the database. Defaults to the current path or GENERAL") do |project|
options[:project] = project
end
opts.on( '-v', '--verbose', "Verbose mode") do |project|
options[:verbose] = true
end
# help message
opts.on( '-h', '--help', 'Display this screen' ) do
puts opts
exit
end
end
opts.parse!
unless options[:message]
puts "Usage: todo -m 'message'"
exit
end
require 'active_record'
require 'yaml'
require 'logger' if options[:verbose]
require 'sqlite3'
require 'pathname'
config_file = Pathname.new(__FILE__).dirname + 'config.yml'
dbconfig = YAML::load(File.open(config_file))
ActiveRecord::Base.establish_connection(dbconfig)
ActiveRecord::Base.logger = Logger.new(STDERR) if options[:verbose]
class Project < ActiveRecord::Base
has_many :tasks
end
class Task < ActiveRecord::Base
belongs_to :project
end
project_name = options[:project] || Pathname.new(Dir.pwd).basename.to_s
unless project = Project.where('title like ?', project_name).first
project = Project.find_or_create_by_title('General')
end
project.tasks.create(:description => options[:message])