version_gem 1.1.13 → 1.1.15

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.
@@ -1,26 +0,0 @@
1
- module VersionGem
2
- module Epoch
3
- EPOCH_SIZE: Integer
4
-
5
- # Hook used when this module is extended
6
- def self.extended: (untyped) -> void
7
-
8
- module OverloadApiForEpoch
9
- # The epoch component (derived)
10
- def epoch: () -> Integer
11
-
12
- # Override of Api#major returning the derived major component
13
- def major: () -> Integer
14
-
15
- # Hash representation including epoch
16
- def to_h: () -> Hash[Symbol, (Integer | String | nil)]
17
-
18
- # Array of components [epoch, major, minor, patch, pre]
19
- def to_a: () -> Array[Integer | String | nil]
20
-
21
- private
22
-
23
- def _major: () -> Integer
24
- end
25
- end
26
- end
@@ -1,4 +0,0 @@
1
- module VersionGem
2
- class Error < ::RuntimeError
3
- end
4
- end
@@ -1,11 +0,0 @@
1
- module VersionGem
2
- module Ruby
3
- RUBY_VER: ::Gem::Version
4
-
5
- # Check if the current Ruby version is >= given version for the engine
6
- def self.gte_minimum_version?: (String, ?String) -> bool
7
-
8
- # Check if the current Ruby MAJOR.MINOR equals the given values for the engine
9
- def self.actual_minor_version?: ((Integer | String), (Integer | String), ?String) -> bool
10
- end
11
- end
@@ -1,6 +0,0 @@
1
- module VersionGem
2
- module Version
3
- VERSION: String
4
- end
5
- VERSION: String
6
- end