blacklight-citeproc 0.0.4 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.env +3 -0
  3. data/.github/workflows/test.yml +25 -0
  4. data/.internal_test_app/solr/conf/_rest_managed.json +3 -0
  5. data/.internal_test_app/solr/conf/admin-extra.html +31 -0
  6. data/.internal_test_app/solr/conf/currency.xml +67 -0
  7. data/.internal_test_app/solr/conf/email_url_types.txt +2 -0
  8. data/.internal_test_app/solr/conf/lang/contractions_ca.txt +8 -0
  9. data/.internal_test_app/solr/conf/lang/contractions_fr.txt +15 -0
  10. data/.internal_test_app/solr/conf/lang/contractions_ga.txt +5 -0
  11. data/.internal_test_app/solr/conf/lang/contractions_it.txt +23 -0
  12. data/.internal_test_app/solr/conf/lang/hyphenations_ga.txt +5 -0
  13. data/.internal_test_app/solr/conf/lang/stemdict_nl.txt +6 -0
  14. data/.internal_test_app/solr/conf/lang/stoptags_ja.txt +420 -0
  15. data/.internal_test_app/solr/conf/lang/stopwords_ar.txt +125 -0
  16. data/.internal_test_app/solr/conf/lang/stopwords_bg.txt +193 -0
  17. data/.internal_test_app/solr/conf/lang/stopwords_ca.txt +220 -0
  18. data/.internal_test_app/solr/conf/lang/stopwords_cz.txt +172 -0
  19. data/.internal_test_app/solr/conf/lang/stopwords_da.txt +110 -0
  20. data/.internal_test_app/solr/conf/lang/stopwords_de.txt +294 -0
  21. data/.internal_test_app/solr/conf/lang/stopwords_el.txt +78 -0
  22. data/.internal_test_app/solr/conf/lang/stopwords_en.txt +54 -0
  23. data/.internal_test_app/solr/conf/lang/stopwords_es.txt +356 -0
  24. data/.internal_test_app/solr/conf/lang/stopwords_eu.txt +99 -0
  25. data/.internal_test_app/solr/conf/lang/stopwords_fa.txt +313 -0
  26. data/.internal_test_app/solr/conf/lang/stopwords_fi.txt +97 -0
  27. data/.internal_test_app/solr/conf/lang/stopwords_fr.txt +186 -0
  28. data/.internal_test_app/solr/conf/lang/stopwords_ga.txt +110 -0
  29. data/.internal_test_app/solr/conf/lang/stopwords_gl.txt +161 -0
  30. data/.internal_test_app/solr/conf/lang/stopwords_hi.txt +235 -0
  31. data/.internal_test_app/solr/conf/lang/stopwords_hu.txt +211 -0
  32. data/.internal_test_app/solr/conf/lang/stopwords_hy.txt +46 -0
  33. data/.internal_test_app/solr/conf/lang/stopwords_id.txt +359 -0
  34. data/.internal_test_app/solr/conf/lang/stopwords_it.txt +303 -0
  35. data/.internal_test_app/solr/conf/lang/stopwords_ja.txt +127 -0
  36. data/.internal_test_app/solr/conf/lang/stopwords_lv.txt +172 -0
  37. data/.internal_test_app/solr/conf/lang/stopwords_nl.txt +119 -0
  38. data/.internal_test_app/solr/conf/lang/stopwords_no.txt +194 -0
  39. data/.internal_test_app/solr/conf/lang/stopwords_pt.txt +253 -0
  40. data/.internal_test_app/solr/conf/lang/stopwords_ro.txt +233 -0
  41. data/.internal_test_app/solr/conf/lang/stopwords_ru.txt +243 -0
  42. data/.internal_test_app/solr/conf/lang/stopwords_sv.txt +133 -0
  43. data/.internal_test_app/solr/conf/lang/stopwords_th.txt +119 -0
  44. data/.internal_test_app/solr/conf/lang/stopwords_tr.txt +212 -0
  45. data/.internal_test_app/solr/conf/lang/userdict_ja.txt +29 -0
  46. data/.internal_test_app/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  47. data/.internal_test_app/solr/conf/protwords.txt +21 -0
  48. data/.internal_test_app/solr/conf/schema.xml +408 -0
  49. data/.internal_test_app/solr/conf/scripts.conf +24 -0
  50. data/.internal_test_app/solr/conf/solrconfig.xml +1287 -0
  51. data/.internal_test_app/solr/conf/spellings.txt +2 -0
  52. data/.internal_test_app/solr/conf/stopwords.txt +14 -0
  53. data/.internal_test_app/solr/conf/stopwords_en.txt +58 -0
  54. data/.internal_test_app/solr/conf/synonyms.txt +13 -0
  55. data/.internal_test_app/solr/conf/update-script.js +115 -0
  56. data/.internal_test_app/solr/conf/velocity/browse.vm +32 -0
  57. data/.internal_test_app/solr/conf/velocity/dropit.js +0 -0
  58. data/.internal_test_app/solr/conf/velocity/facet_doc_type.vm +2 -0
  59. data/.internal_test_app/solr/conf/velocity/facet_text_shingles.vm +12 -0
  60. data/.internal_test_app/solr/conf/velocity/facets.vm +24 -0
  61. data/.internal_test_app/solr/conf/velocity/footer.vm +29 -0
  62. data/.internal_test_app/solr/conf/velocity/head.vm +290 -0
  63. data/.internal_test_app/solr/conf/velocity/hit.vm +77 -0
  64. data/.internal_test_app/solr/conf/velocity/img/english_640.png +0 -0
  65. data/.internal_test_app/solr/conf/velocity/img/france_640.png +0 -0
  66. data/.internal_test_app/solr/conf/velocity/img/germany_640.png +0 -0
  67. data/.internal_test_app/solr/conf/velocity/img/globe_256.png +0 -0
  68. data/.internal_test_app/solr/conf/velocity/jquery.tx3-tag-cloud.js +0 -0
  69. data/.internal_test_app/solr/conf/velocity/js/dropit.js +97 -0
  70. data/.internal_test_app/solr/conf/velocity/js/jquery.autocomplete.js +763 -0
  71. data/.internal_test_app/solr/conf/velocity/js/jquery.tx3-tag-cloud.js +70 -0
  72. data/.internal_test_app/solr/conf/velocity/layout.vm +42 -0
  73. data/.internal_test_app/solr/conf/velocity/macros.vm +16 -0
  74. data/.internal_test_app/solr/conf/velocity/mime_type_lists.vm +68 -0
  75. data/.internal_test_app/solr/conf/velocity/results.vm +20 -0
  76. data/.internal_test_app/solr/conf/velocity/results_list.vm +21 -0
  77. data/.internal_test_app/solr/conf/xslt/example.xsl +132 -0
  78. data/.internal_test_app/solr/conf/xslt/example_atom.xsl +67 -0
  79. data/.internal_test_app/solr/conf/xslt/example_rss.xsl +66 -0
  80. data/.internal_test_app/solr/conf/xslt/luke.xsl +337 -0
  81. data/.rubocop.yml +4 -0
  82. data/.rubocop_todo.yml +40 -0
  83. data/Dockerfile +43 -0
  84. data/Gemfile +5 -0
  85. data/LICENSE.md +21 -0
  86. data/README.md +3 -0
  87. data/Rakefile +8 -0
  88. data/app/controllers/blacklight/citeproc/citation_controller.rb +45 -40
  89. data/app/models/concerns/blacklight/document/bibtex.rb +37 -35
  90. data/bin/entrypoint.sh +8 -0
  91. data/blacklight-citeproc.gemspec +19 -19
  92. data/config/routes.rb +2 -0
  93. data/docker-compose.yml +33 -0
  94. data/lib/blacklight/citeproc/engine.rb +2 -0
  95. data/lib/blacklight/citeproc/version.rb +3 -1
  96. data/lib/blacklight/citeproc.rb +2 -0
  97. data/lib/generators/blacklight/citeproc/install_generator.rb +20 -15
  98. metadata +119 -40
data/bin/entrypoint.sh ADDED
@@ -0,0 +1,8 @@
1
+ #!/bin/bash
2
+ set -e
3
+
4
+ rm -f /app/.internal_test_app/tmp/pids/server.pid
5
+ bundle install
6
+ sleep 20 # wait for solr to finish its setup work
7
+ bundle exec rake db:migrate blacklight:index:seed
8
+ bundle exec rails s -p 3000 -b 0.0.0.0
@@ -1,33 +1,33 @@
1
- $:.push File.expand_path("lib", __dir__)
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
2
4
 
3
5
  # Maintain your gem's version:
4
- require "blacklight/citeproc/version"
6
+ require 'blacklight/citeproc/version'
5
7
 
6
8
  # Describe your gem and declare its dependencies:
7
9
  Gem::Specification.new do |spec|
8
- spec.name = "blacklight-citeproc"
10
+ spec.name = 'blacklight-citeproc'
9
11
  spec.version = Blacklight::Citeproc::VERSION
10
- spec.authors = ["Jane Sandberg"]
11
- spec.email = ["sandbej@linnbenton.edu"]
12
- spec.homepage = "https://github.com/sandbergja/blacklight-citeproc"
13
- spec.summary = ""
14
- spec.description = ""
15
- spec.license = "Apache-2.0"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
12
+ spec.authors = ['Jane Sandberg']
13
+ spec.email = ['sandbergja@gmail.com']
14
+ spec.homepage = 'https://github.com/sandbergja/blacklight-citeproc'
15
+ spec.summary = 'Generate and display citeproc citations in a Blacklight app'
16
+ spec.description = 'Swap in really accurate citations using a wide variety of citation styles to your Blacklight app'
17
+ spec.license = 'MIT'
18
+ spec.required_ruby_version = '>= 2.7'
19
+
20
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
21
  f.match(%r{^(test|spec|features)/})
19
22
  end
20
23
  spec.bindir = 'exe'
21
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
25
  spec.require_paths = ['lib']
23
26
 
24
- spec.add_dependency "bibtex-ruby", ">= 4.4.6"
25
- spec.add_dependency "citeproc-ruby", "~> 1.1"
26
- spec.add_dependency "csl-styles", "~> 1.0.1.9"
27
-
28
- spec.add_development_dependency "rspec-rails", "~> 3.0"
29
- spec.add_development_dependency "engine_cart", "~> 2.0"
30
- spec.add_development_dependency "solr_wrapper"
27
+ spec.add_dependency 'bibtex-ruby', '>= 4.4.6', '< 7'
28
+ spec.add_dependency 'citeproc-ruby', '~> 1.1'
29
+ spec.add_dependency 'csl-styles', '~> 1.0'
31
30
 
31
+ spec.add_development_dependency 'rspec-rails', '~> 3.0'
32
+ spec.add_development_dependency 'rubocop', '~> 1.29'
32
33
  end
33
-
data/config/routes.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Blacklight::Citeproc::Engine.routes.draw do
2
4
  get '/catalog/:id/citation' => 'blacklight/citeproc/citation#print_single'
3
5
  get '/bookmarks/citation' => 'blacklight/citeproc/citation#print_bookmarks'
@@ -0,0 +1,33 @@
1
+ version: "3.7"
2
+
3
+ services:
4
+ app:
5
+ build:
6
+ context: .
7
+ args:
8
+ - BLACKLIGHT_VERSION=${BLACKLIGHT_VERSION}
9
+ - RAILS_VERSION=${RAILS_VERSION}
10
+ volumes:
11
+ - .:/gem
12
+ depends_on:
13
+ - solr
14
+ ports:
15
+ - "3000:3000"
16
+ environment:
17
+ - SOLR_URL=${SOLR_URL}
18
+
19
+ solr:
20
+ environment:
21
+ - SOLR_VERSION
22
+ image: "solr:8"
23
+ volumes:
24
+ - .internal_test_app/solr/conf:/opt/solr/conf
25
+ ports:
26
+ - "8983:8983"
27
+ entrypoint:
28
+ - docker-entrypoint.sh
29
+ - solr-precreate
30
+ - blacklight-core
31
+ - /opt/solr/conf
32
+ - "-Xms256m"
33
+ - "-Xmx512m"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Blacklight
2
4
  module Citeproc
3
5
  class Engine < ::Rails::Engine
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Blacklight
2
4
  module Citeproc
3
- VERSION = '0.0.4'
5
+ VERSION = '0.2.0'
4
6
  end
5
7
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'blacklight/citeproc/engine'
2
4
 
3
5
  module Blacklight
@@ -1,16 +1,20 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rails/generators'
2
4
 
3
- module Blacklight::Citeproc
4
- class Install < Rails::Generators::Base
5
- source_root File.expand_path('../templates', __FILE__)
6
- def inject_routes
7
- inject_into_file 'config/routes.rb', after: /mount Blacklight::Engine.*$/ do
8
- "\n mount Blacklight::Citeproc::Engine => '/'\n"
5
+ module Blacklight
6
+ module Citeproc
7
+ class Install < Rails::Generators::Base
8
+ source_root File.expand_path('templates', __dir__)
9
+ def inject_routes
10
+ inject_into_file 'config/routes.rb', after: /mount Blacklight::Engine.*$/ do
11
+ "\n mount Blacklight::Citeproc::Engine => '/'\n"
12
+ end
9
13
  end
10
- end
11
- def add_blacklight_citeproc_config
12
- insert_into_file "app/controllers/catalog_controller.rb", after: " configure_blacklight do |config|\n" do
13
- <<-CONFIG
14
+
15
+ def add_blacklight_citeproc_config
16
+ insert_into_file 'app/controllers/catalog_controller.rb', after: " configure_blacklight do |config|\n" do
17
+ <<-CONFIG
14
18
  config.citeproc = {
15
19
  #bibtex_field: 'bibtex_s' # Optional. If you are already indexing BibTeX into solr, this will be the preferred way to get bibliographic data
16
20
  fields: {
@@ -32,13 +36,14 @@ module Blacklight::Citeproc
32
36
  }
33
37
  }
34
38
  }
35
- CONFIG
39
+ CONFIG
40
+ end
36
41
  end
37
- end
38
42
 
39
- def add_marc_extension_to_solrdocument
40
- insert_into_file "app/models/solr_document.rb", :after => "include Blacklight::Solr::Document" do
41
- "\n use_extension(Blacklight::Document::Bibtex)\n"
43
+ def add_marc_extension_to_solrdocument
44
+ insert_into_file 'app/models/solr_document.rb', after: 'include Blacklight::Solr::Document' do
45
+ "\n use_extension(Blacklight::Document::Bibtex)\n"
46
+ end
42
47
  end
43
48
  end
44
49
  end
metadata CHANGED
@@ -1,122 +1,202 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight-citeproc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jane Sandberg
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-01-01 00:00:00.000000000 Z
11
+ date: 2022-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
+ name: bibtex-ruby
14
15
  requirement: !ruby/object:Gem::Requirement
15
16
  requirements:
16
17
  - - ">="
17
18
  - !ruby/object:Gem::Version
18
19
  version: 4.4.6
19
- name: bibtex-ruby
20
- prerelease: false
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7'
21
23
  type: :runtime
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: 4.4.6
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7'
27
33
  - !ruby/object:Gem::Dependency
34
+ name: citeproc-ruby
28
35
  requirement: !ruby/object:Gem::Requirement
29
36
  requirements:
30
37
  - - "~>"
31
38
  - !ruby/object:Gem::Version
32
39
  version: '1.1'
33
- name: citeproc-ruby
34
- prerelease: false
35
40
  type: :runtime
41
+ prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
46
  version: '1.1'
41
47
  - !ruby/object:Gem::Dependency
48
+ name: csl-styles
42
49
  requirement: !ruby/object:Gem::Requirement
43
50
  requirements:
44
51
  - - "~>"
45
52
  - !ruby/object:Gem::Version
46
- version: 1.0.1.9
47
- name: csl-styles
48
- prerelease: false
53
+ version: '1.0'
49
54
  type: :runtime
55
+ prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
51
57
  requirements:
52
58
  - - "~>"
53
59
  - !ruby/object:Gem::Version
54
- version: 1.0.1.9
60
+ version: '1.0'
55
61
  - !ruby/object:Gem::Dependency
62
+ name: rspec-rails
56
63
  requirement: !ruby/object:Gem::Requirement
57
64
  requirements:
58
65
  - - "~>"
59
66
  - !ruby/object:Gem::Version
60
67
  version: '3.0'
61
- name: rspec-rails
62
- prerelease: false
63
68
  type: :development
69
+ prerelease: false
64
70
  version_requirements: !ruby/object:Gem::Requirement
65
71
  requirements:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
74
  version: '3.0'
69
75
  - !ruby/object:Gem::Dependency
76
+ name: rubocop
70
77
  requirement: !ruby/object:Gem::Requirement
71
78
  requirements:
72
79
  - - "~>"
73
80
  - !ruby/object:Gem::Version
74
- version: '2.0'
75
- name: engine_cart
76
- prerelease: false
81
+ version: '1.29'
77
82
  type: :development
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '2.0'
83
- - !ruby/object:Gem::Dependency
84
- requirement: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
- name: solr_wrapper
90
83
  prerelease: false
91
- type: :development
92
84
  version_requirements: !ruby/object:Gem::Requirement
93
85
  requirements:
94
- - - ">="
86
+ - - "~>"
95
87
  - !ruby/object:Gem::Version
96
- version: '0'
97
- description: ''
88
+ version: '1.29'
89
+ description: Swap in really accurate citations using a wide variety of citation styles
90
+ to your Blacklight app
98
91
  email:
99
- - sandbej@linnbenton.edu
92
+ - sandbergja@gmail.com
100
93
  executables: []
101
94
  extensions: []
102
95
  extra_rdoc_files: []
103
96
  files:
97
+ - ".env"
98
+ - ".github/workflows/test.yml"
99
+ - ".internal_test_app/solr/conf/_rest_managed.json"
100
+ - ".internal_test_app/solr/conf/admin-extra.html"
101
+ - ".internal_test_app/solr/conf/currency.xml"
102
+ - ".internal_test_app/solr/conf/email_url_types.txt"
103
+ - ".internal_test_app/solr/conf/lang/contractions_ca.txt"
104
+ - ".internal_test_app/solr/conf/lang/contractions_fr.txt"
105
+ - ".internal_test_app/solr/conf/lang/contractions_ga.txt"
106
+ - ".internal_test_app/solr/conf/lang/contractions_it.txt"
107
+ - ".internal_test_app/solr/conf/lang/hyphenations_ga.txt"
108
+ - ".internal_test_app/solr/conf/lang/stemdict_nl.txt"
109
+ - ".internal_test_app/solr/conf/lang/stoptags_ja.txt"
110
+ - ".internal_test_app/solr/conf/lang/stopwords_ar.txt"
111
+ - ".internal_test_app/solr/conf/lang/stopwords_bg.txt"
112
+ - ".internal_test_app/solr/conf/lang/stopwords_ca.txt"
113
+ - ".internal_test_app/solr/conf/lang/stopwords_cz.txt"
114
+ - ".internal_test_app/solr/conf/lang/stopwords_da.txt"
115
+ - ".internal_test_app/solr/conf/lang/stopwords_de.txt"
116
+ - ".internal_test_app/solr/conf/lang/stopwords_el.txt"
117
+ - ".internal_test_app/solr/conf/lang/stopwords_en.txt"
118
+ - ".internal_test_app/solr/conf/lang/stopwords_es.txt"
119
+ - ".internal_test_app/solr/conf/lang/stopwords_eu.txt"
120
+ - ".internal_test_app/solr/conf/lang/stopwords_fa.txt"
121
+ - ".internal_test_app/solr/conf/lang/stopwords_fi.txt"
122
+ - ".internal_test_app/solr/conf/lang/stopwords_fr.txt"
123
+ - ".internal_test_app/solr/conf/lang/stopwords_ga.txt"
124
+ - ".internal_test_app/solr/conf/lang/stopwords_gl.txt"
125
+ - ".internal_test_app/solr/conf/lang/stopwords_hi.txt"
126
+ - ".internal_test_app/solr/conf/lang/stopwords_hu.txt"
127
+ - ".internal_test_app/solr/conf/lang/stopwords_hy.txt"
128
+ - ".internal_test_app/solr/conf/lang/stopwords_id.txt"
129
+ - ".internal_test_app/solr/conf/lang/stopwords_it.txt"
130
+ - ".internal_test_app/solr/conf/lang/stopwords_ja.txt"
131
+ - ".internal_test_app/solr/conf/lang/stopwords_lv.txt"
132
+ - ".internal_test_app/solr/conf/lang/stopwords_nl.txt"
133
+ - ".internal_test_app/solr/conf/lang/stopwords_no.txt"
134
+ - ".internal_test_app/solr/conf/lang/stopwords_pt.txt"
135
+ - ".internal_test_app/solr/conf/lang/stopwords_ro.txt"
136
+ - ".internal_test_app/solr/conf/lang/stopwords_ru.txt"
137
+ - ".internal_test_app/solr/conf/lang/stopwords_sv.txt"
138
+ - ".internal_test_app/solr/conf/lang/stopwords_th.txt"
139
+ - ".internal_test_app/solr/conf/lang/stopwords_tr.txt"
140
+ - ".internal_test_app/solr/conf/lang/userdict_ja.txt"
141
+ - ".internal_test_app/solr/conf/mapping-ISOLatin1Accent.txt"
142
+ - ".internal_test_app/solr/conf/protwords.txt"
143
+ - ".internal_test_app/solr/conf/schema.xml"
144
+ - ".internal_test_app/solr/conf/scripts.conf"
145
+ - ".internal_test_app/solr/conf/solrconfig.xml"
146
+ - ".internal_test_app/solr/conf/spellings.txt"
147
+ - ".internal_test_app/solr/conf/stopwords.txt"
148
+ - ".internal_test_app/solr/conf/stopwords_en.txt"
149
+ - ".internal_test_app/solr/conf/synonyms.txt"
150
+ - ".internal_test_app/solr/conf/update-script.js"
151
+ - ".internal_test_app/solr/conf/velocity/browse.vm"
152
+ - ".internal_test_app/solr/conf/velocity/dropit.js"
153
+ - ".internal_test_app/solr/conf/velocity/facet_doc_type.vm"
154
+ - ".internal_test_app/solr/conf/velocity/facet_text_shingles.vm"
155
+ - ".internal_test_app/solr/conf/velocity/facets.vm"
156
+ - ".internal_test_app/solr/conf/velocity/footer.vm"
157
+ - ".internal_test_app/solr/conf/velocity/head.vm"
158
+ - ".internal_test_app/solr/conf/velocity/hit.vm"
159
+ - ".internal_test_app/solr/conf/velocity/img/english_640.png"
160
+ - ".internal_test_app/solr/conf/velocity/img/france_640.png"
161
+ - ".internal_test_app/solr/conf/velocity/img/germany_640.png"
162
+ - ".internal_test_app/solr/conf/velocity/img/globe_256.png"
163
+ - ".internal_test_app/solr/conf/velocity/jquery.tx3-tag-cloud.js"
164
+ - ".internal_test_app/solr/conf/velocity/js/dropit.js"
165
+ - ".internal_test_app/solr/conf/velocity/js/jquery.autocomplete.js"
166
+ - ".internal_test_app/solr/conf/velocity/js/jquery.tx3-tag-cloud.js"
167
+ - ".internal_test_app/solr/conf/velocity/layout.vm"
168
+ - ".internal_test_app/solr/conf/velocity/macros.vm"
169
+ - ".internal_test_app/solr/conf/velocity/mime_type_lists.vm"
170
+ - ".internal_test_app/solr/conf/velocity/results.vm"
171
+ - ".internal_test_app/solr/conf/velocity/results_list.vm"
172
+ - ".internal_test_app/solr/conf/xslt/example.xsl"
173
+ - ".internal_test_app/solr/conf/xslt/example_atom.xsl"
174
+ - ".internal_test_app/solr/conf/xslt/example_rss.xsl"
175
+ - ".internal_test_app/solr/conf/xslt/luke.xsl"
176
+ - ".rubocop.yml"
177
+ - ".rubocop_todo.yml"
178
+ - Dockerfile
179
+ - Gemfile
180
+ - LICENSE.md
104
181
  - README.md
182
+ - Rakefile
105
183
  - app/controllers/blacklight/citeproc/citation_controller.rb
106
184
  - app/models/concerns/blacklight/document/bibtex.rb
107
185
  - app/views/blacklight/citeproc/citation/print_single.html.erb
186
+ - bin/entrypoint.sh
108
187
  - blacklight-citeproc.gemspec
109
188
  - config/locales/blacklight-citeproc.en.yml
110
189
  - config/routes.rb
190
+ - docker-compose.yml
111
191
  - lib/blacklight/citeproc.rb
112
192
  - lib/blacklight/citeproc/engine.rb
113
193
  - lib/blacklight/citeproc/version.rb
114
194
  - lib/generators/blacklight/citeproc/install_generator.rb
115
195
  homepage: https://github.com/sandbergja/blacklight-citeproc
116
196
  licenses:
117
- - Apache-2.0
197
+ - MIT
118
198
  metadata: {}
119
- post_install_message:
199
+ post_install_message:
120
200
  rdoc_options: []
121
201
  require_paths:
122
202
  - lib
@@ -124,16 +204,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
124
204
  requirements:
125
205
  - - ">="
126
206
  - !ruby/object:Gem::Version
127
- version: '0'
207
+ version: '2.7'
128
208
  required_rubygems_version: !ruby/object:Gem::Requirement
129
209
  requirements:
130
210
  - - ">="
131
211
  - !ruby/object:Gem::Version
132
212
  version: '0'
133
213
  requirements: []
134
- rubyforge_project:
135
- rubygems_version: 2.7.10
136
- signing_key:
214
+ rubygems_version: 3.3.12
215
+ signing_key:
137
216
  specification_version: 4
138
- summary: ''
217
+ summary: Generate and display citeproc citations in a Blacklight app
139
218
  test_files: []