iqvoc_compound_forms 2.8.0 → 2.11.3
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 +5 -5
- data/.github/workflows/ci.yml +67 -0
- data/.gitignore +9 -0
- data/Gemfile +12 -8
- data/Gemfile.lock +501 -313
- data/README.md +3 -4
- data/app/assets/images/.gitkeep +0 -0
- data/app/assets/javascripts/iqvoc_compound_forms/manifest.js +1 -1
- data/app/assets/javascripts/manifest.js +4 -4
- data/app/assets/stylesheets/manifest.scss +1 -0
- data/app/models/application_record.rb +3 -0
- data/app/models/compound_form/base.rb +8 -5
- data/app/models/compound_form/content/base.rb +2 -2
- data/app/models/concerns/compound_forms_label_extensions.rb +8 -6
- data/app/views/partials/compound_form/_compound_form.html.erb +3 -3
- data/app/views/partials/compound_form/content/_base.html.erb +2 -2
- data/app/views/partials/compound_form/content/_base_no_header.html.erb +15 -0
- data/bin/bundle +3 -0
- data/bin/rails +3 -5
- data/bin/rake +3 -2
- data/bin/setup +33 -0
- data/bin/update +31 -0
- data/bin/yarn +17 -0
- data/config/application.rb +29 -48
- data/config/boot.rb +3 -12
- data/config/cable.yml +10 -0
- data/config/database.yml.postgresql +26 -0
- data/config/environment.rb +4 -4
- data/config/initializers/content_security_policy.rb +25 -0
- data/config/initializers/filter_parameter_logging.rb +8 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/permissions_policy.rb +11 -0
- data/config/locales/de.yml +2 -0
- data/config/locales/en.yml +2 -0
- data/config/storage.yml +34 -0
- data/config.ru +4 -2
- data/db/migrate/20120112100000_create_compound_forms.rb +1 -1
- data/db/migrate/20150108153131_add_fk_constraints_iqvoc_compound_forms.rb +1 -1
- data/faucet.config.js +49 -0
- data/iqvoc_compound_forms.gemspec +12 -12
- data/lib/iqvoc/compound_forms/version.rb +1 -1
- data/package-lock.json +1495 -0
- data/package.json +32 -0
- data/public/favicon.ico +0 -0
- data/test/integration/compound_form_ui_test.rb +2 -2
- metadata +30 -18
- data/.travis.yml +0 -35
data/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "iqvoc_compound_forms",
|
|
3
|
+
"version": "2.11.3",
|
|
4
|
+
"description": "Compound from extension for iQvoc SKOS-XL vocabulary management system built on the Semantic Web",
|
|
5
|
+
"files": [
|
|
6
|
+
"app/assets/**/*"
|
|
7
|
+
],
|
|
8
|
+
"scripts": {
|
|
9
|
+
"watch": "faucet --watch",
|
|
10
|
+
"compile": "faucet --compact --fingerprint"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/innoq/iqvoc_compound_forms.git"
|
|
15
|
+
},
|
|
16
|
+
"author": "",
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/innoq/iqvoc_compound_forms/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/innoq/iqvoc_compound_forms#readme",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"faucet-pipeline-js": "^2.1.7",
|
|
24
|
+
"faucet-pipeline-jsmin": "^2.1.7",
|
|
25
|
+
"faucet-pipeline-sass": "^1.6.0",
|
|
26
|
+
"faucet-pipeline-static": "^1.2.0"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"iqvoc": "github:innoq/iqvoc",
|
|
30
|
+
"iqvoc_skosxl": "github:innoq/iqvoc_skosxl"
|
|
31
|
+
}
|
|
32
|
+
}
|
data/public/favicon.ico
ADDED
|
File without changes
|
|
@@ -61,7 +61,7 @@ class CompoundFormUITest < ActionDispatch::IntegrationTest
|
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
click_link_or_button 'Create new version'
|
|
64
|
-
assert page.has_content? 'Instance copy has been created
|
|
64
|
+
assert page.has_content? 'Instance copy has been created.'
|
|
65
65
|
|
|
66
66
|
# remove last component (fill in first 3)
|
|
67
67
|
compound_form_origins = label.compound_form_contents.map {|cfc| cfc.label.origin}
|
|
@@ -96,7 +96,7 @@ class CompoundFormUITest < ActionDispatch::IntegrationTest
|
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
click_link_or_button 'Create new version'
|
|
99
|
-
assert page.has_content? 'Instance copy has been created
|
|
99
|
+
assert page.has_content? 'Instance copy has been created.'
|
|
100
100
|
|
|
101
101
|
# clear compound forms completely
|
|
102
102
|
fill_in 'label_inline_compound_form_origins_', with: ''
|
metadata
CHANGED
|
@@ -1,51 +1,45 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iqvoc_compound_forms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.11.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Glaser
|
|
8
8
|
- Till Schulte-Coerne
|
|
9
9
|
- Frederik Dohr
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: iqvoc
|
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
|
18
18
|
requirements:
|
|
19
|
-
- - ">="
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
version: 4.5.0
|
|
22
19
|
- - "~>"
|
|
23
20
|
- !ruby/object:Gem::Version
|
|
24
|
-
version:
|
|
21
|
+
version: 4.14.4
|
|
25
22
|
type: :runtime
|
|
26
23
|
prerelease: false
|
|
27
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
28
25
|
requirements:
|
|
29
|
-
- - ">="
|
|
30
|
-
- !ruby/object:Gem::Version
|
|
31
|
-
version: 4.5.0
|
|
32
26
|
- - "~>"
|
|
33
27
|
- !ruby/object:Gem::Version
|
|
34
|
-
version:
|
|
28
|
+
version: 4.14.4
|
|
35
29
|
- !ruby/object:Gem::Dependency
|
|
36
30
|
name: iqvoc_skosxl
|
|
37
31
|
requirement: !ruby/object:Gem::Requirement
|
|
38
32
|
requirements:
|
|
39
33
|
- - "~>"
|
|
40
34
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 2.
|
|
35
|
+
version: 2.11.3
|
|
42
36
|
type: :runtime
|
|
43
37
|
prerelease: false
|
|
44
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
45
39
|
requirements:
|
|
46
40
|
- - "~>"
|
|
47
41
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 2.
|
|
42
|
+
version: 2.11.3
|
|
49
43
|
description: ''
|
|
50
44
|
email:
|
|
51
45
|
- robert.glaser@innoq.com
|
|
@@ -53,15 +47,18 @@ executables: []
|
|
|
53
47
|
extensions: []
|
|
54
48
|
extra_rdoc_files: []
|
|
55
49
|
files:
|
|
50
|
+
- ".github/workflows/ci.yml"
|
|
56
51
|
- ".gitignore"
|
|
57
|
-
- ".travis.yml"
|
|
58
52
|
- Gemfile
|
|
59
53
|
- Gemfile.lock
|
|
60
54
|
- README.md
|
|
61
55
|
- Rakefile
|
|
56
|
+
- app/assets/images/.gitkeep
|
|
62
57
|
- app/assets/javascripts/iqvoc_compound_forms/compound_forms.js
|
|
63
58
|
- app/assets/javascripts/iqvoc_compound_forms/manifest.js
|
|
64
59
|
- app/assets/javascripts/manifest.js
|
|
60
|
+
- app/assets/stylesheets/manifest.scss
|
|
61
|
+
- app/models/application_record.rb
|
|
65
62
|
- app/models/compound_form/base.rb
|
|
66
63
|
- app/models/compound_form/content/base.rb
|
|
67
64
|
- app/models/concerns/compound_forms_label_extensions.rb
|
|
@@ -69,21 +66,32 @@ files:
|
|
|
69
66
|
- app/views/partials/compound_form/_compound_form.html.erb
|
|
70
67
|
- app/views/partials/compound_form/_edit_base.html.erb
|
|
71
68
|
- app/views/partials/compound_form/content/_base.html.erb
|
|
69
|
+
- app/views/partials/compound_form/content/_base_no_header.html.erb
|
|
70
|
+
- bin/bundle
|
|
72
71
|
- bin/rails
|
|
73
72
|
- bin/rake
|
|
73
|
+
- bin/setup
|
|
74
|
+
- bin/update
|
|
75
|
+
- bin/yarn
|
|
74
76
|
- config.ru
|
|
75
77
|
- config/application.rb
|
|
76
78
|
- config/boot.rb
|
|
79
|
+
- config/cable.yml
|
|
77
80
|
- config/database.mysql.yml
|
|
78
81
|
- config/database.sqlite.yml
|
|
79
82
|
- config/database.template.yml
|
|
83
|
+
- config/database.yml.postgresql
|
|
80
84
|
- config/engine.rb
|
|
81
85
|
- config/environment.rb
|
|
82
86
|
- config/environments/development.rb
|
|
83
87
|
- config/environments/production.rb
|
|
84
88
|
- config/environments/test.rb
|
|
89
|
+
- config/initializers/content_security_policy.rb
|
|
85
90
|
- config/initializers/engine_extensions.rb
|
|
91
|
+
- config/initializers/filter_parameter_logging.rb
|
|
92
|
+
- config/initializers/inflections.rb
|
|
86
93
|
- config/initializers/iqvoc.rb
|
|
94
|
+
- config/initializers/permissions_policy.rb
|
|
87
95
|
- config/initializers/session_store.rb
|
|
88
96
|
- config/locales/activerecord.de.yml
|
|
89
97
|
- config/locales/activerecord.en.yml
|
|
@@ -91,14 +99,19 @@ files:
|
|
|
91
99
|
- config/locales/en.yml
|
|
92
100
|
- config/routes.rb
|
|
93
101
|
- config/secrets.yml
|
|
102
|
+
- config/storage.yml
|
|
94
103
|
- db/migrate/20120112100000_create_compound_forms.rb
|
|
95
104
|
- db/migrate/20150108153131_add_fk_constraints_iqvoc_compound_forms.rb
|
|
96
105
|
- db/seeds.rb
|
|
106
|
+
- faucet.config.js
|
|
97
107
|
- iqvoc_compound_forms.gemspec
|
|
98
108
|
- lib/engine_tasks/db.rake
|
|
99
109
|
- lib/iqvoc/compound_forms/version.rb
|
|
100
110
|
- lib/iqvoc_compound_forms.rb
|
|
111
|
+
- package-lock.json
|
|
112
|
+
- package.json
|
|
101
113
|
- public/.gitkeep
|
|
114
|
+
- public/favicon.ico
|
|
102
115
|
- script/rails
|
|
103
116
|
- test/fixtures/hobbies.nt
|
|
104
117
|
- test/integration/compound_form_ui_test.rb
|
|
@@ -109,7 +122,7 @@ files:
|
|
|
109
122
|
homepage: ''
|
|
110
123
|
licenses: []
|
|
111
124
|
metadata: {}
|
|
112
|
-
post_install_message:
|
|
125
|
+
post_install_message:
|
|
113
126
|
rdoc_options: []
|
|
114
127
|
require_paths:
|
|
115
128
|
- lib
|
|
@@ -124,9 +137,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
124
137
|
- !ruby/object:Gem::Version
|
|
125
138
|
version: '0'
|
|
126
139
|
requirements: []
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
signing_key:
|
|
140
|
+
rubygems_version: 3.4.10
|
|
141
|
+
signing_key:
|
|
130
142
|
specification_version: 4
|
|
131
143
|
summary: ''
|
|
132
144
|
test_files:
|
data/.travis.yml
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
language: ruby
|
|
2
|
-
cache: bundler
|
|
3
|
-
bundler_args: "--without production --retry 3"
|
|
4
|
-
bundler_args:
|
|
5
|
-
rvm:
|
|
6
|
-
# - 1.9.3
|
|
7
|
-
- 2.0
|
|
8
|
-
- 2.2
|
|
9
|
-
- ruby-head
|
|
10
|
-
# - jruby-19mode
|
|
11
|
-
# - jruby-head
|
|
12
|
-
env:
|
|
13
|
-
- DB=sqlite
|
|
14
|
-
- DB=mysql
|
|
15
|
-
before_install:
|
|
16
|
-
- cp config/database.$DB.yml config/database.yml
|
|
17
|
-
- gem update bundler
|
|
18
|
-
before_script:
|
|
19
|
-
- bundle exec rake db:drop RAILS_ENV=test
|
|
20
|
-
- bundle exec rake db:create RAILS_ENV=test
|
|
21
|
-
- bundle exec rake db:migrate RAILS_ENV=test
|
|
22
|
-
branches:
|
|
23
|
-
only:
|
|
24
|
-
- master
|
|
25
|
-
notifications:
|
|
26
|
-
email:
|
|
27
|
-
- iqvoc@innoq.com
|
|
28
|
-
deploy:
|
|
29
|
-
provider: rubygems
|
|
30
|
-
api_key:
|
|
31
|
-
secure: maEhwWkTskmPRX1BdqJXrpnKrtTKrBGoho33oFn70OD+Z51vHYuZxz5SYUyzEG/uL2R5QFlIReUFtibpnSZx1xvTnqZyxMWY8gvRaOhrgmGoKmGvtbqF9zABTv7K/ivY5Kkt6jo3jahvf4/eQ+bWKCnA0Ak1JpuWhbgxZY8hUGY=
|
|
32
|
-
gem: iqvoc_compound_forms
|
|
33
|
-
on:
|
|
34
|
-
tags: true
|
|
35
|
-
repo: innoq/iqvoc_compound_forms
|