Brian Gesiak
Brian Gesiak
Someone with Xcode 8 installed should try the new `xcodebuild test` filters with Quick. Does everything work as expected? ``` xcodebuild test -only-testing:MyTestBundle/MyTestSuite/MySpec xcodebuild test -only-testing:MyTestBundle/MyTestSuite xcodebuild test -only-testing:MyTestBundle xcodebuild...
https://github.com/specta/specta/issues/166 is a good idea--Quick should do the same.
> First of all, thanks so much for this library. It really makes testing in Go a joy. RSpec includes `before(:all)` and `after(:all)` nodes. These nodes are executed once at...
It appears [`clib_package.c:clib_package_install`](https://github.com/stephenmathieson/clib-package/blob/56e891e8d281fda59d4aa9faff06780baaa7e711/src/clib-package.c#L563) only supports [repositories hosted on GitHub](https://github.com/stephenmathieson/clib-package/blob/56e891e8d281fda59d4aa9faff06780baaa7e711/src/clib-package.c#L489). Users should have the option to install packages hosted on any Git server. What's the core team's opinion on the following...
Awesome project!! I love the idea. Many people in open-source get frustrated that code contributions seem to be valued more highly than troubleshooting/documentation, and I agree with that frustration--sometimes the...
See: https://github.com/thoughtbot/factory_girl/blob/master/GETTING_STARTED.md#lazy-attributes I believe can achieve the same effect by using `sequence` and simply ignoring the index parameter `i`: ``` objc #import #import "MyModel.h" FACTORIES(^{ [MyModel defineFactory:^(LSFactory *f) { f[@"createdAt"]...
Test using multiple environments in order to prevent issues like #22. See: http://alexgaynor.net/2010/dec/17/getting-most-out-tox/
`django.utils.timezone` is only available on Django 1.4+, but the package metadata specifies Django 1.3+ as a dependency. As a result, attempting to use `generate_scaffold/templates/generate_scaffold/models/models.txt` will raise an error when using...