I hereby claim:
- I am outdooricon on github.
- I am johnathon (https://keybase.io/johnathon) on keybase.
- I have a public key whose fingerprint is E7B2 BF9F 9902 D6B8 778B 080A 2772 A330 85A1 A972
To claim this, I am signing this object:
| extendPrototypeFromArray = (protoConstructor) -> | |
| _.wrap protoConstructor.extend, (cachedExtend, mixinArray, prototype) -> | |
| if mixinArray instanceof Array | |
| # Uses _.defaults so base object overrides anything being added | |
| fullProto = _.defaults.apply _, [prototype].concat(mixinArray) | |
| else | |
| fullProto = mixinArray | |
| cachedExtend.call @, fullProto | |
| Backbone.Model.extend = extendPrototypeFromArray Backbone.Model |
I hereby claim:
To claim this, I am signing this object:
| # sudo su jenkins | |
| # cd ~jenkins/jobs/[INSERT_PROJECT_NAME]/workspace | |
| # ~jenkins/tools/hudson.tasks.Maven_MavenInstallation/maven3/bin/mvn clean deploy |
| // The Abstract Class We Are Testing | |
| public Abstract class Car { | |
| public String getDescription(String color) { | |
| return "sleek "+color+" car"; | |
| }; | |
| } | |
| // Test Contained in Separate Class Below | |
| Car blueCar = mock(Car.class); |
| class DomainFilters { | |
| def filters = { | |
| wwwCheck(uri:'/**') { | |
| before = { | |
| if (request.getServerName().startsWith("www.")) { | |
| int port = request.getServerPort(); | |
| if (request.getScheme().equals("http") && port == 80) { | |
| port = -1; | |
| } else if (request.getScheme().equals("https") && port == 443) { |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| *.iws | |
| *Db.properties | |
| *Db.script | |
| .settings | |
| eclipse | |
| stacktrace.log | |
| target | |
| /plugins | |
| /web-app/plugins | |
| /web-app/WEB-INF/classes |