This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | module.exports = function(grunt) { | |
| 'use strict'; | |
| var path = require('path'), | |
| lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet, | |
| folderMount = function folderMount(connect, point) { | |
| return connect.static(path.resolve(point)); | |
| }; | |
| grunt.initConfig({ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | let g:user_emmet_settings = { | |
| \ 'html' : { | |
| \ 'expandos' : { | |
| \ '!' : 'html:5' | |
| \ }, | |
| \ 'snippets' : { | |
| \ '!!' : "<!doctype html>", | |
| \ '!!!4t' : "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">", | |
| \ '!!!4s' : "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">", | |
| \ '!!!xt' : "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | diff -qr fuelphp-1.5.3 fuelphp-1.5.2 | |
| Only in fuelphp-1.5.3/fuel/app/cache: fuel | |
| Only in fuelphp-1.5.3/fuel/app/logs: 2013 | |
| Only in fuelphp-1.5.3/fuel/app/views: person | |
| fuel/core/classes/fuel.php | |
| fuel/core/classes/security.php | |
| fuel/core/config/config.php | |
| fuel/app/config/config.php | |
| docs/assets/js/combined.js | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | module.exports = function(grunt) | |
| { | |
| 'use strict'; | |
| grunt.config.init({ | |
| html_clean: { | |
| html: { | |
| src: 'sample.html', | |
| newline: '\r\n', // 省略可 | |
| }, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | module.exports = function(grunt) | |
| { | |
| 'use strict'; | |
| var ROOT_PATH = '.', | |
| TEMPLATE_PATH = ROOT_PATH + '/templates'; | |
| grunt.config.init({ | |
| template: { | |
| hoge: { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 'use strict'; | |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| encoding: { | |
| standardSetting: { | |
| toEncoding: 'SJIS' | |
| , files: { | |
| 'dest/result.txt': 'src/original.txt' | |
| , 'dest/concat.txt': ['src/concat/*.txt'] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 'use strict'; | |
| module.exports = function(grunt) | |
| { | |
| var Path = require('./lib/helper').Path; | |
| grunt.task.renameTask('ect', 'grunt-ect_ect'); | |
| grunt.task.registerMultiTask('ect', 'overwrite by grunt-ect helper', | |
| function() { | |
| var config = {} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | tell application "Finder" | |
| set myWin to window 1 | |
| set theWin to (quoted form of POSIX path of (target of myWin as alias)) | |
| tell application "Terminal" | |
| activate | |
| tell window 1 | |
| do script "cd " & theWin & ";grunt" | |
| end tell | |
| end tell | |
| end tell | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $tmp: ""; | |
| .sample:after { | |
| $tmp: str-replace("/_./", "|x|x.upcase.sub!('_', '')", "test_hoge"); | |
| content: "#{$tmp}"; | |
| } | |
| // 結果:content: "testHoge"; | |
| $tmp: ""; | |
| .sample2:after{ | |
| $tmp: str-replace("_", "", "test_hoge"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | $tmp: ""; | |
| .sample1:after{ | |
| $tmp: sprintf("%02d,%02d", 1, 2); | |
| content: "#{$tmp}"; | |
| } | |
| // 結果:content: "01,02"; | |
| $tmp: ""; | |
| .sample1:after{ | |
| $tmp: sprintf("%.5s", foobar); |