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
[url "[email protected]:"] | |
insteadOf = https://github.com/ |
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
# frozen_string_literal: true | |
# Support for PostgreSQL enum types in Rails 5.2 (including schema dump) | |
module ActiveRecord | |
class SchemaDumper | |
def dump(stream) | |
header(stream) | |
extensions(stream) | |
enums(stream) | |
tables(stream) |
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
# Support for PostgreSQL enum types in Rails 5 (including schema dump) | |
module ActiveRecord | |
class SchemaDumper | |
def dump(stream) | |
header(stream) | |
extensions(stream) | |
enums(stream) | |
tables(stream) | |
trailer(stream) | |
stream |
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
# List branches that contain a given commit | |
$ git branch -a --contains <commit> |
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/lib/node-xmpp/lib/xmpp/jid.js b/lib/node-xmpp/lib/xmpp/jid.js | |
index a25c326..747197a 100644 | |
--- a/lib/node-xmpp/lib/xmpp/jid.js | |
+++ b/lib/node-xmpp/lib/xmpp/jid.js | |
@@ -4,7 +4,12 @@ try { | |
var c = function(n) { | |
var p = new StringPrep(n); | |
return function(s) { | |
- return p.prepare(s); | |
+ try { |
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
.DS_Store | |
._.DS_Store | |
Thumbs.db | |
.bash_history | |
.bashrc | |
.cache | |
logs/* | |
.profile | |
.viminfo | |
.idea/* |
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
[core] | |
autocrlf = false | |
quotepath = false | |
excludesfile = ~/.gitignore | |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
mr = merge |