Talk about ReactJS and how to turn your development process to much easier and simple.
By Pedro Nauck
Using custom fonts in Rails 4
在 Rails 4 应用中使用自定义字体,只需以下步骤:
- 在
app/assets
目录下添加fonts
目录 - 将自定义字体放置于
app/assets/fonts
目录下 - 在定义字体的 CSS 文件中,使用
font-url
函数来调用字体。例如:
|
|
另外,当使用多种自定义字体的时候,可以将字体文件放进各自的子目录中。引用的时候,只要在对应的字体定义中包含子目录名称即可。例如:
|
|
今日阅读
今日阅读
RailsGuide - Rails 入门
RailsGuide - Action Controller 简介
RailsGuide - Rails 路由全解
RailsGuide - Rails 布局和视图渲染
RailsGuide - Active Record 基础
RailsGuide - Active Record 关联
Debug grunt tasks with node-inspector
随着项目的增长,Grunt
任务也相对地变复杂。通过console.log
或者grunt.log.writeln
等方法去调试会变得越来越耗时。所幸的是,可以使用Node Inspector来做断点调试,以增加Grunt
任务的开发效率。
Node Inspector是一个基于Blink Developer Tools的图形化调试工具,可以用来调试NodeJs应用。安装Node Inspector:
|
|
完成之后即可以开始调试,步骤如下:
- 在任务代码中添加断点代码
debugger
启动Node Inspector
node-debug --web-port=9999 grunt-path task-name --task-option
在Windows 7系统中, 如果通过全局安装
grunt-cli
的话,那么grunt-path
就是%appdata%\npm\node_modules\grunt-cli\bin\grunt
。
参考: