This file contains hidden or 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
describe("Build Packager", function(){ | |
var Stubble, mockConfig, realpathSyncMock, writeFileMock, fsMock, writePackageCallback, mapAllFilesSpy, | |
folderMock, zipAddFilesMock, zipMock, stub, packager, DIRECTORY_TO_ZIP; | |
beforeEach(function() { | |
Stubble = require('stubble'), | |
mockConfig = { | |
commandArgs: { | |
product: "mobile" | |
} |
This file contains hidden or 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
{ | |
resourcePath: "/pet", | |
listingPath: "/api-docs/pet", | |
description: "Pet API", | |
apis: [ | |
{ | |
path: "/pet/", | |
description: "", | |
secured: false, | |
operations: [ |
This file contains hidden or 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
case class EntryType(entrytypeoption: Seq[scalaxb.DataRecord[Any]] = Nil, | |
attributes: Map[String, scalaxb.DataRecord[Any]]) extends FeedTypeOption | |
case class EntryType(entrytypeoption: Seq[scalaxb.DataRecord[Any]] = Nil, | |
xmlbase: Option[java.net.URI] = None, | |
xmllang: Option[String] = None, | |
attributes: Map[String, scalaxb.DataRecord[Any]]) extends FeedTypeOption |
This file contains hidden or 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
import scala.annotation.target.field | |
import javax.xml.bind.annotation._ | |
import javax.xml.bind.annotation.adapters._ | |
type xmlElement = XmlElement @field | |
type xmlTypeAdapter = XmlJavaTypeAdapter @field | |
/** | |
* NB As with the CustomOptionAdapter we've had to modify the type signature here, |
This file contains hidden or 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
//import Foo._ | |
object Foo { | |
case class /\(name: String) | |
case class Bar(name: String) | |
} | |
object Test { |
This file contains hidden or 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
echo 'items.find( | |
{ | |
"repo":{"$eq":"<REPO_NAME>"}, | |
"name":{"$match":"<RPM_NAME>*"} | |
} | |
).include("name", "@rpm.metadata.release").sort({"$desc" : ["name"]}).limit(1)' > aql.json | |
curl -X POST -Taql.json --user <USER>:<PASSWORD> "https://<ARTIFACTORY>/api/search/aql" | python -c "import json,sys;obj=json.load(sys.stdin);print obj['results'][0]['properties'][0]['value'];" |
This file contains hidden or 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
import java.util.concurrent.Executors | |
import scalaz.concurrent.{Strategy, Task} | |
import scalaz.stream._ | |
import scalaz.stream.async.mutable.Queue | |
object MercuryPlayabilityUpdater { | |
implicit val DefaultStrategy: Strategy = Strategy.Executor( | |
Executors.newFixedThreadPool(10, Strategy.DefaultDaemonThreadFactory) |
This file contains hidden or 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
import java.util.concurrent.Executors | |
import scalaz.concurrent.{Strategy, Task} | |
import scalaz.stream._ | |
import scalaz.stream.async.mutable.Queue | |
object Processes { | |
val source: Process[Task, String] = Process.emitAll(0 until 10).map(_.toString()) | |
val slowProcessor1: Channel[Task, String, String] = |
This file contains hidden or 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
{ | |
"_embedded": { | |
"promotions": [{ | |
"type": "url", | |
"contentfulName": "15 minute container", | |
"position": "primary", | |
"title": "Mark's First URL Promo", | |
"subtitle": "It's the first one I tell ya", | |
"_links": { |
OlderNewer