interval_inflector 1.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 87ddc424336458bd89ecedb95593b4eb53a3157b7ec62039e92515383364b9a2
4
+ data.tar.gz: 7099a53b3f30c24f953fab732c1ef82b6e056cf18f35bca580a55f16149b49fa
5
+ SHA512:
6
+ metadata.gz: 4e0fe5042ac11daa0858cf1e0c412dbec588d63f0b505ef0f9b262bc01af368a506d78873e8d97b25f795daef0370b25a9a21b9920caf440eebdd7e90d0080e2
7
+ data.tar.gz: 8787bd2d7e62ef5acd5cedb09344fb7af02ec72607e66b290edecffe082baefdc716ad10268b3cf6169984b874780d8bf64ca611e2501158518fe20c5ec03554
@@ -0,0 +1,27 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ pull_request:
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ name: Ruby ${{ matrix.ruby }}
14
+ strategy:
15
+ matrix:
16
+ ruby:
17
+ - '3.2.1'
18
+
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ bundler-cache: true
26
+ - name: Run the default task
27
+ run: bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ Gemfile.lock