Make Sound with programs you love. Renoise and Ruby.
This is not a final release.
Add this line to your application's Gemfile:
gem 'renoise'
And then execute:
$ bundle
Or install it yourself as:
$ gem install renoise
$ renoise-repl
host: localhost
port: 8000
>> help
require "renoise"
r = Renoise::Core.new('localhost', 8000)
r.stop
r.seq :drums, 36, 1, 1
r.config :drums, beats: 1
r.bpm = 120
r.notes :drums, 0, -1, 1, -1, 0, 1, -1, 1
r.play
- Fork it ( https://github.com/addisaden/renoise-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request