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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f015c379026bb2c3cddfa8dd27998990e57d7cbb6d21e3f86e4a17ac6ba21327
4
- data.tar.gz: 40da3026f453728c58ac3795e58785001795e3d6c076a817569fbc8aab5cdc5b
3
+ metadata.gz: c8cc37a56001f57c84184d8fc493ef41297560a71d3e6721b1df9fccca6e4390
4
+ data.tar.gz: 359d8b8fe95b6647460b4fded5bf27ed4a63d85f229affb5b225fa9cef312fe7
5
5
  SHA512:
6
- metadata.gz: 518e5337c23bbcd41a27ffdede0d614135d68adb974a8ae9c29bbe1435f02fcd513868c70cd81a3c6d84b3b3390e775ce6530d21daf5aaab83d8691b5953aef9
7
- data.tar.gz: 647af57561d6f097a5ae76ea2e0917c3109ca44b8df8f5a12e8e2d4a0b9e88f42a1f2240b47cdc526bc5e463bcda1a573bb1ff29c51d6af2937cab4cd045f292
6
+ metadata.gz: 55304e8bf2b492a6e0acaa59fc64efdafd967aa29068dccc04709bed9bca4c3d4058969c17d872b7041c6cca9e8e65e517389734d260ff8048d53b83e0ec7cd3
7
+ data.tar.gz: 6e430deaf2d6ebb0e2e6a107ea5fe0221e16425cfd8ec692bbf8a74a29819dcab49e2a12e526829bbd94d34fa21695fb81b3c3b650e38b79e624ffc498c9db41
data/CHANGELOG.md CHANGED
@@ -11,6 +11,10 @@ Prefix your message with one of the following:
11
11
  - [Security] in case of vulnerabilities.
12
12
  -->
13
13
 
14
+ ## 0.0.3
15
+
16
+ [Fixed] Constant override warning.
17
+
14
18
  ## 0.0.2
15
19
 
16
20
  - [Added] Pattern matching support.
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IronOxide
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
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.2
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.2
151
- changelog_uri: https://github.com/fnando/iron_oxide/tree/v0.0.2/CHANGELOG.md
152
- documentation_uri: https://github.com/fnando/iron_oxide/tree/v0.0.2/README.md
153
- license_uri: https://github.com/fnando/iron_oxide/tree/v0.0.2/LICENSE.md
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: