Last active
January 18, 2018 07:11
-
-
Save takeyuweb/a97c4b47f865c12c7533e4e5551c3e00 to your computer and use it in GitHub Desktop.
CRuby以外のRuby実装について調べたよ ref: https://qiita.com/takeyuweb/items/ea7b42746152f03efdaa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yuichi@yuichi-ws:~/truffleruby/graalvm-0.29> jre/languages/ruby/bin/ruby -v | |
| truffleruby 0.29, like ruby 2.3.3 <Java HotSpot(TM) 64-Bit Server VM 1.8.0_141-b15 with Graal> [linux-x86_64] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yuichi@yuichi-ws:~/go/src/github.com/goruby/goruby> go get github.com/goruby/goruby | |
| yuichi@yuichi-ws:~/go/src/github.com/goruby/goruby> cd $GOPATH/src/github.com/goruby/goruby | |
| yuichi@yuichi-ws:~/go/src/github.com/goruby/goruby> go run cmd/girb/main.go | |
| girb:001> puts 'Hello, GoRuby World!!' | |
| Hello, GoRuby World!! | |
| => nil | |
| girb:002> | |
| yuichi@yuichi-ws:~/go/src/github.com/goruby/goruby> go run main.go ~/hello.rb | |
| Hello, GoRuby World!! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| yuichi@yuichi-ws:~> gem install opal | |
| yuichi@yuichi-ws:~> opal -v | |
| Opal v0.10.5 | |
| yuichi@yuichi-ws:~> echo 'puts RUBY_VERSION' > ruby_version.js.rb | |
| yuichi@yuichi-ws:~> opal ruby_version.js.rb | |
| 2.2.7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment