webtranslateit-payday 1.6.3 → 1.6.4
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/.github/dependabot.yml +15 -0
- data/.github/workflows/ci.yml +2 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +12 -12
- data/payday.gemspec +1 -1
- data/spec/invoice_spec.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a5f7060aa590e05e3f17bb6eb59b88d4894b82b52f5f5f1a38b9c2be6ce74dd
|
|
4
|
+
data.tar.gz: f2fec15d41ea17abfd30c9b723b5ad60e9ab4984ac4bf65e20bed463715ed1a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da6c7f3ec14f17eec30ffab058153b303e97d66807f2fe49d02fa8b36b92a1dae60177ff8a6efa389eab54dc0f8b4f3e763ee0c842d3d5f90bf3b1407782f75a
|
|
7
|
+
data.tar.gz: 7c65396d600440d01f100b5ca0590aae3c7a4dc2cdfec6788e123ae5528c84ef0ff54bfed52f234b253a6e3674ad48624a45f4a4f7fde2afa9dd9da88c6607ca
|
data/.github/dependabot.yml
CHANGED
|
@@ -11,3 +11,18 @@ updates:
|
|
|
11
11
|
interval: "weekly"
|
|
12
12
|
day: "monday"
|
|
13
13
|
time: "04:00"
|
|
14
|
+
reviewers:
|
|
15
|
+
- edouard
|
|
16
|
+
assignees:
|
|
17
|
+
- edouard
|
|
18
|
+
|
|
19
|
+
- package-ecosystem: github-actions
|
|
20
|
+
directory: "/"
|
|
21
|
+
schedule:
|
|
22
|
+
interval: weekly
|
|
23
|
+
day: monday
|
|
24
|
+
time: "04:00"
|
|
25
|
+
reviewers:
|
|
26
|
+
- edouard
|
|
27
|
+
assignees:
|
|
28
|
+
- edouard
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
ruby-version: ['3.1']
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
|
-
- uses: actions/checkout@
|
|
24
|
+
- uses: actions/checkout@v3
|
|
25
25
|
- name: Set up Ruby
|
|
26
26
|
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
|
27
27
|
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
|
|
40
40
|
steps:
|
|
41
41
|
- name: Checkout repository
|
|
42
|
-
uses: actions/checkout@
|
|
42
|
+
uses: actions/checkout@v3
|
|
43
43
|
|
|
44
44
|
- name: Install ruby and gems
|
|
45
45
|
uses: ruby/setup-ruby@v1
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
webtranslateit-payday (1.6.
|
|
4
|
+
webtranslateit-payday (1.6.4)
|
|
5
5
|
activesupport (~> 7, < 8)
|
|
6
6
|
i18n (~> 1.12, < 2)
|
|
7
7
|
money (~> 6.16, < 7)
|
|
@@ -13,7 +13,7 @@ PATH
|
|
|
13
13
|
GEM
|
|
14
14
|
remote: https://rubygems.org/
|
|
15
15
|
specs:
|
|
16
|
-
activesupport (7.0.
|
|
16
|
+
activesupport (7.0.4)
|
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
18
18
|
i18n (>= 1.6, < 2)
|
|
19
19
|
minitest (>= 5.1)
|
|
@@ -23,7 +23,7 @@ GEM
|
|
|
23
23
|
ast (2.4.2)
|
|
24
24
|
coderay (1.1.3)
|
|
25
25
|
concurrent-ruby (1.1.10)
|
|
26
|
-
css_parser (1.
|
|
26
|
+
css_parser (1.12.0)
|
|
27
27
|
addressable
|
|
28
28
|
diff-lcs (1.5.0)
|
|
29
29
|
ffi (1.15.5)
|
|
@@ -82,7 +82,7 @@ GEM
|
|
|
82
82
|
rb-fsevent (0.11.1)
|
|
83
83
|
rb-inotify (0.10.1)
|
|
84
84
|
ffi (~> 1.0)
|
|
85
|
-
regexp_parser (2.
|
|
85
|
+
regexp_parser (2.6.0)
|
|
86
86
|
rexml (3.2.5)
|
|
87
87
|
rspec (3.11.0)
|
|
88
88
|
rspec-core (~> 3.11.0)
|
|
@@ -97,31 +97,31 @@ GEM
|
|
|
97
97
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
98
98
|
rspec-support (~> 3.11.0)
|
|
99
99
|
rspec-support (3.11.0)
|
|
100
|
-
rubocop (1.
|
|
100
|
+
rubocop (1.37.0)
|
|
101
101
|
json (~> 2.3)
|
|
102
102
|
parallel (~> 1.10)
|
|
103
103
|
parser (>= 3.1.2.1)
|
|
104
104
|
rainbow (>= 2.2.2, < 4.0)
|
|
105
105
|
regexp_parser (>= 1.8, < 3.0)
|
|
106
106
|
rexml (>= 3.2.5, < 4.0)
|
|
107
|
-
rubocop-ast (>= 1.
|
|
107
|
+
rubocop-ast (>= 1.22.0, < 2.0)
|
|
108
108
|
ruby-progressbar (~> 1.7)
|
|
109
109
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
110
|
-
rubocop-ast (1.
|
|
110
|
+
rubocop-ast (1.23.0)
|
|
111
111
|
parser (>= 3.1.1.0)
|
|
112
|
-
rubocop-performance (1.
|
|
112
|
+
rubocop-performance (1.15.0)
|
|
113
113
|
rubocop (>= 1.7.0, < 2.0)
|
|
114
114
|
rubocop-ast (>= 0.4.0)
|
|
115
|
-
rubocop-rspec (2.
|
|
116
|
-
rubocop (~> 1.
|
|
115
|
+
rubocop-rspec (2.14.0)
|
|
116
|
+
rubocop (~> 1.33)
|
|
117
117
|
ruby-progressbar (1.11.0)
|
|
118
118
|
shellany (0.0.1)
|
|
119
119
|
thor (1.2.1)
|
|
120
120
|
ttfunk (1.7.0)
|
|
121
121
|
tzinfo (2.0.5)
|
|
122
122
|
concurrent-ruby (~> 1.0)
|
|
123
|
-
unicode-display_width (2.
|
|
124
|
-
zeitwerk (2.6.
|
|
123
|
+
unicode-display_width (2.3.0)
|
|
124
|
+
zeitwerk (2.6.1)
|
|
125
125
|
|
|
126
126
|
PLATFORMS
|
|
127
127
|
arm64-darwin-21
|
data/payday.gemspec
CHANGED
data/spec/invoice_spec.rb
CHANGED
|
@@ -219,7 +219,7 @@ module Payday # rubocop:todo Metrics/ModuleLength
|
|
|
219
219
|
|
|
220
220
|
invoice.add_line_item(price: 10, quantity: 3, description: 'Extra Users')
|
|
221
221
|
invoice.add_line_item(predefined_amount: 79,
|
|
222
|
-
description: "Flat Fee\n<color rgb
|
|
222
|
+
description: "Flat Fee\n<color rgb='888888'>From date to date</color>")
|
|
223
223
|
|
|
224
224
|
expect(invoice.render_pdf).to match_binary_asset 'testing_predefined_amount.pdf'
|
|
225
225
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webtranslateit-payday
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alan Johnson
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-
|
|
12
|
+
date: 2022-10-24 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
224
224
|
- !ruby/object:Gem::Version
|
|
225
225
|
version: '0'
|
|
226
226
|
requirements: []
|
|
227
|
-
rubygems_version: 3.3.
|
|
227
|
+
rubygems_version: 3.3.21
|
|
228
228
|
signing_key:
|
|
229
229
|
specification_version: 4
|
|
230
230
|
summary: A simple library for rendering invoices.
|