active_annotations 0.4.0 → 0.5.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 +4 -4
- data/.circleci/config.yml +23 -24
- data/active_annotations.gemspec +1 -1
- data/lib/active_annotations/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bdce7854ec496a516145930dfe9b5bae016749425cabc4b8309e44e74dbc92f
|
|
4
|
+
data.tar.gz: 74d3af40b134eb2fc4b0aa97d22c7fa516bda13546bbd9a14fc02b50ea68dbda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e98c3411dbd15c0ae4bf142c0551faee4fee7973a3765086cbeb5764925932ffd629586fbe6ff71d718210677848b744a00294c94b69a457ea53eadf3334e09
|
|
7
|
+
data.tar.gz: 154b98e8aaaba506963375589b60ae3ef243419f9e9ecfc01506449a3b73a87d66db7e2ed9b8f460ec4e598e6d0356ecbc2abf5bac17e8fef1ed5a7fbc18c245
|
data/.circleci/config.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
version: 2.1
|
|
2
2
|
orbs:
|
|
3
|
-
samvera: samvera/circleci-orb@1.0.
|
|
3
|
+
samvera: samvera/circleci-orb@1.0.3
|
|
4
4
|
jobs:
|
|
5
5
|
bundle_lint_test:
|
|
6
6
|
parameters:
|
|
@@ -8,7 +8,7 @@ jobs:
|
|
|
8
8
|
type: string
|
|
9
9
|
bundler_version:
|
|
10
10
|
type: string
|
|
11
|
-
default: 2.
|
|
11
|
+
default: 2.5.23
|
|
12
12
|
rails_version:
|
|
13
13
|
type: string
|
|
14
14
|
executor:
|
|
@@ -32,12 +32,15 @@ jobs:
|
|
|
32
32
|
ruby_version: << parameters.ruby_version >>
|
|
33
33
|
bundler_version: << parameters.bundler_version >>
|
|
34
34
|
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
35
|
+
- run:
|
|
36
|
+
name: Generate test app and work around zeitwerk issue with engine_cart
|
|
37
|
+
command: |
|
|
38
|
+
bundle exec rake engine_cart:generate || true
|
|
39
|
+
bundle install
|
|
40
|
+
cd .internal_test_app
|
|
41
|
+
bundle install
|
|
42
|
+
sed -i "s/assets tasks/assets tasks generators/" config/application.rb
|
|
43
|
+
bundle exec rails g test_app
|
|
41
44
|
|
|
42
45
|
- samvera/parallel_rspec
|
|
43
46
|
|
|
@@ -45,22 +48,18 @@ workflows:
|
|
|
45
48
|
ci:
|
|
46
49
|
jobs:
|
|
47
50
|
- bundle_lint_test:
|
|
48
|
-
name:
|
|
49
|
-
ruby_version:
|
|
50
|
-
rails_version: 7.
|
|
51
|
-
- bundle_lint_test:
|
|
52
|
-
name: ruby2-7_rails6-1
|
|
53
|
-
ruby_version: 2.7.5
|
|
54
|
-
rails_version: 6.1.4.6
|
|
51
|
+
name: ruby3-3_rails7-2
|
|
52
|
+
ruby_version: 3.3.4
|
|
53
|
+
rails_version: 7.2.0
|
|
55
54
|
- bundle_lint_test:
|
|
56
|
-
name:
|
|
57
|
-
ruby_version: 2.
|
|
58
|
-
rails_version:
|
|
55
|
+
name: ruby3-2_rails7-2
|
|
56
|
+
ruby_version: 3.2.5
|
|
57
|
+
rails_version: 7.2.0
|
|
59
58
|
- bundle_lint_test:
|
|
60
|
-
name:
|
|
61
|
-
ruby_version: 2.
|
|
62
|
-
rails_version:
|
|
59
|
+
name: ruby3-2_rails7-1
|
|
60
|
+
ruby_version: 3.2.5
|
|
61
|
+
rails_version: 7.1.3.4
|
|
63
62
|
- bundle_lint_test:
|
|
64
|
-
name:
|
|
65
|
-
ruby_version: 2.
|
|
66
|
-
rails_version:
|
|
63
|
+
name: ruby3-2_rails7-0
|
|
64
|
+
ruby_version: 3.2.5
|
|
65
|
+
rails_version: 7.0.8.4
|
data/active_annotations.gemspec
CHANGED
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.add_dependency 'rails', '>= 5.2', '< 7.
|
|
22
|
+
spec.add_dependency 'rails', '>= 5.2', '< 7.3'
|
|
23
23
|
spec.add_dependency "json-ld"
|
|
24
24
|
spec.add_dependency "rdf-vocab", ">= 2.1.0"
|
|
25
25
|
spec.add_development_dependency "bundler"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_annotations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael B. Klein
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '5.2'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '7.
|
|
22
|
+
version: '7.3'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '5.2'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '7.
|
|
32
|
+
version: '7.3'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: json-ld
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -172,7 +172,7 @@ homepage: http://github.com/avalonmediasystem/active_annotations
|
|
|
172
172
|
licenses:
|
|
173
173
|
- Apache
|
|
174
174
|
metadata: {}
|
|
175
|
-
post_install_message:
|
|
175
|
+
post_install_message:
|
|
176
176
|
rdoc_options: []
|
|
177
177
|
require_paths:
|
|
178
178
|
- lib
|
|
@@ -187,8 +187,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
188
|
version: '0'
|
|
189
189
|
requirements: []
|
|
190
|
-
rubygems_version: 3.
|
|
191
|
-
signing_key:
|
|
190
|
+
rubygems_version: 3.5.16
|
|
191
|
+
signing_key:
|
|
192
192
|
specification_version: 4
|
|
193
193
|
summary: OpenAnnontations + JSON-LD + ActiveRecord
|
|
194
194
|
test_files: []
|