Greg Bunia

Results 6 comments of Greg Bunia

The same problem exists in [email protected] Any suggestions, how to include pdf and images using IIIF presentataion 3 API? My current manifest containing three canvases with pdf, image and txt...

I worked around this issue by importing `TreeContext` and rendering it conditionally within `` element. ```javascript import React from 'react' import TreeContext from '@devtools-ds/tree/dist/esm/TreeContext' const Level = ({ parentId })...

Experiencing the same problem with similar setup: extension v0.8.0 running in devcontainer on Linux host, rake v12.3.3, ruby v.2.6.6. ```sh sh> echo $EXT_DIR /root/.vscode-server/extensions/connorshea.vscode-ruby-test-adapter-0.8.0/ruby sh> ls $EXT_DIR Gemfile Rakefile debug_minitest.rb...

I have similar issue: - using alternate Gemfile: `Gemfile.local` - with spring gem - when running `BUNDLE_GEMFILE=Gemfile.local bundle exec rails console` BUNDLE_GEMFILE is reset to Gemfile, thus I'm NOT able...

#374 In short: workaround for using different Gemfile (for example `Gemfile.local`) is to put this line in your `~/.spring.rb`: ``` ruby ENV['BUNDLE_GEMFILE']='Gemfile.local' if File.exist?('Gemfile.local') ```