使用方式跟ack差不多 http://blog.bccn.net/%E9%9D%99%E5%A4%9C%E6%80%9D/13430
安装及使用详情:https://github.com/ggreer/the_silver_searcher
rsync -azh /local/path user@host.com:/remote/path
刚才development环境下 sass 中的 image_url 失效了,运行下面的命令清空缓存解决:
rake assets:clobber
已经不需要自己写递归了,新版ruby直接提供了Find模块
require 'find'
Find.find('./') do |path|
puts path
end
rails的data-remote="true"很方便,链接加上这个属性点击链接即可在前端运行链接所指向的服务端返回的js代码。前端只需要下面几行代码
$(document).ready(function () {
$("a[data-remote=true]").click(function(e){
e.preventDefault();
$.getScript($(this).attr('href'));
});
});
很方便,以后可能用的到
https://glot.io/