money_extensions 1.4.0 → 1.5.0
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/.git-blame-ignore-revs +12 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +8 -4
- data/lib/money_extensions/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44dd97a83c21781a83f266f6ee1249fc2849e6ae4867a02e6666c15afc9cc018
|
|
4
|
+
data.tar.gz: d3d928e7816db0241eb60314f411bfff47f76b4466b34aab9fb5f9493a18d8f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f972a2dd5e9b4947e8c996bb920a5618c8058d795e10ccde6bddb28b1e7f82d9c5c82a9dd261cd6ea25bf61649cce5ab8043bda47522fceb59d8683810971ed
|
|
7
|
+
data.tar.gz: 7cb882d57518a6ce6f76df8aa7cc9127985ea081532c16e2eb6b5e7dc777908bd53ffecd705975bcd28bdd5ddc115aa35a2ff98a72b45fd824c7d38cfc71e55a
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# The commits that did automated reformatting. You can ignore them
|
|
2
|
+
# during git-blame with `--ignore-rev` or `--ignore-revs-file`.
|
|
3
|
+
# You can also globally configure GIT with the following command
|
|
4
|
+
#
|
|
5
|
+
# $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
|
|
6
|
+
#
|
|
7
|
+
# Example entries:
|
|
8
|
+
#
|
|
9
|
+
# <full commit hash> # initial black-format
|
|
10
|
+
# <full commit hash> # rename something internal
|
|
11
|
+
|
|
12
|
+
0cdd3ad2866c4ebc989284f265bb968484547a08 # Pretty CHANGELOG.md
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.2.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
- [PLAT-1175] Update to Ruby 3.2
|
|
6
|
+
|
|
3
7
|
## 1.4.0
|
|
4
8
|
|
|
5
9
|
- [PLAT-401] Optimise split_between when we are doing so with numbers
|
|
@@ -18,10 +22,10 @@
|
|
|
18
22
|
|
|
19
23
|
## 1.0.0
|
|
20
24
|
|
|
21
|
-
|
|
25
|
+
- [TT-5845] Update to support money gems >= 6
|
|
22
26
|
|
|
23
27
|
## 0.1.0
|
|
24
28
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
29
|
+
- Using Fixnum is deprecated
|
|
30
|
+
- Drop rails 2 and old ruby support
|
|
31
|
+
- Use coverage kit to enforce maximum coverage
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: money_extensions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Noack
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: money
|
|
@@ -143,6 +143,7 @@ executables: []
|
|
|
143
143
|
extensions: []
|
|
144
144
|
extra_rdoc_files: []
|
|
145
145
|
files:
|
|
146
|
+
- ".git-blame-ignore-revs"
|
|
146
147
|
- ".github/dependabot.yml"
|
|
147
148
|
- ".github/workflows/release.yml"
|
|
148
149
|
- ".github/workflows/ruby.yml"
|
|
@@ -195,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
196
|
- !ruby/object:Gem::Version
|
|
196
197
|
version: '0'
|
|
197
198
|
requirements: []
|
|
198
|
-
rubygems_version: 3.
|
|
199
|
+
rubygems_version: 3.4.1
|
|
199
200
|
signing_key:
|
|
200
201
|
specification_version: 4
|
|
201
202
|
summary: Set of extensions to the money gem used by TravelLink Technology.
|