David Padilla
David Padilla
To provide a starting point for every new project, a CLI is needed. ``` banjo new song_name ``` Creates the skeleton of a new banjo song. A _song.rb_ file, the...
Currently, the duration scale for a note is seconds. That is that you can tell banjo to play a specific notes for X seconds. ``` # Example: play(c(4)).for(5).at(4) ``` To...
It would be awesome if someone could try to set it up and running on Linux and share findings. The [unimidi](https://github.com/arirusso/unimidi) README says it does work on Linux. Unimidi is...
When you use the migrations helper mentioned on README, it doesn't add an index to the table ``` create_table :cart_items do |t| t.shopping_cart_item_fields # Creates the cart items fields end...