trestle 0.9.6 → 0.9.7

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: 69b3e74515d0dfde0380b92c8e9f5f37beb1d23cf8c31178d1000ef7f7a1adcc
4
- data.tar.gz: a6337acb54910fea72323ae457adfe8f5b3031e858455d7d886185e1dcffaf7b
3
+ metadata.gz: 04bc9348c7fc661e106f5735111f2c80ccfcf7200d38a3920e6175c029c237c7
4
+ data.tar.gz: d01512738c4301cff441e987b8190467795b4a9bd0ddc957eb290e8ed51481a2
5
5
  SHA512:
6
- metadata.gz: e69c0b5908c0aae5c257775c5937785df476d31ac288996f4725f1b3e0a023a0efb19126f28d8dce42deafbd82ceb8556bc6aecd9e428ed8893b9b8679c0e9cd
7
- data.tar.gz: 63fa852e9ee84ed0a8aa02afae5d34e1a83d7621965a0310f44aa4f5b11f68fa83e3c31d2aced72bb721b34fc8fbf862b19287d6315b38dd25d2065ebe243380
6
+ metadata.gz: 0c332cbcc95b02d31c9b4ec178b1fe00d18a071368bfe22fd23ebdce02b702a5d75783b77796687d0a6fa5bf83d0be6d32687f0853721eb3130e37bbd49c93ec
7
+ data.tar.gz: 8d691b0b934314623f9b94e4d5b706952fd1fadd3819e3f13633a8f10b2a644377d6c5923f4676f13f33694de1843e3268cea5c1787a88ad1117b68235eba327
@@ -0,0 +1,28 @@
1
+ name: RSpec
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ gemfile: [ rails-5.0, rails-5.1, rails-5.2, rails-6.0, rails-6.1 ]
11
+ ruby: [ '2.7' ]
12
+ include:
13
+ - gemfile: rails-6.1
14
+ ruby: '3.0'
15
+ - gemfile: rails-7.0
16
+ ruby: '2.7'
17
+ - gemfile: rails-7.0
18
+ ruby: '3.0'
19
+ runs-on: ubuntu-latest
20
+ env:
21
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
22
+ steps:
23
+ - uses: actions/checkout@v3
24
+ - uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby }}
27
+ bundler-cache: true
28
+ - run: bundle exec rake
data/CONTRIBUTING.md CHANGED
@@ -15,7 +15,7 @@ After checking out the repository and installing dependencies by running `bundle
15
15
  $ bundle exec rake
16
16
  ```
17
17
 
18
- When submitting a pull request, please ensure that all of the tests are passing. Builds will be automatically checked for a passing test suite by [Travis CI](https://travis-ci.com/github/TrestleAdmin/trestle).
18
+ When submitting a pull request, please ensure that all of the tests are passing. Builds will be automatically checked for a passing test suite by [GitHub Actions](https://github.com/TrestleAdmin/trestle/actions).
19
19
 
20
20
 
21
21
  ## Sandbox Application
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  # Trestle
6
6
 
7
7
  [![RubyGem](https://img.shields.io/gem/v/trestle.svg?style=flat&colorB=4065a9)](https://rubygems.org/gems/trestle)
8
- [![Travis](https://img.shields.io/travis/TrestleAdmin/trestle.svg?style=flat)](https://travis-ci.com/github/TrestleAdmin/trestle)
8
+ [![Build Status](https://img.shields.io/github/workflow/status/TrestleAdmin/trestle/RSpec?style=flat)](https://github.com/TrestleAdmin/trestle/actions)
9
9
  [![Coveralls](https://img.shields.io/coveralls/TrestleAdmin/trestle.svg?style=flat)](https://coveralls.io/github/TrestleAdmin/trestle)
10
10
  [![Code Climate](https://api.codeclimate.com/v1/badges/c529a7a9c500ed81baed/maintainability)](https://codeclimate.com/github/TrestleAdmin/trestle)
11
11