fiscaly 1.2.2 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d39827228be56ed21bee765d1bd30b025b94b6d0ed26150f5bc012ecb519d90f
4
- data.tar.gz: e55a5a31c216c8d9ec873173530577918e01614cd0e702b97f673980b738a14c
3
+ metadata.gz: 3bbd8a3293e55bfc0fdb505458f56c24d15e2914579626edb308767f34b5a425
4
+ data.tar.gz: 43939c4a6f64bb44db7f30ab1dedbd6774bf74f138ac1687f0ae47511235cc11
5
5
  SHA512:
6
- metadata.gz: 57d520576bece5bdc257f9bea615fd95ecc381519fe176ace839ef972135e8fc8261217ae06acb656721ffc38f32b95b9bcf8b03ed5252f91f691cb20b2cde37
7
- data.tar.gz: 8096921f0974bbc2f1ce0bd23e9c0282f5ea742c560cf6c000f89f6073e5c5b61923425cac92de695731730d499c67633ab98f7a6ad5aafe30a614b96c6b17e3
6
+ metadata.gz: c89c66e70cc730b08d610aaa9d60a4cb0bc4972784a6dffbc035521f77d3277b8c980570a2167e1229e278070cc8058551f2fddf309c546f5965b287fd45f948
7
+ data.tar.gz: e435c9f6aa0dfcec13db40edd9ad2c0cf57ff302f619bfa089bbf06a1bfc2fdbc3e2e016e9680ab3fa9424ea4bcb187b2bda5dd85f793f8321294e0a26206ac9
@@ -8,57 +8,19 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
12
- gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71']
11
+ ruby: ['3.0', 3.1, 3.2, 3.3, 3.4, '4.0']
12
+ gemfile: ['rails70', 'rails71', 'rails72', 'rails80', 'rails81']
13
13
  exclude:
14
- - ruby: 2.3
15
- gemfile: rails60
16
- - ruby: 2.3
17
- gemfile: rails61
18
- - ruby: 2.3
19
- gemfile: rails70
20
- - ruby: 2.3
21
- gemfile: rails71
22
- - ruby: 2.4
23
- gemfile: rails60
24
- - ruby: 2.4
25
- gemfile: rails61
26
- - ruby: 2.4
27
- gemfile: rails70
28
- - ruby: 2.4
29
- gemfile: rails71
30
- - ruby: 2.5
31
- gemfile: rails70
32
- - ruby: 2.5
33
- gemfile: rails71
34
- - ruby: 2.6
35
- gemfile: rails70
36
- - ruby: 2.6
37
- gemfile: rails71
38
14
  - ruby: 3.0
39
- gemfile: rails50
15
+ gemfile: rails72
40
16
  - ruby: 3.0
41
- gemfile: rails51
17
+ gemfile: rails80
42
18
  - ruby: 3.0
43
- gemfile: rails52
19
+ gemfile: rails81
44
20
  - ruby: 3.1
45
- gemfile: rails50
21
+ gemfile: rails80
46
22
  - ruby: 3.1
47
- gemfile: rails51
48
- - ruby: 3.1
49
- gemfile: rails52
50
- - ruby: 3.2
51
- gemfile: rails50
52
- - ruby: 3.2
53
- gemfile: rails51
54
- - ruby: 3.2
55
- gemfile: rails52
56
- - ruby: 3.3
57
- gemfile: rails50
58
- - ruby: 3.3
59
- gemfile: rails51
60
- - ruby: 3.3
61
- gemfile: rails52
23
+ gemfile: rails81
62
24
 
63
25
  name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
64
26
 
@@ -71,6 +33,9 @@ jobs:
71
33
  with:
72
34
  ruby-version: ${{ matrix.ruby }}
73
35
  bundler-cache: true
36
+ - name: Bundle list
37
+ run: |
38
+ bundle list
74
39
  - name: Run test
75
40
  run: |
76
41
  bundle exec rspec
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.3.0
4
+
5
+ * Drop support for ruby <= 2.7, rails <= 6.1.
6
+
3
7
  ## 1.2.2
4
8
 
5
9
  * Add `frozen_string_literal: true`.
data/Gemfile CHANGED
File without changes
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -4,8 +4,8 @@ Fiscal date class for ruby.
4
4
 
5
5
  ## Dependencies
6
6
 
7
- * ruby 2.3+
8
- * activesupport 5.0+
7
+ * ruby 3.0+
8
+ * activesupport 7.0+
9
9
 
10
10
  ## Installation
11
11
 
data/Rakefile CHANGED
File without changes
data/fiscaly.gemspec CHANGED
@@ -17,7 +17,9 @@ Gem::Specification.new do |spec|
17
17
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.add_dependency "activesupport", ">= 5.0"
20
+ spec.required_ruby_version = ">= 3.0"
21
+
22
+ spec.add_dependency "activesupport", ">= 7.0"
21
23
 
22
24
  spec.add_development_dependency "rake"
23
25
  spec.add_development_dependency "rspec"
@@ -2,4 +2,11 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem "activesupport", "~> 7.0.1"
4
4
 
5
+ gem "concurrent-ruby", "<= 1.3.4"
6
+
7
+ if RUBY_VERSION >= "3.4"
8
+ gem "bigdecimal"
9
+ gem "mutex_m"
10
+ end
11
+
5
12
  gemspec path: "../"
File without changes
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "activesupport", "~> 5.0.0"
3
+ gem "activesupport", "~> 7.2.0"
4
4
 
5
5
  gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "activesupport", "~> 5.1.0"
3
+ gem "activesupport", "~> 8.0.0"
4
4
 
5
5
  gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "activesupport", "~> 5.2.0"
3
+ gem "activesupport", "~> 8.1.0"
4
4
 
5
5
  gemspec path: "../"
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Fiscaly
4
- VERSION = '1.2.2'
4
+ VERSION = '1.3.0'
5
5
  end
data/lib/fiscaly.rb CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fiscaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-06-23 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '5.0'
18
+ version: '7.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '5.0'
25
+ version: '7.0'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: rake
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -84,20 +83,17 @@ files:
84
83
  - bin/console
85
84
  - bin/setup
86
85
  - fiscaly.gemspec
87
- - gemfiles/rails50.gemfile
88
- - gemfiles/rails51.gemfile
89
- - gemfiles/rails52.gemfile
90
- - gemfiles/rails60.gemfile
91
- - gemfiles/rails61.gemfile
92
86
  - gemfiles/rails70.gemfile
93
87
  - gemfiles/rails71.gemfile
88
+ - gemfiles/rails72.gemfile
89
+ - gemfiles/rails80.gemfile
90
+ - gemfiles/rails81.gemfile
94
91
  - lib/fiscaly.rb
95
92
  - lib/fiscaly/extension.rb
96
93
  - lib/fiscaly/version.rb
97
94
  homepage: https://github.com/kanety/fiscaly
98
95
  licenses: []
99
96
  metadata: {}
100
- post_install_message:
101
97
  rdoc_options: []
102
98
  require_paths:
103
99
  - lib
@@ -105,15 +101,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
101
  requirements:
106
102
  - - ">="
107
103
  - !ruby/object:Gem::Version
108
- version: '0'
104
+ version: '3.0'
109
105
  required_rubygems_version: !ruby/object:Gem::Requirement
110
106
  requirements:
111
107
  - - ">="
112
108
  - !ruby/object:Gem::Version
113
109
  version: '0'
114
110
  requirements: []
115
- rubygems_version: 3.3.3
116
- signing_key:
111
+ rubygems_version: 3.6.9
117
112
  specification_version: 4
118
113
  summary: Financial date class for ruby
119
114
  test_files: []
@@ -1,6 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "activesupport", "~> 6.0.0"
4
- gem "psych", "~> 3.3.0"
5
-
6
- gemspec path: "../"
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "activesupport", "~> 6.1.0"
4
-
5
- gemspec path: "../"