我正在使用Sublime Text和Ruby on Rails。一切都已安装。
如何设置random.rb
我可以在我的git bash中导航并运行其内容。
我想要做的主要原因是使用类,方法和函数,并查看它们的输出。当我想构建整个函数等时,IRB
是不够的。
我将如何实现这一目标?
答案 0 :(得分:0)
第一个例子:只需从IRB提示符运行Ruby代码:
$ irb
> puts 'playing in irb prompt'
第二个例子:将您的Ruby代码写入" .rb"文件并使用ruby file_name.rb
#test.rb
puts 'Hello World'
$ ruby test.rb
-> "Hello world"
第三个例子:来自Rails'控制台,您可以运行.rb文件:
$ rails console
$ eval(File.read 'test.rb')
-> 'Hello world'
#make sure your test.rb file resides in your project root directory.
第四个示例:使用rails console
与您的应用程序模型进行交互:
$ rails console
$ User.all #depending on what model you have.