business 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '079cf8debc3d368ed07009e19f1fa45b5276b81f6069c651bf05947a88763e5a'
4
- data.tar.gz: 6336eccd2d9b52b821be804f6234cda4da7a1d8be38ceca9f2cacc4b4934d8c1
3
+ metadata.gz: 91709bfa6facf01e0f781f91f9c4d0dcedc433cf3c19a98550d669430c218ecb
4
+ data.tar.gz: 78d64d7010cc393a242e833b92678aacccdff65be62d5dceeb8ead4445d3870f
5
5
  SHA512:
6
- metadata.gz: 852ab77a45a36cd94ae901e82190ae423a4415fa0a08eea111a18385599067d07c42e9a1b34bc257c09a2677c78b16a8fd5b8843a42e5f86c9f31ad8dedc7054
7
- data.tar.gz: d0fccbb42eda1b2c95837f904de72f3783c0a82cead4f847ab7d040dd6e17596c10a7b22565388234fec48024aa71c696bfb77bd58d53843b33589dc37a8d7c8
6
+ metadata.gz: 51f8b6c1d7b1ab4148c2364ff795eed77bbc9d758319e56aab823ac28eb8b215fc418291aeb6f2fd9ff1b0150e0f2e86c743f5dfeb1ccd87ca62f9bdcb990e9a
7
+ data.tar.gz: 26ff497bc7fcc87b5cea3dcaeebb7b2568d2072390b73eabcc802fb3f1c299bd2ebb01f2a16c21482d3a852340c6dda16b5c63c854c9ae38167f943c5b8b547f
@@ -9,5 +9,9 @@ rvm:
9
9
 
10
10
  sudo: false
11
11
 
12
+ before_install:
13
+ - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
14
+ - gem install bundler -v '< 2'
15
+
12
16
  script:
13
17
  - bundle exec rspec spec
@@ -1,3 +1,7 @@
1
+ ## 1.16.0 - January 17, 2019
2
+
3
+ - Add holiday calendar for ACH U.S.
4
+
1
5
  ## 1.15.0 - October 24, 2018
2
6
 
3
7
  - Add holiday calendar for PAD Canada
@@ -18,6 +18,5 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
21
  spec.add_development_dependency "rspec", "~> 3.1"
23
22
  end
@@ -0,0 +1,57 @@
1
+ working_days:
2
+ - monday
3
+ - tuesday
4
+ - wednesday
5
+ - thursday
6
+ - friday
7
+
8
+ holidays:
9
+ - January 1st, 2019
10
+ - January 21st, 2019
11
+ - February 18th, 2019
12
+ - May 27th, 2019
13
+ - July 4th, 2019
14
+ - October 14th, 2019
15
+ - November 11th, 2019
16
+ - November 28th, 2019
17
+ - December 25th, 2019
18
+ - January 1st, 2020
19
+ - January 20th, 2020
20
+ - February 17th, 2020
21
+ - May 25th, 2020
22
+ - July 4th, 2020
23
+ - September 7th, 2020
24
+ - October 12th, 2020
25
+ - November 11th, 2020
26
+ - November 26th, 2020
27
+ - December 25th, 2020
28
+ - January 1st, 2021
29
+ - January 18th, 2021
30
+ - February 15th, 2021
31
+ - May 31st, 2021
32
+ - July 5th, 2021
33
+ - September 6th, 2021
34
+ - October 11th, 2021
35
+ - November 11th, 2021
36
+ - November 25th, 2021
37
+ - December 25th, 2021
38
+ - January 1st, 2022
39
+ - January 17th, 2022
40
+ - February 21st, 2022
41
+ - May 30th, 2022
42
+ - July 4th, 2022
43
+ - September 5th, 2022
44
+ - October 10th, 2022
45
+ - November 11th, 2022
46
+ - November 24th, 2022
47
+ - December 26th, 2022
48
+ - January 2nd, 2023
49
+ - January 16th, 2023
50
+ - February 20th, 2023
51
+ - May 29th, 2023
52
+ - July 4th, 2023
53
+ - September 4th, 2023
54
+ - October 9th, 2023
55
+ - November 11th, 2023
56
+ - November 23rd, 2023
57
+ - December 25th, 2023
@@ -1,3 +1,3 @@
1
1
  module Business
2
- VERSION = "1.15.0"
2
+ VERSION = "1.16.0"
3
3
  end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: business
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harry Marr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-25 00:00:00.000000000 Z
11
+ date: 2019-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.3'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.3'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: rspec
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -55,6 +41,7 @@ files:
55
41
  - business.gemspec
56
42
  - lib/business.rb
57
43
  - lib/business/calendar.rb
44
+ - lib/business/data/achus.yml
58
45
  - lib/business/data/bacs.yml
59
46
  - lib/business/data/bankgirot.yml
60
47
  - lib/business/data/becs.yml