diff options
Diffstat (limited to 'lux-ruby')
-rw-r--r-- | lux-ruby/commands.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lux-ruby/commands.md b/lux-ruby/commands.md index 741772d2e..2fb1588b0 100644 --- a/lux-ruby/commands.md +++ b/lux-ruby/commands.md @@ -1,13 +1,11 @@ -# Ruby compiler - -## Test +# Test ``` cd ~/lux/lux-ruby/ && lein lux auto test cd ~/lux/lux-ruby/ && lein clean && lein lux auto test ``` -## Build +# Build ``` ## Develop @@ -22,7 +20,7 @@ cd ~/lux/lux-ruby/ \ && mv target/program.jar jvm_based_compiler.jar ``` -## Try +# Try ``` ## Compile Lux's Standard Library's tests using a JVM-based compiler. @@ -32,3 +30,10 @@ cd ~/lux/stdlib/ \ && RUBY_THREAD_VM_STACK_SIZE=15700000 ruby ~/lux/stdlib/target/program.rb ``` +# Deploy + +``` +cd ~/lux/lux-ruby/ \ +&& mvn install:install-file -Dfile=jvm_based_compiler.jar -DgroupId=com.github.luxlang -DartifactId=lux-ruby -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar +``` + |