iron_oxide 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/iron_oxide/aliases.rb +1 -3
- data/lib/iron_oxide/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8cc37a56001f57c84184d8fc493ef41297560a71d3e6721b1df9fccca6e4390
|
4
|
+
data.tar.gz: 359d8b8fe95b6647460b4fded5bf27ed4a63d85f229affb5b225fa9cef312fe7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55304e8bf2b492a6e0acaa59fc64efdafd967aa29068dccc04709bed9bca4c3d4058969c17d872b7041c6cca9e8e65e517389734d260ff8048d53b83e0ec7cd3
|
7
|
+
data.tar.gz: 6e430deaf2d6ebb0e2e6a107ea5fe0221e16425cfd8ec692bbf8a74a29819dcab49e2a12e526829bbd94d34fa21695fb81b3c3b650e38b79e624ffc498c9db41
|
data/CHANGELOG.md
CHANGED
data/lib/iron_oxide/aliases.rb
CHANGED
@@ -3,16 +3,14 @@
|
|
3
3
|
module IronOxide
|
4
4
|
module Aliases
|
5
5
|
Some = Option::SomeClass
|
6
|
-
None = Option::NoneClass
|
7
6
|
Ok = Result::OkClass
|
8
7
|
Err = Result::ErrClass
|
8
|
+
None = Option::None
|
9
9
|
|
10
10
|
def Some(value) # rubocop:disable Naming/MethodName
|
11
11
|
Option::Some(value)
|
12
12
|
end
|
13
13
|
|
14
|
-
None = Option::None
|
15
|
-
|
16
14
|
def Ok(value) # rubocop:disable Naming/MethodName
|
17
15
|
Result::Ok(value)
|
18
16
|
end
|
data/lib/iron_oxide/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iron_oxide
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nando Vieira
|
@@ -147,10 +147,10 @@ metadata:
|
|
147
147
|
rubygems_mfa_required: 'true'
|
148
148
|
homepage_uri: https://github.com/fnando/iron_oxide
|
149
149
|
bug_tracker_uri: https://github.com/fnando/iron_oxide/issues
|
150
|
-
source_code_uri: https://github.com/fnando/iron_oxide/tree/v0.0.
|
151
|
-
changelog_uri: https://github.com/fnando/iron_oxide/tree/v0.0.
|
152
|
-
documentation_uri: https://github.com/fnando/iron_oxide/tree/v0.0.
|
153
|
-
license_uri: https://github.com/fnando/iron_oxide/tree/v0.0.
|
150
|
+
source_code_uri: https://github.com/fnando/iron_oxide/tree/v0.0.3
|
151
|
+
changelog_uri: https://github.com/fnando/iron_oxide/tree/v0.0.3/CHANGELOG.md
|
152
|
+
documentation_uri: https://github.com/fnando/iron_oxide/tree/v0.0.3/README.md
|
153
|
+
license_uri: https://github.com/fnando/iron_oxide/tree/v0.0.3/LICENSE.md
|
154
154
|
post_install_message:
|
155
155
|
rdoc_options: []
|
156
156
|
require_paths:
|