fiscaly 1.2.1 → 1.2.2

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: 67521940598e1155c648a2ead9e63deda70b207cae1ac4c5e613bdb9bb2b0db3
4
- data.tar.gz: c262ee00571e250b4f7782f67f9ad3181c2a9c88b757509f4d434df1b2bfc992
3
+ metadata.gz: d39827228be56ed21bee765d1bd30b025b94b6d0ed26150f5bc012ecb519d90f
4
+ data.tar.gz: e55a5a31c216c8d9ec873173530577918e01614cd0e702b97f673980b738a14c
5
5
  SHA512:
6
- metadata.gz: f2fdfc4c39e66bb3f08f569d0b11a1e559308778821f3903ffe7a012ea54f309f460e1fff6f922328b752adfdbd888acbfc1d2b616e53005aba4d348873b496d
7
- data.tar.gz: 62b9e8cb3ebbad2d7c336a2f5e368f7b12c4b14c746d9b631ebce0de004aa229b7b8a1540e636f20cfccc2b16ff1716c1e604530a471fdcf93c9dd5ad85f74fe
6
+ metadata.gz: 57d520576bece5bdc257f9bea615fd95ecc381519fe176ace839ef972135e8fc8261217ae06acb656721ffc38f32b95b9bcf8b03ed5252f91f691cb20b2cde37
7
+ data.tar.gz: 8096921f0974bbc2f1ce0bd23e9c0282f5ea742c560cf6c000f89f6073e5c5b61923425cac92de695731730d499c67633ab98f7a6ad5aafe30a614b96c6b17e3
@@ -4,12 +4,12 @@ on: [push, pull_request]
4
4
 
5
5
  jobs:
6
6
  test:
7
- runs-on: ubuntu-20.04
7
+ runs-on: ubuntu-22.04
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]
12
- gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70']
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']
13
13
  exclude:
14
14
  - ruby: 2.3
15
15
  gemfile: rails60
@@ -17,16 +17,24 @@ jobs:
17
17
  gemfile: rails61
18
18
  - ruby: 2.3
19
19
  gemfile: rails70
20
+ - ruby: 2.3
21
+ gemfile: rails71
20
22
  - ruby: 2.4
21
23
  gemfile: rails60
22
24
  - ruby: 2.4
23
25
  gemfile: rails61
24
26
  - ruby: 2.4
25
27
  gemfile: rails70
28
+ - ruby: 2.4
29
+ gemfile: rails71
26
30
  - ruby: 2.5
27
31
  gemfile: rails70
32
+ - ruby: 2.5
33
+ gemfile: rails71
28
34
  - ruby: 2.6
29
35
  gemfile: rails70
36
+ - ruby: 2.6
37
+ gemfile: rails71
30
38
  - ruby: 3.0
31
39
  gemfile: rails50
32
40
  - ruby: 3.0
@@ -39,6 +47,18 @@ jobs:
39
47
  gemfile: rails51
40
48
  - ruby: 3.1
41
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
42
62
 
43
63
  name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
44
64
 
@@ -46,7 +66,7 @@ jobs:
46
66
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
47
67
 
48
68
  steps:
49
- - uses: actions/checkout@v2
69
+ - uses: actions/checkout@v4
50
70
  - uses: ruby/setup-ruby@v1
51
71
  with:
52
72
  ruby-version: ${{ matrix.ruby }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.2.2
4
+
5
+ * Add `frozen_string_literal: true`.
6
+
3
7
  ## 1.2.1
4
8
 
5
9
  * Support activesupport 7.0.
@@ -1,5 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "rails", "~> 7.0.1"
3
+ gem "activesupport", "~> 7.0.1"
4
4
 
5
5
  gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "activesupport", "~> 7.1.0"
4
+
5
+ gemspec path: "../"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Fiscaly
2
4
  module Extension
3
5
  def fiscaly(options = {})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Fiscaly
2
- VERSION = '1.2.1'
4
+ VERSION = '1.2.2'
3
5
  end
data/lib/fiscaly.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_support'
2
4
  require 'active_support/core_ext'
3
5
  require 'fiscaly/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fiscaly
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-08 00:00:00.000000000 Z
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -90,13 +90,14 @@ files:
90
90
  - gemfiles/rails60.gemfile
91
91
  - gemfiles/rails61.gemfile
92
92
  - gemfiles/rails70.gemfile
93
+ - gemfiles/rails71.gemfile
93
94
  - lib/fiscaly.rb
94
95
  - lib/fiscaly/extension.rb
95
96
  - lib/fiscaly/version.rb
96
97
  homepage: https://github.com/kanety/fiscaly
97
98
  licenses: []
98
99
  metadata: {}
99
- post_install_message:
100
+ post_install_message:
100
101
  rdoc_options: []
101
102
  require_paths:
102
103
  - lib
@@ -111,8 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
112
  - !ruby/object:Gem::Version
112
113
  version: '0'
113
114
  requirements: []
114
- rubygems_version: 3.1.2
115
- signing_key:
115
+ rubygems_version: 3.3.3
116
+ signing_key:
116
117
  specification_version: 4
117
118
  summary: Financial date class for ruby
118
119
  test_files: []