ae_bank_days 2.4.0 → 2.4.1
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/ae_bank_days.gemspec +3 -3
- data/lib/ae_bank_days/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 023add153681d44e422d05729a541126a18be681899fe096acb748f13ddccb0e
|
|
4
|
+
data.tar.gz: 52e069ee48f109c54f25a7226d4a5f9820cf1428c57245d1f9251aa9f6d5ce2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28a90f656cabd516c5d66ecdef0dbf2dcaa304ea61dfb2aefb89ac638243cc27b82bb8a8f988b6e7591adf1f1eb9b3534216b0f1271c1a61b9dc2399b498786d
|
|
7
|
+
data.tar.gz: ff850e5d4e19152277a3b8752b99e72e3e44d70163fd704e04c6d62c6173c977ebff99db6c6092b54d53c4d395dd8aeb666a64fc392bfcb6c2ca955644faee1f
|
data/ae_bank_days.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
|
9
9
|
spec.author = 'AppFolio'
|
|
10
10
|
spec.email = 'opensource@appfolio.com'
|
|
11
|
-
spec.description = '
|
|
12
|
-
spec.summary =
|
|
11
|
+
spec.description = 'Calculates the next banking day, accounting for weekends and non-business days.'
|
|
12
|
+
spec.summary = 'Gem for finding the next banking date.'
|
|
13
13
|
spec.homepage = 'https://github.com/appfolio/ae_bank_days'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
spec.files = Dir['**/*'].select { |f| f[/^(lib\/|LICENSE.txt|ae_bank_days\.gemspec)/] }
|
|
@@ -18,5 +18,5 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.required_ruby_version = Gem::Requirement.new('< 4.1')
|
|
19
19
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
|
20
20
|
|
|
21
|
-
spec.add_dependency('holidays', ['>= 8.3', '<
|
|
21
|
+
spec.add_dependency('holidays', ['>= 8.3', '< 12'])
|
|
22
22
|
end
|
data/lib/ae_bank_days/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ae_bank_days
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- AppFolio
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '8.3'
|
|
19
19
|
- - "<"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '
|
|
21
|
+
version: '12'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,8 +28,9 @@ dependencies:
|
|
|
28
28
|
version: '8.3'
|
|
29
29
|
- - "<"
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: '
|
|
32
|
-
description:
|
|
31
|
+
version: '12'
|
|
32
|
+
description: Calculates the next banking day, accounting for weekends and non-business
|
|
33
|
+
days.
|
|
33
34
|
email: opensource@appfolio.com
|
|
34
35
|
executables: []
|
|
35
36
|
extensions: []
|
|
@@ -60,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
60
61
|
- !ruby/object:Gem::Version
|
|
61
62
|
version: '0'
|
|
62
63
|
requirements: []
|
|
63
|
-
rubygems_version: 4.0.
|
|
64
|
+
rubygems_version: 4.0.6
|
|
64
65
|
specification_version: 4
|
|
65
66
|
summary: Gem for finding the next banking date.
|
|
66
67
|
test_files: []
|