Greg Brockman
Greg Brockman
(This is a PR on top of #23.)
Parse errors from `YAML.load_file` will include the filename, which is useful in case you're e.g. parsing a number of configuration files: ``` ruby File.write('/tmp/file.yaml', "\tfoo:"); YAML.load_file('/tmp/file.yaml') #=> Psych::SyntaxError: (/tmp/file.yaml): found...
This PR allows the user to: 1) Bind a particular interface. This is useful both for security (so you don't expose your development server), and also lets you bind to...
Currently you can't change a record from being a hosted zone to not in a single transaction. My first patch allows you to pass '--hosted-zone' with no argument to disable...
This PR expands lua-protobuf to support: - Nested messages and enums - Fields with capital letters (the C++ protobuf library downcases them)
This is necessary for running on rack 1.4.0. It's possible you'll want to retain backwards-compatibility, in which case it'd probably be easiest to check if @ins is nil and make...
On my version of node (0.4.9) redefining it each time through the loop results in a reset of its state, leading to an infinite loop.