-
Add to
.gitignore
:node_modules public
-
Add to your app
dependencies
ofpackage.json
:
Add to .gitignore
:
node_modules
public
Add to your app dependencies
of package.json
:
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
#!/usr/bin/env ruby | |
require 'benchmark' | |
REGEXPS = [ | |
/^no such file to load -- (.+)$/i, | |
/^Missing \w+ (?:file\s*)?([^\s]+.rb)$/i, | |
/^Missing API definition file in (.+)$/i, | |
/^cannot load such file -- (.+)$/i, | |
] |
require 'date' | |
require 'bigdecimal/newton' | |
require 'bigdecimal/math' | |
include Newton | |
class XIRR | |
def initialize(datevalues) | |
@datevalues = datevalues | |
@zero = BigDecimal::new("0.0") |
using System; | |
using System.Collections.Generic; | |
using System.Dynamic; | |
using System.Linq.Expressions; | |
using Microsoft.CSharp.RuntimeBinder; | |
namespace Nancy | |
{ | |
public class DynamicDictionary : DynamicObject, IEquatable<DynamicDictionary> | |
{ |