BitBar使用Ruby脚本,解决无法使用Gem的问题,以及读写文件路径存在空格的问题

BitBar(现改名为xbar)是一个开源的Mac小工具,它可以把任何东西放到MacOS的状态栏上面,我现在一般用它来做TODO list。如下图所示 不过,刚开始使用的时候,遇到这个一个问题,就是无法使用gem,因为BitBar默认使用的ruby版本是系统版本,而我通常使用rvm。翻了BitBar的github issues之后,找到这样一个解决办法: #!/usr/bin/env ruby unless ENV['USING_RVM'] # Re-run this script with RVM's default Ruby, after setting up the RVM path, # and setting USING_RVM to true, so that…

Continue ReadingBitBar使用Ruby脚本,解决无法使用Gem的问题,以及读写文件路径存在空格的问题