2017-11-14 15:39:27 +00:00
|
|
|
# ruby
|
|
|
|
|
|
|
|
> Ruby programming language interpreter.
|
2023-08-09 08:09:12 +01:00
|
|
|
> See also: `gem`, `bundler`, `rake`, `irb`.
|
2019-05-23 11:56:50 +01:00
|
|
|
> More information: <https://www.ruby-lang.org>.
|
2017-11-14 15:39:27 +00:00
|
|
|
|
|
|
|
- Execute a Ruby script:
|
|
|
|
|
|
|
|
`ruby {{script.rb}}`
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
- Execute a single Ruby command in the command-line:
|
2017-11-14 15:39:27 +00:00
|
|
|
|
|
|
|
`ruby -e {{command}}`
|
|
|
|
|
2017-11-14 18:58:57 +00:00
|
|
|
- Check for syntax errors on a given Ruby script:
|
2017-11-14 15:39:27 +00:00
|
|
|
|
|
|
|
`ruby -c {{script.rb}}`
|
|
|
|
|
2023-06-23 18:30:34 +01:00
|
|
|
- Start the built-in HTTP server on port 8080 in the current directory:
|
|
|
|
|
|
|
|
`ruby -run -e httpd`
|
|
|
|
|
2023-10-08 16:55:35 +01:00
|
|
|
- Locally execute a Ruby binary without installing the required library it depends on:
|
|
|
|
|
|
|
|
`ruby -I {{path/to/library_folder}} -r {{library_require_name}} {{path/to/bin_folder/bin_name}}`
|
|
|
|
|
2017-11-14 15:44:00 +00:00
|
|
|
- Show the version of Ruby you are using:
|
2017-11-14 15:39:27 +00:00
|
|
|
|
|
|
|
`ruby -v`
|