connect_wise 0.1.0 → 0.1.1

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: 436bf06ec5e43c6f0f629b6ca9ee6d67d5c37efd5bf3fa37c47b1a9bcbc231c1
4
- data.tar.gz: 35db3b1dfcb6547d2d0fa5fef15a97a21c82e0bcb024a70885c597479faccb52
3
+ metadata.gz: 96477eae4375ab5c56d3690768031f5e5a897f42475c2ce9c67b5ea9c6ddcd4d
4
+ data.tar.gz: 618a07b5960577567b8c83305a66c79e8bfe7bf5bdf433e18bb1165dbe2079ce
5
5
  SHA512:
6
- metadata.gz: d2d133250f7a6d1f39b38503f495135e5ff0659fa5f23379011803518696bc1b17cde3918e47ce4ba765d32cb32cc0ac5ad65ebfe3f66db370d131fa0b67ef55
7
- data.tar.gz: 9871794f3b78256f253a085359b5b64c1b4e9956241b9eb67bfabc4ebed9f0120f8581df0a3f4907180e1ba23b1eda5910ae0e9588da1bdc05b365f0ea83e32b
6
+ metadata.gz: 70ea5b846bc822d3287d8272026c1274d06dd4c83c85ec41559590b3408f06a05a3e549e3776b100e59cba2cdcb241bf166c471e50d8f133611ba1bbbe887519
7
+ data.tar.gz: ca26cb4ee9a906d151ba1ead5bb8418ba476d76bcac7d2a7bf8296319933de56fe2c134186dd1cb2454aabefe11a6d623ac833396147215049b20f7a96e28f58
@@ -0,0 +1,28 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
+ branches: [ "main" ]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test:
14
+
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ ruby-version: ['2.7', '3.0', '3.1', '3.2']
19
+
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+ - name: Set up Ruby
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby-version }}
26
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
27
+ - name: Run tests
28
+ run: bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,38 @@
1
+ # Generated by: https://openapi-generator.tech
2
+ #
3
+
4
+ *.gem
5
+ *.rbc
6
+ /.config
7
+ /coverage/
8
+ /InstalledFiles
9
+ /pkg/
10
+ /spec/reports/
11
+ /spec/examples.txt
12
+ /test/tmp/
13
+ /test/version_tmp/
14
+ /tmp/
15
+
16
+ ## Documentation cache and generated files:
17
+ /.yardoc/
18
+ /_yardoc/
19
+ /doc/
20
+ /rdoc/
21
+
22
+ ## Environment normalization:
23
+ /.bundle/
24
+ /vendor/bundle
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+
30
+ Gemfile.lock
31
+ .tool-versions
32
+ .DS_Store
33
+
34
+ # ignore default template generation location
35
+ out
36
+
37
+ # ignore downloaded openapi document
38
+ openapi.json