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
| gyp info it worked if it ends with ok | |
| gyp verb cli [ 'c:\\Program Files (x86)\\nodejs\\node.exe', | |
| gyp verb cli 'c:\\Users\\nana\\AppData\\Roaming\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js', | |
| gyp verb cli 'rebuild', | |
| gyp verb cli '--verbose', | |
| gyp verb cli '2' ] | |
| gyp info using [email protected] | |
| gyp info using [email protected] | win32 | ia32 | |
| gyp verb command rebuild [ '2' ] | |
| gyp verb command clean [] |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <clear /> | |
| <rule name="TempRewriteToWeb" stopProcessing="false"> | |
| <match url="^(web/)?(.*)$" /> | |
| <action type="Rewrite" url="web/{R:2}" logRewrittenUrl="true" /> | |
| </rule> |
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
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
| test: | |
| @NODE_ENV=test ./node_modules/.bin/mocha | |
| .PHONY: test |
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
| [alias] | |
| co = checkout | |
| st = status -sb | |
| pl = pull | |
| pu = push | |
| push = !sh -c 'git push --tags && git push' | |
| l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
| lg = log --oneline --decorate | |
| ci = commit | |
| ai = add --interactive |
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
| #!/sbin/runscript | |
| # Copyright 1999-2012 Gentoo Foundation | |
| # Distributed under the terms of the GNU General Public License v2 | |
| # $Header: $ | |
| depend() { | |
| need net | |
| } | |
| start() { |
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
| --type-add=css=.less,.styl,.scss,.sass | |
| --type-add=js=.coffee | |
| --type-set=mustache=.mustache | |
| --nosql |
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
| require 'rubygems' | |
| require 'yard' | |
| libraries = {} | |
| gems = Gem.source_index.find_name('').each do |spec| | |
| libraries[spec.name] ||= [] | |
| libraries[spec.name] << YARD::Server::LibraryVersion.new(spec.name, spec.version.to_s, nil, :gem) | |
| end | |
| run YARD::Server::RackAdapter.new libraries |
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 --git a/Rakefile b/Rakefile | |
| index d72fe2c..4752efd 100644 | |
| --- a/Rakefile | |
| +++ b/Rakefile | |
| @@ -19,16 +19,16 @@ def vim_plugin_task(name, repo=nil) | |
| sh "git clone #{repo} #{dir}" | |
| elsif repo =~ /download_script/ | |
| - if filename = `curl --silent --head #{repo} | grep attachment`[/filename=(.+)/,1] | |
| + if filename = `curl -L --silent --head #{repo} | grep attachment`[/filename=(.+)/,1] |