Commit 86b0091 Kimmo Lehto
committed
1 parent 349fc2e commit 86b0091 Copy full SHA for 86b0091
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env ruby
2
2
3
3
# Copyright (c) 2017 Minqi Pan <[email protected] >
4
- #
4
+ #
5
5
# This file is part of Ruby Compiler, distributed under the MIT License
6
6
# For full terms see the included LICENSE file
7
7
@@ -29,13 +29,13 @@ Examples
29
29
Producing a single Ruby interpreter executable:
30
30
rubyc
31
31
./a.out (or a.exe on Windows)
32
-
32
+
33
33
Compiling a CLI tool:
34
34
git clone --depth 1 https://github.com/pmq20/ruby-compiler.git
35
35
cd ruby-compiler
36
36
rubyc bin/rubyc
37
37
./a.out (or a.exe on Windows)
38
-
38
+
39
39
Compiling a Rails application:
40
40
rails new yours
41
41
cd yours
@@ -79,7 +79,7 @@ OptionParser.new do |opts|
79
79
options [ :keep_tmpdir ] = true
80
80
end
81
81
82
- opts . on ( "--openssl-dir" , "The path to openssl" ) do |dir |
82
+ opts . on ( "--openssl-dir=DIR " , "The path to openssl" ) do |dir |
83
83
options [ :openssl_dir ] = dir
84
84
end
85
85
You can’t perform that action at this time.
0 commit comments