iqvoc_compound_forms 2.8.0 → 2.11.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +67 -0
  3. data/.gitignore +9 -0
  4. data/Gemfile +12 -8
  5. data/Gemfile.lock +501 -313
  6. data/README.md +3 -4
  7. data/app/assets/images/.gitkeep +0 -0
  8. data/app/assets/javascripts/iqvoc_compound_forms/manifest.js +1 -1
  9. data/app/assets/javascripts/manifest.js +4 -4
  10. data/app/assets/stylesheets/manifest.scss +1 -0
  11. data/app/models/application_record.rb +3 -0
  12. data/app/models/compound_form/base.rb +8 -5
  13. data/app/models/compound_form/content/base.rb +2 -2
  14. data/app/models/concerns/compound_forms_label_extensions.rb +8 -6
  15. data/app/views/partials/compound_form/_compound_form.html.erb +3 -3
  16. data/app/views/partials/compound_form/content/_base.html.erb +2 -2
  17. data/app/views/partials/compound_form/content/_base_no_header.html.erb +15 -0
  18. data/bin/bundle +3 -0
  19. data/bin/rails +3 -5
  20. data/bin/rake +3 -2
  21. data/bin/setup +33 -0
  22. data/bin/update +31 -0
  23. data/bin/yarn +17 -0
  24. data/config/application.rb +29 -48
  25. data/config/boot.rb +3 -12
  26. data/config/cable.yml +10 -0
  27. data/config/database.yml.postgresql +26 -0
  28. data/config/environment.rb +4 -4
  29. data/config/initializers/content_security_policy.rb +25 -0
  30. data/config/initializers/filter_parameter_logging.rb +8 -0
  31. data/config/initializers/inflections.rb +16 -0
  32. data/config/initializers/permissions_policy.rb +11 -0
  33. data/config/locales/de.yml +2 -0
  34. data/config/locales/en.yml +2 -0
  35. data/config/storage.yml +34 -0
  36. data/config.ru +4 -2
  37. data/db/migrate/20120112100000_create_compound_forms.rb +1 -1
  38. data/db/migrate/20150108153131_add_fk_constraints_iqvoc_compound_forms.rb +1 -1
  39. data/faucet.config.js +49 -0
  40. data/iqvoc_compound_forms.gemspec +12 -12
  41. data/lib/iqvoc/compound_forms/version.rb +1 -1
  42. data/package-lock.json +1495 -0
  43. data/package.json +32 -0
  44. data/public/favicon.ico +0 -0
  45. data/test/integration/compound_form_ui_test.rb +2 -2
  46. metadata +30 -18
  47. data/.travis.yml +0 -35
@@ -1,24 +1,24 @@
1
1
  # encoding: UTF-8
2
2
 
3
- $:.push File.expand_path("../lib", __FILE__)
4
- require "iqvoc/compound_forms/version"
3
+ $:.push File.expand_path('../lib', __FILE__)
4
+ require 'iqvoc/compound_forms/version'
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = "iqvoc_compound_forms"
7
+ s.name = 'iqvoc_compound_forms'
8
8
  s.version = Iqvoc::CompoundForms::VERSION
9
9
  s.platform = Gem::Platform::RUBY
10
- s.authors = ["Robert Glaser", "Till Schulte-Coerne", "Frederik Dohr"]
11
- s.email = ["robert.glaser@innoq.com"]
12
- s.homepage = "" # TODO
13
- s.summary = "" # TODO
14
- s.description = "" # TODO
10
+ s.authors = ['Robert Glaser', 'Till Schulte-Coerne', 'Frederik Dohr']
11
+ s.email = ['robert.glaser@innoq.com']
12
+ s.homepage = '' # TODO
13
+ s.summary = '' # TODO
14
+ s.description = '' # TODO
15
15
 
16
- s.rubyforge_project = "iqvoc_compound_forms"
16
+ s.rubyforge_project = 'iqvoc_compound_forms'
17
17
 
18
- s.add_dependency "iqvoc", ">= 4.5.0", "~> 4.10"
19
- s.add_dependency "iqvoc_skosxl", "~> 2.8.0"
18
+ s.add_dependency 'iqvoc', '~> 4.14.4'
19
+ s.add_dependency 'iqvoc_skosxl', '~> 2.11.3'
20
20
 
21
21
  s.files = `git ls-files`.split("\n")
22
22
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
23
- s.require_paths = ["lib"]
23
+ s.require_paths = ['lib']
24
24
  end
@@ -1,5 +1,5 @@
1
1
  module Iqvoc
2
2
  module CompoundForms
3
- VERSION = "2.8.0"
3
+ VERSION = "2.11.3"
4
4
  end
5
5
  end