qa_server 0.1.99

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +71 -0
  3. data/Gemfile +55 -0
  4. data/Gemfile.lock +411 -0
  5. data/LICENSE +201 -0
  6. data/README.md +187 -0
  7. data/Rakefile +18 -0
  8. data/app/assets/images/qa_server/LD4L-bg.png +0 -0
  9. data/app/assets/images/qa_server/cornell-reduced-white.svg +160 -0
  10. data/app/assets/images/qa_server/iowa-logo.png +0 -0
  11. data/app/assets/images/qa_server/samvera-fall-font1-1000w-light.png +0 -0
  12. data/app/assets/javascripts/qa_server.js +0 -0
  13. data/app/assets/stylesheets/qa_server/_authorities.scss +0 -0
  14. data/app/assets/stylesheets/qa_server/_check-status.scss +72 -0
  15. data/app/assets/stylesheets/qa_server/_footer.scss +20 -0
  16. data/app/assets/stylesheets/qa_server/_header.scss +51 -0
  17. data/app/assets/stylesheets/qa_server/_home-page.scss +15 -0
  18. data/app/assets/stylesheets/qa_server/_monitor-status.scss +13 -0
  19. data/app/assets/stylesheets/qa_server/_qa_server.scss +36 -0
  20. data/app/assets/stylesheets/qa_server/_styles.scss +27 -0
  21. data/app/assets/stylesheets/qa_server/_usage.scss +0 -0
  22. data/app/controllers/qa_server/authority_list_controller.rb +14 -0
  23. data/app/controllers/qa_server/authority_validation_controller.rb +77 -0
  24. data/app/controllers/qa_server/check_status_controller.rb +38 -0
  25. data/app/controllers/qa_server/homepage_controller.rb +8 -0
  26. data/app/controllers/qa_server/monitor_status_controller.rb +79 -0
  27. data/app/controllers/qa_server/usage_controller.rb +8 -0
  28. data/app/loggers/qa_server/scenario_logger.rb +84 -0
  29. data/app/models/qa_server/authority_scenario.rb +35 -0
  30. data/app/models/qa_server/authority_status.rb +18 -0
  31. data/app/models/qa_server/authority_status_failure.rb +7 -0
  32. data/app/models/qa_server/scenarios.rb +71 -0
  33. data/app/models/qa_server/search_scenario.rb +58 -0
  34. data/app/models/qa_server/term_scenario.rb +50 -0
  35. data/app/presenters/qa_server/authority_list_presenter.rb +22 -0
  36. data/app/presenters/qa_server/check_status_presenter.rb +96 -0
  37. data/app/presenters/qa_server/monitor_status_presenter.rb +108 -0
  38. data/app/services/qa_server/authority_lister_service.rb +31 -0
  39. data/app/services/qa_server/authority_loader_service.rb +38 -0
  40. data/app/services/qa_server/authority_validator_service.rb +41 -0
  41. data/app/services/qa_server/database_migrator.rb +70 -0
  42. data/app/services/qa_server/scenarios_loader_service.rb +57 -0
  43. data/app/validators/qa_server/scenario_validator.rb +134 -0
  44. data/app/validators/qa_server/search_scenario_validator.rb +84 -0
  45. data/app/validators/qa_server/term_scenario_validator.rb +42 -0
  46. data/app/views/layouts/qa_server.html.erb +65 -0
  47. data/app/views/qa_server/authority_list/index.html.erb +27 -0
  48. data/app/views/qa_server/check_status/index.html.erb +104 -0
  49. data/app/views/qa_server/homepage/index.html.erb +10 -0
  50. data/app/views/qa_server/monitor_status/index.html.erb +78 -0
  51. data/app/views/qa_server/usage/index.html.erb +106 -0
  52. data/app/views/shared/_footer.html.erb +24 -0
  53. data/config/locales/qa_server.en.yml +68 -0
  54. data/config/routes.rb +12 -0
  55. data/lib/generators/qa_server/assets_generator.rb +35 -0
  56. data/lib/generators/qa_server/config_generator.rb +31 -0
  57. data/lib/generators/qa_server/install_generator.rb +60 -0
  58. data/lib/generators/qa_server/models_generator.rb +18 -0
  59. data/lib/generators/qa_server/templates/config/authorities/linked_data/agrovoc_direct.json +69 -0
  60. data/lib/generators/qa_server/templates/config/authorities/linked_data/agrovoc_ld4l_cache.json +85 -0
  61. data/lib/generators/qa_server/templates/config/authorities/linked_data/dbpedia_direct.json +36 -0
  62. data/lib/generators/qa_server/templates/config/authorities/linked_data/dbpedia_ld4l_cache.json +83 -0
  63. data/lib/generators/qa_server/templates/config/authorities/linked_data/geonames_direct.json +68 -0
  64. data/lib/generators/qa_server/templates/config/authorities/linked_data/geonames_ld4l_cache.json +102 -0
  65. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_aat_ld4l_cache.json +109 -0
  66. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +72 -0
  67. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +81 -0
  68. data/lib/generators/qa_server/templates/config/authorities/linked_data/loc_direct.json +47 -0
  69. data/lib/generators/qa_server/templates/config/authorities/linked_data/locgenres_ld4l_cache.json +99 -0
  70. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_ld4l_cache.json +89 -0
  71. data/lib/generators/qa_server/templates/config/authorities/linked_data/locsubjects_ld4l_cache.json +82 -0
  72. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_ld4l_cache.json +70 -0
  73. data/lib/generators/qa_server/templates/config/authorities/linked_data/nalt_direct.json +32 -0
  74. data/lib/generators/qa_server/templates/config/authorities/linked_data/nalt_ld4l_cache.json +84 -0
  75. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +81 -0
  76. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +86 -0
  77. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_direct_validation.yml +9 -0
  78. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_ld4l_cache_validation.yml +9 -0
  79. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_validation.yml +9 -0
  80. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_direct_validation.yml +6 -0
  81. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_ld4l_cache_validation.yml +9 -0
  82. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_direct_validation.yml +9 -0
  83. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +41 -0
  84. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +115 -0
  85. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +9 -0
  86. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +15 -0
  87. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/loc_direct_validation.yml +25 -0
  88. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/loc_validation.yml +22 -0
  89. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +99 -0
  90. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +27 -0
  91. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +27 -0
  92. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_ld4l_cache_validation.yml +9 -0
  93. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_direct_validation.yml +6 -0
  94. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_ld4l_cache_validation.yml +9 -0
  95. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclc_fast_validation.yml +58 -0
  96. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +58 -0
  97. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +30 -0
  98. data/lib/generators/qa_server/templates/config/locales/qa_server.en.yml +9 -0
  99. data/lib/generators/qa_server/templates/db/migrate/20180313045551_create_cron_authority_status.rb.erb +9 -0
  100. data/lib/generators/qa_server/templates/db/migrate/20180508045549_rename_cron_authority_status_to_authority_status.rb.erb +5 -0
  101. data/lib/generators/qa_server/templates/db/migrate/20180508045551_create_authority_status_failure.rb.erb +15 -0
  102. data/lib/generators/qa_server/templates/qa_server.scss +5 -0
  103. data/lib/qa_server/engine.rb +19 -0
  104. data/lib/qa_server/version.rb +3 -0
  105. data/lib/qa_server.rb +6 -0
  106. data/lib/tasks/install.rake +8 -0
  107. data/lib/tasks/qa_server_tasks.rake +4 -0
  108. data/qa_server.gemspec +39 -0
  109. data/spec/.gitignore +1 -0
  110. data/spec/rails_helper.rb +2 -0
  111. data/spec/spec_helper.rb +283 -0
  112. data/spec/test_app_templates/Gemfile.extra +5 -0
  113. data/spec/test_app_templates/lib/generators/test_app_generator.rb +15 -0
  114. data/tasks/qa_server_dev.rake +16 -0
  115. metadata +275 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 13fb44a70963e0c7b5b43a1068673df8a978fa98
4
+ data.tar.gz: e5ad90e1aa1fc70b5c157da0f54541b2a2d5e044
5
+ SHA512:
6
+ metadata.gz: 47f9271225161b5a90de64f589e1b699ced386b1c11272e213743f21cf970d39f46e249dd12a4b612390332ad9daca954c300b93633cd1bfa7131bbc3ed2cf05
7
+ data.tar.gz: 4550a987b4ea1d3d36584c726ea19e5878a09e8d71532dbb2bbc35080840b7e76bb4ddef5ad195ff37e7912bdbad9c06619f2c0231ee0e6a54ecc28536c39543
data/.gitignore ADDED
@@ -0,0 +1,71 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ /tmp/*
17
+ !/log/.keep
18
+ !/tmp/.keep
19
+ rails.log
20
+ solr.log
21
+ fedora.log
22
+ redis.log
23
+ script/log
24
+
25
+ /node_modules
26
+ /yarn-error.log
27
+
28
+ .byebug_history
29
+
30
+ # Ignore vendor/cache
31
+ /vendor/cache
32
+ /vendor/bundle
33
+
34
+ # ignore development scripts
35
+ /devscript
36
+
37
+ # Ignore public documents, (compiled) assets, and sitemap
38
+ /public/documents
39
+ /public/assets
40
+ /public/sitemap.xml.gz
41
+
42
+ # ignore renderer file
43
+ # shows the template being rendered in the html source
44
+ config/initializers/renderer.rb
45
+
46
+ # ignore jetty
47
+ jetty
48
+
49
+ # ignore local coverage
50
+ coverage
51
+
52
+ # ignore rubocop reports
53
+ reports
54
+
55
+ # ignore persisting example file
56
+ /spec/examples.txt
57
+ .DS_Store
58
+
59
+ # from rails engine creation process
60
+ .bundle/
61
+ log/*.log
62
+ pkg/
63
+ test/dummy/db/*.sqlite3
64
+ test/dummy/db/*.sqlite3-journal
65
+ test/dummy/log/*.log
66
+ test/dummy/node_modules/
67
+ test/dummy/yarn-error.log
68
+ test/dummy/storage/
69
+ test/dummy/tmp/
70
+
71
+ .internal_test_app
data/Gemfile ADDED
@@ -0,0 +1,55 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ # Declare your gem's dependencies in qa_server.gemspec.
5
+ # Bundler will treat runtime dependencies like base dependencies, and
6
+ # development dependencies will be added by default to the :development group.
7
+ gemspec
8
+ # gem 'qa', github: 'samvera/questioning_authority', branch: 'min_context'
9
+
10
+ # Declare any dependencies that are still in development here instead of in
11
+ # your gemspec. These might include edge Rails or gems from your path or
12
+ # Git. Remember to move these dependencies to your gemspec before releasing
13
+ # your gem to rubygems.org.
14
+
15
+ # To use a debugger
16
+ # gem 'byebug', group: [:development, :test]
17
+
18
+ # rubocop:disable Bundler/DuplicatedGem
19
+ # BEGIN ENGINE_CART BLOCK
20
+ # engine_cart: 1.1.0
21
+ # engine_cart stanza: 0.10.0
22
+ # the below comes from engine_cart, a gem used to test this Rails engine gem in the context of a Rails app.
23
+ file = File.expand_path('Gemfile', ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path('.internal_test_app', File.dirname(__FILE__)))
24
+ if File.exist?(file)
25
+ begin
26
+ eval_gemfile file
27
+ rescue Bundler::GemfileError => e
28
+ Bundler.ui.warn '[EngineCart] Skipping Rails application dependencies:'
29
+ Bundler.ui.warn e.message
30
+ end
31
+ else
32
+ Bundler.ui.warn "[EngineCart] Unable to find test application dependencies in #{file}, using placeholder dependencies"
33
+
34
+ if ENV['RAILS_VERSION']
35
+ if ENV['RAILS_VERSION'] == 'edge'
36
+ gem 'rails', github: 'rails/rails'
37
+ ENV['ENGINE_CART_RAILS_OPTIONS'] = '--edge --skip-turbolinks'
38
+ else
39
+ gem 'rails', ENV['RAILS_VERSION']
40
+ end
41
+ end
42
+
43
+ case ENV['RAILS_VERSION']
44
+ when /^4.2/
45
+ gem 'coffee-rails', '~> 4.1.0'
46
+ gem 'responders', '~> 2.0'
47
+ gem 'sass-rails', '5.1.6'
48
+ when /^4.[01]/
49
+ gem 'sass-rails', '5.1.6'
50
+ end
51
+ end
52
+ # END ENGINE_CART BLOCK
53
+ # rubocop:enable Bundler/DuplicatedGem
54
+
55
+ eval_gemfile File.expand_path('spec/test_app_templates/Gemfile.extra', File.dirname(__FILE__)) unless File.exist?(file)
data/Gemfile.lock ADDED
@@ -0,0 +1,411 @@
1
+ GIT
2
+ remote: https://github.com/samvera/questioning_authority.git
3
+ revision: 7fc60a1a205430774d32cff9dea9993fe68fcb76
4
+ branch: min_context
5
+ specs:
6
+ qa (2.0.1)
7
+ activerecord-import
8
+ deprecation
9
+ faraday
10
+ nokogiri (~> 1.6)
11
+ rails (~> 5.0)
12
+ rdf
13
+
14
+ PATH
15
+ remote: /Users/elr37/Documents/__DEVELOPMENT__/LD4L/_LD4L3/qa_server/LD4P/sprint/qa_server
16
+ specs:
17
+ qa_server (0.1.99)
18
+ linkeddata
19
+ qa
20
+ rails (= 5.1.6)
21
+
22
+ GEM
23
+ remote: https://rubygems.org/
24
+ specs:
25
+ actioncable (5.1.6)
26
+ actionpack (= 5.1.6)
27
+ nio4r (~> 2.0)
28
+ websocket-driver (~> 0.6.1)
29
+ actionmailer (5.1.6)
30
+ actionpack (= 5.1.6)
31
+ actionview (= 5.1.6)
32
+ activejob (= 5.1.6)
33
+ mail (~> 2.5, >= 2.5.4)
34
+ rails-dom-testing (~> 2.0)
35
+ actionpack (5.1.6)
36
+ actionview (= 5.1.6)
37
+ activesupport (= 5.1.6)
38
+ rack (~> 2.0)
39
+ rack-test (>= 0.6.3)
40
+ rails-dom-testing (~> 2.0)
41
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
42
+ actionview (5.1.6)
43
+ activesupport (= 5.1.6)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
48
+ activejob (5.1.6)
49
+ activesupport (= 5.1.6)
50
+ globalid (>= 0.3.6)
51
+ activemodel (5.1.6)
52
+ activesupport (= 5.1.6)
53
+ activerecord (5.1.6)
54
+ activemodel (= 5.1.6)
55
+ activesupport (= 5.1.6)
56
+ arel (~> 8.0)
57
+ activerecord-import (0.25.0)
58
+ activerecord (>= 3.2)
59
+ activesupport (5.1.6)
60
+ concurrent-ruby (~> 1.0, >= 1.0.2)
61
+ i18n (>= 0.7, < 2)
62
+ minitest (~> 5.1)
63
+ tzinfo (~> 1.1)
64
+ addressable (2.5.2)
65
+ public_suffix (>= 2.0.2, < 4.0)
66
+ arel (8.0.0)
67
+ ast (2.4.0)
68
+ bcp47 (0.3.3)
69
+ i18n
70
+ better_errors (2.4.0)
71
+ coderay (>= 1.0.0)
72
+ erubi (>= 1.0.0)
73
+ rack (>= 0.9.0)
74
+ bindex (0.5.0)
75
+ bixby (1.0.0)
76
+ rubocop (~> 0.50, <= 0.52.1)
77
+ rubocop-rspec (~> 1.22, <= 1.22.2)
78
+ builder (3.2.3)
79
+ byebug (10.0.2)
80
+ capybara (2.18.0)
81
+ addressable
82
+ mini_mime (>= 0.1.3)
83
+ nokogiri (>= 1.3.3)
84
+ rack (>= 1.0.0)
85
+ rack-test (>= 0.5.4)
86
+ xpath (>= 2.0, < 4.0)
87
+ childprocess (0.9.0)
88
+ ffi (~> 1.0, >= 1.0.11)
89
+ coderay (1.1.2)
90
+ coffee-rails (4.2.2)
91
+ coffee-script (>= 2.2.0)
92
+ railties (>= 4.0.0)
93
+ coffee-script (2.4.1)
94
+ coffee-script-source
95
+ execjs
96
+ coffee-script-source (1.12.2)
97
+ concurrent-ruby (1.0.5)
98
+ connection_pool (2.2.2)
99
+ crass (1.0.4)
100
+ deprecation (1.0.0)
101
+ activesupport
102
+ diff-lcs (1.3)
103
+ ebnf (1.1.2)
104
+ rdf (>= 2.2, < 4.0)
105
+ sxp (~> 1.0)
106
+ engine_cart (2.0.1)
107
+ bundler (~> 1.5)
108
+ rails
109
+ equivalent-xml (0.6.0)
110
+ nokogiri (>= 1.4.3)
111
+ erubi (1.7.1)
112
+ execjs (2.7.0)
113
+ faraday (0.15.2)
114
+ multipart-post (>= 1.2, < 3)
115
+ ffi (1.9.25)
116
+ globalid (0.4.1)
117
+ activesupport (>= 4.2.0)
118
+ haml (5.0.4)
119
+ temple (>= 0.8.0)
120
+ tilt
121
+ hamster (3.0.0)
122
+ concurrent-ruby (~> 1.0)
123
+ htmlentities (4.3.4)
124
+ i18n (1.1.0)
125
+ concurrent-ruby (~> 1.0)
126
+ jbuilder (2.7.0)
127
+ activesupport (>= 4.2.0)
128
+ multi_json (>= 1.2)
129
+ json-ld (3.0.0)
130
+ multi_json (~> 1.12)
131
+ rdf (>= 2.2.8, < 4.0)
132
+ json-ld-preloaded (3.0.0)
133
+ json-ld (>= 2.2, < 4.0)
134
+ multi_json (~> 1.12)
135
+ rdf (~> 3.0)
136
+ ld-patch (0.3.3)
137
+ ebnf (~> 1.1)
138
+ rdf (>= 2.2, < 4.0)
139
+ rdf-xsd (>= 2.2, < 4.0)
140
+ sparql (>= 2.2, < 4.0)
141
+ sxp (~> 1.0)
142
+ link_header (0.0.8)
143
+ linkeddata (3.0.1)
144
+ equivalent-xml (~> 0.6)
145
+ json-ld (>= 2.2.1, < 4.0)
146
+ ld-patch (~> 0.3, >= 0.3.3)
147
+ nokogiri (~> 1.8)
148
+ nokogumbo (~> 1.5)
149
+ rdf (~> 3.0)
150
+ rdf-aggregate-repo (>= 2.2.1, < 4.0)
151
+ rdf-isomorphic (~> 3.0)
152
+ rdf-json (>= 2.2, < 4.0)
153
+ rdf-microdata (>= 2.2.3, < 4.0)
154
+ rdf-n3 (~> 3.0)
155
+ rdf-normalize (~> 0.3, >= 0.3.3)
156
+ rdf-rdfa (~> 3.0)
157
+ rdf-rdfxml (>= 2.2.1, < 4.0)
158
+ rdf-reasoner (~> 0.5.0)
159
+ rdf-tabular (>= 2.2.1, < 4.0)
160
+ rdf-trig (>= 2.2, < 4.0)
161
+ rdf-trix (>= 2.2.1, < 4.0)
162
+ rdf-turtle (~> 3.0, >= 3.0.1)
163
+ rdf-vocab (~> 3.0)
164
+ rdf-xsd (~> 3.0)
165
+ shex (~> 0.5, >= 0.5.2)
166
+ sparql (~> 3.0)
167
+ sparql-client (~> 3.0)
168
+ listen (3.1.5)
169
+ rb-fsevent (~> 0.9, >= 0.9.4)
170
+ rb-inotify (~> 0.9, >= 0.9.7)
171
+ ruby_dep (~> 1.2)
172
+ loofah (2.2.2)
173
+ crass (~> 1.0.2)
174
+ nokogiri (>= 1.5.9)
175
+ mail (2.7.0)
176
+ mini_mime (>= 0.1.1)
177
+ method_source (0.9.0)
178
+ mini_mime (1.0.1)
179
+ mini_portile2 (2.3.0)
180
+ minitest (5.11.3)
181
+ multi_json (1.13.1)
182
+ multipart-post (2.0.0)
183
+ net-http-persistent (3.0.0)
184
+ connection_pool (~> 2.2)
185
+ nio4r (2.3.1)
186
+ nokogiri (1.8.4)
187
+ mini_portile2 (~> 2.3.0)
188
+ nokogumbo (1.5.0)
189
+ nokogiri
190
+ parallel (1.12.1)
191
+ parser (2.5.1.2)
192
+ ast (~> 2.4.0)
193
+ powerpack (0.1.2)
194
+ public_suffix (3.0.3)
195
+ puma (3.12.0)
196
+ rack (2.0.5)
197
+ rack-test (1.1.0)
198
+ rack (>= 1.0, < 3)
199
+ rails (5.1.6)
200
+ actioncable (= 5.1.6)
201
+ actionmailer (= 5.1.6)
202
+ actionpack (= 5.1.6)
203
+ actionview (= 5.1.6)
204
+ activejob (= 5.1.6)
205
+ activemodel (= 5.1.6)
206
+ activerecord (= 5.1.6)
207
+ activesupport (= 5.1.6)
208
+ bundler (>= 1.3.0)
209
+ railties (= 5.1.6)
210
+ sprockets-rails (>= 2.0.0)
211
+ rails-dom-testing (2.0.3)
212
+ activesupport (>= 4.2.0)
213
+ nokogiri (>= 1.6)
214
+ rails-html-sanitizer (1.0.4)
215
+ loofah (~> 2.2, >= 2.2.2)
216
+ railties (5.1.6)
217
+ actionpack (= 5.1.6)
218
+ activesupport (= 5.1.6)
219
+ method_source
220
+ rake (>= 0.8.7)
221
+ thor (>= 0.18.1, < 2.0)
222
+ rainbow (3.0.0)
223
+ rake (12.3.1)
224
+ rb-fsevent (0.10.3)
225
+ rb-inotify (0.9.10)
226
+ ffi (>= 0.5.0, < 2)
227
+ rdf (3.0.2)
228
+ hamster (~> 3.0)
229
+ link_header (~> 0.0, >= 0.0.8)
230
+ rdf-aggregate-repo (2.2.1)
231
+ rdf (>= 2.2, < 4.0)
232
+ rdf-isomorphic (3.0.0)
233
+ rdf (~> 3.0)
234
+ rdf-json (2.2.0)
235
+ rdf (>= 2.2, < 4.0)
236
+ rdf-microdata (2.2.3)
237
+ htmlentities (~> 4.3)
238
+ nokogiri (~> 1.8)
239
+ rdf (>= 2.2.8, < 4.0)
240
+ rdf-xsd (>= 2.2, < 4.0)
241
+ rdf-n3 (3.0.0)
242
+ rdf (~> 3.0)
243
+ rdf-normalize (0.3.3)
244
+ rdf (>= 2.2, < 4.0)
245
+ rdf-rdfa (3.0.1)
246
+ haml (~> 5.0)
247
+ htmlentities (~> 4.3)
248
+ rdf (~> 3.0)
249
+ rdf-aggregate-repo (>= 2.2, < 4.0)
250
+ rdf-xsd (~> 3.0)
251
+ rdf-rdfxml (2.2.1)
252
+ htmlentities (~> 4.3)
253
+ rdf (>= 2.2, < 4.0)
254
+ rdf-rdfa (>= 2.2, < 4.0)
255
+ rdf-xsd (>= 2.2, < 4.0)
256
+ rdf-reasoner (0.5.1)
257
+ rdf (~> 3.0)
258
+ rdf-vocab (~> 3.0)
259
+ rdf-xsd (~> 3.0)
260
+ rdf-tabular (2.2.1)
261
+ addressable (~> 2.3)
262
+ bcp47 (~> 0.3, >= 0.3.3)
263
+ json-ld (>= 2.1, < 4.0)
264
+ rdf (>= 2.2, < 4.0)
265
+ rdf-vocab (>= 2.2, < 4.0)
266
+ rdf-xsd (>= 2.2, < 4.0)
267
+ rdf-trig (2.2.0)
268
+ ebnf (~> 1.0, >= 1.0.1)
269
+ rdf (>= 2.2, < 4.0)
270
+ rdf-turtle (>= 2.2, < 4.0)
271
+ rdf-trix (2.2.1)
272
+ rdf (>= 2.2, < 4.0)
273
+ rdf-turtle (3.0.1)
274
+ ebnf (~> 1.1)
275
+ rdf (~> 3.0)
276
+ rdf-vocab (3.0.3)
277
+ rdf (~> 3.0)
278
+ rdf-xsd (3.0.0)
279
+ rdf (~> 3.0)
280
+ rspec-activemodel-mocks (1.0.3)
281
+ activemodel (>= 3.0)
282
+ activesupport (>= 3.0)
283
+ rspec-mocks (>= 2.99, < 4.0)
284
+ rspec-core (3.8.0)
285
+ rspec-support (~> 3.8.0)
286
+ rspec-expectations (3.8.1)
287
+ diff-lcs (>= 1.2.0, < 2.0)
288
+ rspec-support (~> 3.8.0)
289
+ rspec-its (1.2.0)
290
+ rspec-core (>= 3.0.0)
291
+ rspec-expectations (>= 3.0.0)
292
+ rspec-mocks (3.8.0)
293
+ diff-lcs (>= 1.2.0, < 2.0)
294
+ rspec-support (~> 3.8.0)
295
+ rspec-rails (3.8.0)
296
+ actionpack (>= 3.0)
297
+ activesupport (>= 3.0)
298
+ railties (>= 3.0)
299
+ rspec-core (~> 3.8.0)
300
+ rspec-expectations (~> 3.8.0)
301
+ rspec-mocks (~> 3.8.0)
302
+ rspec-support (~> 3.8.0)
303
+ rspec-support (3.8.0)
304
+ rubocop (0.52.1)
305
+ parallel (~> 1.10)
306
+ parser (>= 2.4.0.2, < 3.0)
307
+ powerpack (~> 0.1)
308
+ rainbow (>= 2.2.2, < 4.0)
309
+ ruby-progressbar (~> 1.7)
310
+ unicode-display_width (~> 1.0, >= 1.0.1)
311
+ rubocop-rspec (1.22.2)
312
+ rubocop (>= 0.52.1)
313
+ ruby-progressbar (1.10.0)
314
+ ruby_dep (1.5.0)
315
+ rubyzip (1.2.1)
316
+ sass (3.5.7)
317
+ sass-listen (~> 4.0.0)
318
+ sass-listen (4.0.0)
319
+ rb-fsevent (~> 0.9, >= 0.9.4)
320
+ rb-inotify (~> 0.9, >= 0.9.7)
321
+ sass-rails (5.0.7)
322
+ railties (>= 4.0.0, < 6)
323
+ sass (~> 3.1)
324
+ sprockets (>= 2.8, < 4.0)
325
+ sprockets-rails (>= 2.0, < 4.0)
326
+ tilt (>= 1.1, < 3)
327
+ selenium-webdriver (3.14.0)
328
+ childprocess (~> 0.5)
329
+ rubyzip (~> 1.2)
330
+ shex (0.5.2)
331
+ ebnf (~> 1.1)
332
+ json-ld (>= 2.2, < 4.0)
333
+ json-ld-preloaded (>= 2.2, < 4.0)
334
+ rdf (>= 2.2, < 4.0)
335
+ rdf-xsd (>= 2.2, < 4.0)
336
+ sparql (>= 2.2, < 4.0)
337
+ sxp (~> 1.0)
338
+ sparql (3.0.1)
339
+ builder (~> 3.2)
340
+ ebnf (~> 1.1)
341
+ rdf (~> 3.0)
342
+ rdf-aggregate-repo (>= 2.2, < 4.0)
343
+ rdf-xsd (~> 3.0)
344
+ sparql-client (~> 3.0)
345
+ sxp (~> 1.0)
346
+ sparql-client (3.0.0)
347
+ net-http-persistent (>= 2.9, < 4)
348
+ rdf (~> 3.0)
349
+ sprockets (3.7.2)
350
+ concurrent-ruby (~> 1.0)
351
+ rack (> 1, < 3)
352
+ sprockets-rails (3.2.1)
353
+ actionpack (>= 4.0)
354
+ activesupport (>= 4.0)
355
+ sprockets (>= 3.0.0)
356
+ sqlite3 (1.3.13)
357
+ sxp (1.0.1)
358
+ rdf (>= 2.2, < 4.0)
359
+ temple (0.8.0)
360
+ thor (0.20.0)
361
+ thread_safe (0.3.6)
362
+ tilt (2.0.8)
363
+ turbolinks (5.2.0)
364
+ turbolinks-source (~> 5.2)
365
+ turbolinks-source (5.2.0)
366
+ tzinfo (1.2.5)
367
+ thread_safe (~> 0.1)
368
+ uglifier (4.1.18)
369
+ execjs (>= 0.3.0, < 3)
370
+ unicode-display_width (1.4.0)
371
+ web-console (3.6.2)
372
+ actionview (>= 5.0)
373
+ activemodel (>= 5.0)
374
+ bindex (>= 0.4.0)
375
+ railties (>= 5.0)
376
+ websocket-driver (0.6.5)
377
+ websocket-extensions (>= 0.1.0)
378
+ websocket-extensions (0.1.3)
379
+ xpath (3.1.0)
380
+ nokogiri (~> 1.8)
381
+
382
+ PLATFORMS
383
+ ruby
384
+
385
+ DEPENDENCIES
386
+ better_errors
387
+ bixby (~> 1.0.0)
388
+ byebug
389
+ capybara (~> 2.13)
390
+ coffee-rails (~> 4.2)
391
+ engine_cart (~> 2.0)
392
+ jbuilder (~> 2.5)
393
+ linkeddata
394
+ listen (>= 3.0.5, < 3.2)
395
+ puma (~> 3.7)
396
+ qa!
397
+ qa_server!
398
+ rails (~> 5.1.6)
399
+ rspec-activemodel-mocks (~> 1.0)
400
+ rspec-its (~> 1.1)
401
+ rspec-rails (~> 3.1)
402
+ sass-rails (~> 5.0)
403
+ selenium-webdriver
404
+ sqlite3
405
+ turbolinks (~> 5)
406
+ tzinfo-data
407
+ uglifier (>= 1.3.0)
408
+ web-console (>= 3.3.0)
409
+
410
+ BUNDLED WITH
411
+ 1.16.4