ruby开发的交互式程序例子

来源:爱站网时间:2021-11-01编辑:网友分享
爱站技术小编今天带来的这篇文章主要介绍了ruby开发的交互式程序例子,本文使用ripl实现,需要的朋友可以参考下,希望能给大家带来帮助。

爱站技术小编今天带来的这篇文章主要介绍了ruby开发的交互式程序例子,本文使用ripl实现,需要的朋友可以参考下,希望能给大家带来帮助。

实现pry,ronin,msf类似的终端下交互功能,这里主要用到了ripl gem:

1.能够调用定义的方法,如help
2.能够执行系统命令
3.能够类似irb/pry进行ruby语言解析

安装:

gem install ripl
gem install ripl-shell_commands

示例

ripl这个gem,它也提供很多插件,如下是一个简单的终端下交互实现:

require 'ripl'
require 'ripl/shell_commands'
require 'ripl/color_result'
require 'ripl/color_streams'
require 'ripl/commands'
require 'ripl/rocket'

#设置输出颜色
Ripl.config[:color_streams_stdout] = :light_blue
Ripl.config[:color_streams_stderr] = :light_red

#定义提示符号
Ripl.config[:prompt] = lambda {"[#{Ripl.shell.line.to_s}] cmd> " }

# Define plugins, load files, etc...

class Dodolook
 def help
 puts "xiaomi noops blog"
 end
 def name 
 "wilbur"
 end
end
dodo = Dodolook.new

verison = "1.0.3"
Ripl.start :binding => dodo.instance_eval{ binding }

使用

在终端下运行程序后,出现[0] cmd>这样的提示,其中help、name、dodo这些变量/方法可以tab补全。

运行shell命令前加!,如:!df
还有更多内部方法,如: history, list, jump…

以上内容就是爱站技术频道小编为大家分享的ruby开发的交互式程序例子,看完以上分享之后,大家应该都知道有哪些例子了吧。

上一篇:如何在 Ubuntu 12.04 Server 上安装部署 Ruby on Rails 应用

下一篇:艰难完成 nginx + puma 部署 rails 4的详细记录

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载