This file contains 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
{ | |
"basics": { | |
"name": "Peter Glennon", | |
"label": "Software Engineer", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "(914) 417-7850", | |
"website": "", | |
"summary": "", | |
"location": { |
This file contains 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
{ | |
"basics": { | |
"name": "John Doe", | |
"label": "Programmer", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "(912) 555-4321", | |
"website": "http://johndoe.com", | |
"summary": "A summary of John Doe...", |
This file contains 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
# RSpec matcher for validates_with. | |
# https://gist.github.com/2032846 | |
# Usage: | |
# | |
# describe User do | |
# it { should validate_with CustomValidator } | |
# end | |
# | |
# describe User do | |
# it do |
This file contains 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
var currencySymbols = { | |
USD: "$" | |
}; | |
var delimiters = { | |
USD: "," | |
}; | |
var separators = { | |
USD: "." |