trestle 0.9.6 → 0.9.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rspec.yml +28 -0
- data/CONTRIBUTING.md +1 -1
- data/README.md +1 -1
- data/app/assets/bundle/trestle/bundle.css +5 -5
- data/app/assets/bundle/trestle/bundle.js +12 -12
- data/lib/generators/trestle/install/templates/trestle.rb.erb +2 -1
- data/lib/trestle/configurable.rb +6 -0
- data/lib/trestle/configuration.rb +4 -5
- data/lib/trestle/form/builder.rb +4 -4
- data/lib/trestle/lazy.rb +56 -0
- data/lib/trestle/navigation/item.rb +1 -1
- data/lib/trestle/table/column.rb +5 -1
- data/lib/trestle/version.rb +1 -1
- data/lib/trestle.rb +1 -0
- data/package.json +1 -1
- data/yarn.lock +1298 -1395
- metadata +5 -4
- data/.travis.yml +0 -39
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04bc9348c7fc661e106f5735111f2c80ccfcf7200d38a3920e6175c029c237c7
|
4
|
+
data.tar.gz: d01512738c4301cff441e987b8190467795b4a9bd0ddc957eb290e8ed51481a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 [
|
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
|
-
[![
|
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
|
|