noteesh

Version, currently master branch1 version
  • master branchlatestOct 12, 2017

github.com/arandilopez/noteesh

Manage notes in command line

5 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  noteesh:
    github: arandilopez/noteesh
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.23.1
License
MIT
Author
Arandi Lopez
Target
  • noteesh from src/noteesh.cr

Dependencies

This version declares no dependencies.

README

Noteesh

Tracking notes in your command line

Installation

Build from code source

You should have the crystal compiler installed check it out here

  1. Clone this repo
$ cd some/path
$ git clone https://github.com/arandilopez/noteesh.git
$ cd noteesh/
  1. Run make commands
$ sudo make
# then run
$ sudo make install

Update

  • If you cloned the repo, pull new changes
$ cd path/to/noteesh
$ git pull origin master
$ sudo make reinstall

Usage

  • Check your notes
$ noteesh
  • Add a new note
$ noteesh --add "Buy a coke"
  • Mark a note as done
$ noteesh --done 1
  • Clear your notes
$ noteesh --clear

Development

Run the make command to compile as development

$ make compile
# then run the bin file
$ bin/noteesh

Run make test to run a build and specs

$ make test

Contributing

  1. Fork it ( https://github.com/arandilopez/noteesh/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors