Sha256: e6675f9140a96383d9168b426985df99aa85264cfc5403a36a68619d5f3a6550

Contents?: true

Size: 329 Bytes

Versions: 2

Compression:

Stored size: 329 Bytes

Contents

require "colorize"
require "cnote/config"
require "cnote/notes"
require "cnote/version"

config = Config.new("~/.cnote.yaml")
notes = Notes.new(config)

if ARGV[0]
  notes.run_command(ARGV.shift, ARGV)
else
  notes.await_command("\nWelcome to CNote! Type #{'help'.white} or #{'h'.white} to see a list of available commands.")
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cnote-0.3.0 lib/cnote.rb
cnote-0.2.0 lib/cnote.rb