-
Groovy 2.4.0 was released during the last episode of the the podcast.
- Android support built-in + a Gradle plugin
- Methods moved from
Collection
toIterable
+ some other methods added, such assize()
- groovysh getting some love
-
Gradle 2.3 RC2 was released yesterday
- Improved Gradle Build Comparison plugin
-
Better Eclipse WTP integration
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
/** | |
* A script that parses an HTML page at a given URL and checks that none of the | |
* links point to non-existent pages. | |
*/ | |
@Grab('org.jsoup:jsoup:1.11.3') | |
import org.jsoup.Jsoup | |
if (args.size() != 1) { | |
println "Incorrect number of arguments!" | |
println() |
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
//--------------------------------------------------------------------------------------- | |
// FILE: XComDownloadableContentInfo_RevivalProtocolFixes.uc | |
// | |
// Use the X2DownloadableContentInfo class to specify unique mod behavior when the | |
// player creates a new campaign or loads a saved game. | |
// | |
//--------------------------------------------------------------------------------------- | |
// Copyright (c) 2016 Firaxis Games, Inc. All rights reserved. | |
//--------------------------------------------------------------------------------------- |
OlderNewer