fiscaly 1.2.0 → 1.2.1

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: '01081761f20ba665100b05af9b8a78a25fa55842814165402befca7888733083'
4
- data.tar.gz: d7d519ce2ba94716502aead282c31c8985c66ab5d9a3a2e0279d74ecc3d35b53
3
+ metadata.gz: 67521940598e1155c648a2ead9e63deda70b207cae1ac4c5e613bdb9bb2b0db3
4
+ data.tar.gz: c262ee00571e250b4f7782f67f9ad3181c2a9c88b757509f4d434df1b2bfc992
5
5
  SHA512:
6
- metadata.gz: 283253dbc0100b0dfccba65926ca3c4b6aba61694cadfd640229f27175fb10d7bafc90c19d490b31f866b7ad2e4f8879f987acf486e4acb4becfa5a1a144e4ee
7
- data.tar.gz: feaa6a08ab79459935d005031cea5f9f52a7a0073fd0948c5c97ba21770e2976305d22b2e2580c3de495c34cb2856b23c21ee93acbaec68202172ae920178b7b
6
+ metadata.gz: f2fdfc4c39e66bb3f08f569d0b11a1e559308778821f3903ffe7a012ea54f309f460e1fff6f922328b752adfdbd888acbfc1d2b616e53005aba4d348873b496d
7
+ data.tar.gz: 62b9e8cb3ebbad2d7c336a2f5e368f7b12c4b14c746d9b631ebce0de004aa229b7b8a1540e636f20cfccc2b16ff1716c1e604530a471fdcf93c9dd5ad85f74fe
@@ -0,0 +1,56 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-20.04
8
+ strategy:
9
+ fail-fast: false
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']
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.4
21
+ gemfile: rails60
22
+ - ruby: 2.4
23
+ gemfile: rails61
24
+ - ruby: 2.4
25
+ gemfile: rails70
26
+ - ruby: 2.5
27
+ gemfile: rails70
28
+ - ruby: 2.6
29
+ gemfile: rails70
30
+ - ruby: 3.0
31
+ gemfile: rails50
32
+ - ruby: 3.0
33
+ gemfile: rails51
34
+ - ruby: 3.0
35
+ gemfile: rails52
36
+ - ruby: 3.1
37
+ gemfile: rails50
38
+ - ruby: 3.1
39
+ gemfile: rails51
40
+ - ruby: 3.1
41
+ gemfile: rails52
42
+
43
+ name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
44
+
45
+ env:
46
+ BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
47
+
48
+ steps:
49
+ - uses: actions/checkout@v2
50
+ - uses: ruby/setup-ruby@v1
51
+ with:
52
+ ruby-version: ${{ matrix.ruby }}
53
+ bundler-cache: true
54
+ - name: Run test
55
+ run: |
56
+ bundle exec rspec
data/.gitignore CHANGED
@@ -2,5 +2,6 @@
2
2
  .project
3
3
  Gemfile.lock
4
4
  coverage/
5
+ gemfiles/*.lock
5
6
  pkg/
6
7
  tmp/
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.2.1
4
+
5
+ * Support activesupport 7.0.
6
+
3
7
  ## 1.2.0
4
8
 
5
9
  Features:
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "activesupport", "~> 6.0.0"
4
+ gem "psych", "~> 3.3.0"
5
+
6
+ gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "activesupport", "~> 6.1.0"
4
+
5
+ gemspec path: "../"
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "rails", "~> 7.0.1"
4
+
5
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  class Fiscaly
2
- VERSION = '1.2.0'
2
+ VERSION = '1.2.1'
3
3
  end
data/lib/fiscaly.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'active_support/core_ext/integer'
2
- require 'active_support/core_ext/time'
1
+ require 'active_support'
2
+ require 'active_support/core_ext'
3
3
  require 'fiscaly/version'
4
4
 
5
5
  class Fiscaly
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.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-28 00:00:00.000000000 Z
11
+ date: 2022-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -73,9 +73,9 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - ".github/workflows/ci.yml"
76
77
  - ".gitignore"
77
78
  - ".rspec"
78
- - ".travis.yml"
79
79
  - CHANGELOG.md
80
80
  - Gemfile
81
81
  - LICENSE
@@ -87,6 +87,9 @@ files:
87
87
  - gemfiles/rails50.gemfile
88
88
  - gemfiles/rails51.gemfile
89
89
  - gemfiles/rails52.gemfile
90
+ - gemfiles/rails60.gemfile
91
+ - gemfiles/rails61.gemfile
92
+ - gemfiles/rails70.gemfile
90
93
  - lib/fiscaly.rb
91
94
  - lib/fiscaly/extension.rb
92
95
  - lib/fiscaly/version.rb
@@ -108,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
111
  - !ruby/object:Gem::Version
109
112
  version: '0'
110
113
  requirements: []
111
- rubygems_version: 3.0.3
114
+ rubygems_version: 3.1.2
112
115
  signing_key:
113
116
  specification_version: 4
114
117
  summary: Financial date class for ruby
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.3
4
- - 2.4
5
- - 2.5
6
- - 2.6
7
- gemfile:
8
- - gemfiles/rails50.gemfile
9
- - gemfiles/rails51.gemfile
10
- - gemfiles/rails52.gemfile
11
- script:
12
- - bundle exec rspec