Commit Graph

59 Commits

Author SHA1 Message Date
Kevin Herron 47fa20ca34 Inline the onSuccess() and onFailure() functions 2017-12-16 14:12:07 -08:00
Michael Bull 80c6410181 [Gradle Release Plugin] - new version commit: '1.0.4-SNAPSHOT'. 2017-12-16 19:52:45 +00:00
Michael Bull d3db9c1f30 [Gradle Release Plugin] - pre tag commit: '1.0.3'. 2017-12-16 19:52:37 +00:00
Michael Bull 7b5ffefa8f Downgrade dokka
Version 0.9.15 is producing an error on CI:
- Could not find org.jetbrains.dokka:integration:0.9.15.
2017-12-16 19:50:00 +00:00
Michael Bull c198328059 Update version in README 2017-12-16 19:31:18 +00:00
Michael Bull 9ddac98e0c Add multi-platform support
Converts the unit tests to use kotlin-test, allowing them to target both
the jvm and js platforms.
2017-12-16 19:30:54 +00:00
Michael Bull 416c0950b2 Update kotlin to 1.2.10 2017-12-16 19:26:01 +00:00
Michael Bull 64213f4b04 Update Gradle to 4.4 2017-12-16 19:23:33 +00:00
Michael Bull b5a78cde8e [Gradle Release Plugin] - new version commit: '1.0.3-SNAPSHOT'. 2017-11-28 18:47:54 +00:00
Michael Bull eed6044179 [Gradle Release Plugin] - pre tag commit: '1.0.2'. 2017-11-28 18:47:46 +00:00
Michael Bull 8b13ab735c Update version in README 2017-11-28 18:47:15 +00:00
Michael Bull 7c8fca3053 Update Gradle to v4.3.1 2017-11-28 18:40:25 +00:00
Michael Bull e455be2cc8 Make lambda return type of expect{Err} return Any
When constructing the exception message the toString method will be
implicitly called on the result of the lambda.

Takes inspiration from Kotlin's require function [1].

[1]: https://github.com/JetBrains/kotlin/blob/v1.2.0/libraries/stdlib/src/kotlin/util/Preconditions.kt#L26
2017-11-28 18:23:36 +00:00
Michael Bull 8e3597322a Update kotlin to 1.2.0 2017-11-28 18:07:24 +00:00
Michael Bull 3ad15e71fb Update version in README 2017-11-25 16:32:35 +00:00
Michael Bull b513c09470 Suppress unreachable code warnings in MapTest
These are intentional and are necessary to identify broken behaviour in
future, therefore the warnings are redundant.
2017-11-22 23:41:32 +00:00
Michael Bull 4e22fe4f02 [Gradle Release Plugin] - new version commit: '1.0.2-SNAPSHOT'. 2017-11-22 23:26:43 +00:00
Michael Bull ea8154d922 [Gradle Release Plugin] - pre tag commit: '1.0.1'. 2017-11-22 23:26:34 +00:00
Michael Bull 5d5195af9d Add getErrorOrElse
Matches getOrElse signature with respect to the error.
2017-11-22 23:25:28 +00:00
Michael Bull ad7adacf39 Lazily evaluate message argument in expect/expectError 2017-11-22 23:25:28 +00:00
Michael Bull 02de42f959 Correct version number in README 2017-10-25 17:10:19 +01:00
Michael Bull 474fd0b903 [Gradle Release Plugin] - new version commit: '1.0.1-SNAPSHOT'. 2017-10-22 16:56:38 +01:00
Michael Bull 3a71508531 [Gradle Release Plugin] - pre tag commit: '1.0.0'. 2017-10-22 16:09:57 +01:00
Michael Bull af13c9ee7c Rename Error class to Err
Avoids naming conflict with the stdlib's Error class, also now matches
Rust's naming.
2017-10-22 16:08:26 +01:00
Michael Bull 43128cf1cc Update version number on README 2017-10-22 16:07:24 +01:00
Michael Bull 1933c9f845 Use filterIsInstance in getAll methods 2017-10-22 16:07:24 +01:00
Michael Bull 7be628e79e Add unit tests for Result.of 2017-10-22 16:07:24 +01:00
Michael Bull 9960bc78aa List result4k under inspirations in README 2017-10-22 16:07:24 +01:00
Michael Bull f0fb536516 Add Result.of factory method
Inspired by result4k, invokes a callback within a try/catch block,
returning an Error if an exception was thrown and Ok otherwise.
2017-10-22 16:07:24 +01:00
Michael Bull dc4101b8ef Remove factory methods and expose Ok/Error constructors
Also converts them to data classes.
2017-10-22 16:07:24 +01:00
Michael Bull a9cf0593f9 Improve wording in README 2017-10-22 16:07:24 +01:00
Michael Bull 8e3fe10ca0 Fix jitpack badge 2017-10-22 01:12:50 +01:00
Michael Bull 59e6a148b1 Add Travis CI configuration file 2017-10-22 01:06:11 +01:00
Michael Bull 62f96c6d9a Fix broken links in README 2017-10-22 01:02:27 +01:00
Michael Bull bf3aaee77b Move to new package name 2017-10-22 00:59:16 +01:00
Michael Bull da77504fa7 Add {javadoc,sources}Jar as artifacts 2017-10-21 22:37:45 +01:00
Michael Bull 7052be1c5e Add missing version property 2017-10-21 22:34:46 +01:00
Michael Bull 2e2fc22b2b Add release/publish configuration 2017-10-21 22:33:59 +01:00
Michael Bull e5ee148ec8 Publish javadoc 2017-10-21 22:10:13 +01:00
Michael Bull d1b9c7d2ef Fix typo in README 2017-10-21 22:07:07 +01:00
Michael Bull ff40e12e6f Add inline documentation to library methods 2017-10-21 21:19:21 +01:00
Michael Bull 1b29f4a58a Configure dokka to produce javadoc 2017-10-21 20:03:51 +01:00
Michael Bull eb326ecebb Remove erroneous list entry in README 2017-10-21 19:46:44 +01:00
Michael Bull d5e60df857 Fix typo in README 2017-10-21 19:46:14 +01:00
Michael Bull 9f64b5409a Update README 2017-10-21 19:44:58 +01:00
Michael Bull 9acd99dffd Pass error/value to UnwrapException message 2017-10-21 19:17:01 +01:00
Michael Bull 6f21fd634b Correct variable naming in OrTest 2017-10-21 19:04:23 +01:00
Michael Bull eb4aecaab8 Correct generic type identifier on mapError 2017-10-21 18:52:14 +01:00
Michael Bull 99515df0f7 Remove GetTest.GetError 2017-10-21 18:12:25 +01:00
Michael Bull be2fa210cc Add getErrorOr
Matches Haskell's Either.fromRight
2017-10-21 18:10:08 +01:00