tessa 6.1.0 → 6.1.2
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 +4 -4
- data/.circleci/config.yml +31 -6
- data/lib/tessa/simple_form/asset_input.rb +1 -1
- data/lib/tessa/version.rb +1 -1
- data/tessa.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca83dc68624a7892e1bb3d5a9a1c15e9be70846cfc815856847ef887d5fb2218
|
4
|
+
data.tar.gz: d707580af1366a845f80a8d437ad45cf4e3c7ba97c8faf0d53bd25c1a01ff099
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10012d00d567b765dcef7724135d4715a02211d559de9043ee540ab633fffd37f2ceed0b010b3892213eafcc676a9fea6db1408aa88a6ddc4dd68a05fa0cc832
|
7
|
+
data.tar.gz: f113fa28171222beac0ee4230974624ef0dedb35e7103c0177d9a2d65e51a3ee51637b3a131fd0d2a7e15034a582b0418187c0464591c1126c5ff9928148d370
|
data/.circleci/config.yml
CHANGED
@@ -1,12 +1,21 @@
|
|
1
1
|
version: 2.1
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
executors:
|
4
|
+
ruby:
|
5
|
+
parameters:
|
6
|
+
version:
|
7
|
+
type: string
|
5
8
|
docker:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
9
|
+
- image: cimg/ruby:<< parameters.version >>-node
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test:
|
13
|
+
parameters:
|
14
|
+
ruby:
|
15
|
+
type: string
|
16
|
+
executor:
|
17
|
+
name: ruby
|
18
|
+
version: << parameters.ruby >>
|
10
19
|
steps:
|
11
20
|
- checkout
|
12
21
|
|
@@ -40,3 +49,19 @@ jobs:
|
|
40
49
|
# Lint
|
41
50
|
- run: yarn lint
|
42
51
|
- run: yarn build
|
52
|
+
|
53
|
+
workflows:
|
54
|
+
build:
|
55
|
+
jobs:
|
56
|
+
- test:
|
57
|
+
name: test_ruby-2.5
|
58
|
+
ruby: 2.5.9
|
59
|
+
- test:
|
60
|
+
name: test_ruby-2.7
|
61
|
+
ruby: 2.7.8
|
62
|
+
- test:
|
63
|
+
name: test_ruby-3.0
|
64
|
+
ruby: 3.0.7
|
65
|
+
- test:
|
66
|
+
name: test_ruby-3.3
|
67
|
+
ruby: 3.3.1
|
data/lib/tessa/version.rb
CHANGED
data/tessa.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
spec.homepage = "https://github.com/watermarkchurch/tessa-client"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
|
-
spec.required_ruby_version = '
|
16
|
+
spec.required_ruby_version = '>= 2.5'
|
17
17
|
|
18
18
|
spec.files = `git ls-files -z`.split("\x0").push(
|
19
19
|
'app/assets/javascripts/tessa.js',
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tessa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Powell
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-07-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -224,16 +224,16 @@ require_paths:
|
|
224
224
|
- lib
|
225
225
|
required_ruby_version: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
|
-
- - "
|
227
|
+
- - ">="
|
228
228
|
- !ruby/object:Gem::Version
|
229
|
-
version: '
|
229
|
+
version: '2.5'
|
230
230
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
231
231
|
requirements:
|
232
232
|
- - ">="
|
233
233
|
- !ruby/object:Gem::Version
|
234
234
|
version: '0'
|
235
235
|
requirements: []
|
236
|
-
rubygems_version: 3.
|
236
|
+
rubygems_version: 3.4.10
|
237
237
|
signing_key:
|
238
238
|
specification_version: 4
|
239
239
|
summary: Manage your assets.
|