├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bib_card.gemspec ├── bin ├── console └── setup ├── lib ├── bib_card.rb └── bib_card │ ├── author.rb │ ├── crawl_exception.rb │ ├── crawler.rb │ ├── db_pedia │ └── resource.rb │ ├── entity_not_found_exception.rb │ ├── getty │ ├── scope_note.rb │ ├── source.rb │ └── subject.rb │ ├── invalid_uri_exception.rb │ ├── person.rb │ ├── railtie.rb │ ├── uris.rb │ ├── version.rb │ └── wikidata │ └── entity.rb └── spec ├── bib_card └── person_spec.rb ├── bib_card_spec.rb ├── spec_helper.rb └── support ├── config.yml ├── dbpedia ├── picasso-films.json ├── picasso-influenced.json ├── picasso-influences.json ├── picasso-profile.json ├── pollan-films.json ├── pollan-influenced.json ├── pollan-influences.json ├── pollan-profile.json ├── stein-films.json ├── stein-influenced.json ├── stein-influences.json └── stein-profile.json ├── getty ├── picasso-note.json ├── pollan-note.json └── stein-note.json ├── viaf ├── LC-n78086005.xml ├── LC-n79006977.xml ├── LC-n85346809.xml └── LC-nb2007023806.xml └── wikidata ├── picasso-alma-maters.json ├── picasso-bio.json ├── picasso-notable-works.json ├── pollan-alma-maters.json ├── pollan-bio.json ├── pollan-notable-works.json ├── stein-alma-maters.json ├── stein-bio.json └── stein-notable-works.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --format documentation 3 | --color 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/Rakefile -------------------------------------------------------------------------------- /bib_card.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/bib_card.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/bib_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card.rb -------------------------------------------------------------------------------- /lib/bib_card/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/author.rb -------------------------------------------------------------------------------- /lib/bib_card/crawl_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/crawl_exception.rb -------------------------------------------------------------------------------- /lib/bib_card/crawler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/crawler.rb -------------------------------------------------------------------------------- /lib/bib_card/db_pedia/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/db_pedia/resource.rb -------------------------------------------------------------------------------- /lib/bib_card/entity_not_found_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/entity_not_found_exception.rb -------------------------------------------------------------------------------- /lib/bib_card/getty/scope_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/getty/scope_note.rb -------------------------------------------------------------------------------- /lib/bib_card/getty/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/getty/source.rb -------------------------------------------------------------------------------- /lib/bib_card/getty/subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/getty/subject.rb -------------------------------------------------------------------------------- /lib/bib_card/invalid_uri_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/invalid_uri_exception.rb -------------------------------------------------------------------------------- /lib/bib_card/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/person.rb -------------------------------------------------------------------------------- /lib/bib_card/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/railtie.rb -------------------------------------------------------------------------------- /lib/bib_card/uris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/uris.rb -------------------------------------------------------------------------------- /lib/bib_card/version.rb: -------------------------------------------------------------------------------- 1 | module BibCard 2 | VERSION = "0.7.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/bib_card/wikidata/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/lib/bib_card/wikidata/entity.rb -------------------------------------------------------------------------------- /spec/bib_card/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/bib_card/person_spec.rb -------------------------------------------------------------------------------- /spec/bib_card_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/bib_card_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/config.yml -------------------------------------------------------------------------------- /spec/support/dbpedia/picasso-films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/picasso-films.json -------------------------------------------------------------------------------- /spec/support/dbpedia/picasso-influenced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/picasso-influenced.json -------------------------------------------------------------------------------- /spec/support/dbpedia/picasso-influences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/picasso-influences.json -------------------------------------------------------------------------------- /spec/support/dbpedia/picasso-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/picasso-profile.json -------------------------------------------------------------------------------- /spec/support/dbpedia/pollan-films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/pollan-films.json -------------------------------------------------------------------------------- /spec/support/dbpedia/pollan-influenced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/pollan-influenced.json -------------------------------------------------------------------------------- /spec/support/dbpedia/pollan-influences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/pollan-influences.json -------------------------------------------------------------------------------- /spec/support/dbpedia/pollan-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/pollan-profile.json -------------------------------------------------------------------------------- /spec/support/dbpedia/stein-films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/stein-films.json -------------------------------------------------------------------------------- /spec/support/dbpedia/stein-influenced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/stein-influenced.json -------------------------------------------------------------------------------- /spec/support/dbpedia/stein-influences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/stein-influences.json -------------------------------------------------------------------------------- /spec/support/dbpedia/stein-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/dbpedia/stein-profile.json -------------------------------------------------------------------------------- /spec/support/getty/picasso-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/getty/picasso-note.json -------------------------------------------------------------------------------- /spec/support/getty/pollan-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/getty/pollan-note.json -------------------------------------------------------------------------------- /spec/support/getty/stein-note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/getty/stein-note.json -------------------------------------------------------------------------------- /spec/support/viaf/LC-n78086005.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/viaf/LC-n78086005.xml -------------------------------------------------------------------------------- /spec/support/viaf/LC-n79006977.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/viaf/LC-n79006977.xml -------------------------------------------------------------------------------- /spec/support/viaf/LC-n85346809.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/viaf/LC-n85346809.xml -------------------------------------------------------------------------------- /spec/support/viaf/LC-nb2007023806.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/viaf/LC-nb2007023806.xml -------------------------------------------------------------------------------- /spec/support/wikidata/picasso-alma-maters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/picasso-alma-maters.json -------------------------------------------------------------------------------- /spec/support/wikidata/picasso-bio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/picasso-bio.json -------------------------------------------------------------------------------- /spec/support/wikidata/picasso-notable-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/picasso-notable-works.json -------------------------------------------------------------------------------- /spec/support/wikidata/pollan-alma-maters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/pollan-alma-maters.json -------------------------------------------------------------------------------- /spec/support/wikidata/pollan-bio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/pollan-bio.json -------------------------------------------------------------------------------- /spec/support/wikidata/pollan-notable-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/pollan-notable-works.json -------------------------------------------------------------------------------- /spec/support/wikidata/stein-alma-maters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/stein-alma-maters.json -------------------------------------------------------------------------------- /spec/support/wikidata/stein-bio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/stein-bio.json -------------------------------------------------------------------------------- /spec/support/wikidata/stein-notable-works.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UW-Madison-Library/bibcard/HEAD/spec/support/wikidata/stein-notable-works.json --------------------------------------------------------------------------------