Ranie Jade Ramiso

Results 43 issues of Ranie Jade Ramiso

This is the benchmark class: ```kotlin @State(Scope.Benchmark) @OutputTimeUnit(BenchmarkTimeUnit.MILLISECONDS) @Measurement(time = 1, timeUnit = BenchmarkTimeUnit.SECONDS) @BenchmarkMode(Mode.Throughput) class SimpleOps { private var a = 0 private var b = 0 @Setup fun...

``` Requires one-of SHA-1: /org/spekframework/spek2/spek-runtime-native-macos/2.0.19/spek-runtime-native-macos-2.0.19.klib.sha1, MD5: /org/spekframework/spek2/spek-runtime-native-macos/2.0.19/spek-runtime-native-macos-2.0.19.klib.md5, SHA-256: /org/spekframework/spek2/spek-runtime-native-macos/2.0.19/spek-runtime-native-macos-2.0.19.klib.sha256, SHA-512: /org/spekframework/spek2/spek-runtime-native-macos/2.0.19/spek-runtime-native-macos-2.0.19.klib.sha512 ```

status: triage

Provide a plugin for IntelliJ IDEA. It should allow running specs within the IDE and integrate with IntelliJ's test runner tab.

enhancement

Should resolve #5

enhancement

So Jetbrains just announced [Kotlin's Post 1.0 Roadmap](http://blog.jetbrains.com/kotlin/2016/04/kotlin-post-1-0-roadmap/) and one of the planned features is `local delegated properties`. This can be very useful with subjects! ``` kotlin describe(Foo::class) { val...

enhancement

Disable for now. ``` gradle test { reports { junitXml.enabled = false html.enabled = false } } ``` Implement custom reporter?

Kotlin native is slow! Specifically: - garbage collection - crossing kotlin-c boundary - virtual method lookup (polymorphic types) Things actionable by this binding: - re-write core types in kotlin :(...