active_annotations 0.3.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 +25 -14
- data/active_annotations.gemspec +1 -1
- data/lib/active_annotations/engine.rb +3 -7
- data/lib/active_annotations/version.rb +1 -1
- metadata +14 -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,10 +48,18 @@ workflows:
|
|
|
45
48
|
ci:
|
|
46
49
|
jobs:
|
|
47
50
|
- bundle_lint_test:
|
|
48
|
-
name:
|
|
49
|
-
ruby_version:
|
|
50
|
-
rails_version:
|
|
51
|
+
name: ruby3-3_rails7-2
|
|
52
|
+
ruby_version: 3.3.4
|
|
53
|
+
rails_version: 7.2.0
|
|
54
|
+
- bundle_lint_test:
|
|
55
|
+
name: ruby3-2_rails7-2
|
|
56
|
+
ruby_version: 3.2.5
|
|
57
|
+
rails_version: 7.2.0
|
|
58
|
+
- bundle_lint_test:
|
|
59
|
+
name: ruby3-2_rails7-1
|
|
60
|
+
ruby_version: 3.2.5
|
|
61
|
+
rails_version: 7.1.3.4
|
|
51
62
|
- bundle_lint_test:
|
|
52
|
-
name:
|
|
53
|
-
ruby_version: 2.
|
|
54
|
-
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', '
|
|
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"
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
config.autoload_paths += Dir["#{config.root}/app/models/**/"]
|
|
5
|
-
|
|
6
|
-
engine_name 'active_annotations'
|
|
7
|
-
end
|
|
1
|
+
module ActiveAnnotations
|
|
2
|
+
class Engine < Rails::Engine
|
|
3
|
+
engine_name 'active_annotations'
|
|
8
4
|
end
|
|
9
5
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
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
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '5.2'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '7.3'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '5.2'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '7.3'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: json-ld
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -166,7 +172,7 @@ homepage: http://github.com/avalonmediasystem/active_annotations
|
|
|
166
172
|
licenses:
|
|
167
173
|
- Apache
|
|
168
174
|
metadata: {}
|
|
169
|
-
post_install_message:
|
|
175
|
+
post_install_message:
|
|
170
176
|
rdoc_options: []
|
|
171
177
|
require_paths:
|
|
172
178
|
- lib
|
|
@@ -181,8 +187,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
187
|
- !ruby/object:Gem::Version
|
|
182
188
|
version: '0'
|
|
183
189
|
requirements: []
|
|
184
|
-
rubygems_version: 3.
|
|
185
|
-
signing_key:
|
|
190
|
+
rubygems_version: 3.5.16
|
|
191
|
+
signing_key:
|
|
186
192
|
specification_version: 4
|
|
187
193
|
summary: OpenAnnontations + JSON-LD + ActiveRecord
|
|
188
194
|
test_files: []
|