Skip to content
QuickSearch is a toolkit for easily creating custom bento-box search applications
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
ansible convert quicksearch core to rails gem engine (work in progress) Mar 30, 2016
app Merge pull request #26 from dsteelma-umd/searcher_cfg_nil_check Apr 26, 2019
bin intial commit Feb 17, 2016
config Merge branch 'AppVizClean' May 11, 2017
db update dependencies, update for rails 5.2 Feb 20, 2019
docs
lib update dependencies, update for rails 5.2 Feb 20, 2019
public intial commit Feb 17, 2016
solr_conf update ansible playbook to install solr to support best bets Mar 1, 2016
test Fixed "no_results_link" handling for I18N fallback Mar 29, 2019
vendor/assets Relocated d3.min.js and lodash.min.js to vendor/assets/javascripts fr… May 12, 2017
.gitignore add vcr cassettes, migrations, remove ruby 1.9 from travis build May 3, 2016
.travis.yml be more specific with travis ruby versions Jul 18, 2016
Capfile intial commit Feb 17, 2016
Gemfile
Gemfile.lock update dependencies Apr 5, 2019
Guardfile initial pass - tests now run, lots fail May 3, 2016
MIT-LICENSE intial commit Feb 17, 2016
README.md Avoid bundle exec for rails command Aug 24, 2017
Rakefile get rid of another warning May 3, 2016
Vagrantfile update ansible playbook to install solr to support best bets Mar 1, 2016
config.ru intial commit Feb 17, 2016
quick_search-core.gemspec

README.md

QuickSearch

Note: This code has recently been converted to a Rails Gem Engine. It is encouraged that you use this version, but if you are looking for the original release of QuickSearch as a standalone Rails project, it can be found here: https://github.com/NCSU-Libraries/quick_search/tree/pre-gem

Build Status Gem Version

QuickSearch is a customized federated search tool designed to connect people to a variety of library resources, services, and tools. QuickSearch is designed to complement and increase use of existing dedicated library resource discovery tools, such as the catalog, electronic resource search, and subject guides/portals, by directing people to them via an intuitive search interface. The aim of QuickSearch is to provide people with a quick and easy way to find the information they need.

For more information about NCSU Libraries' QuickSearch and the history of the project, see: http://www.lib.ncsu.edu/projects/quicksearch

For NCSU Libraries' implementation of QuickSearch, see: http://search.lib.ncsu.edu

Features

  • Single search with bento-box style results
  • Modular
    • swap out searcher modules and themes easily
    • choose from a variety of existing searchers or create your own
  • Best Bets
  • Search analytics

Disclaimer

This code has been extracted from the code we have been running in production, but still should be considered an early release.

Installation

The aim of QuickSearch is to make it very easy to get up and running.

Follow these instructions to install QuickSearch for development.

Prerequisites

  • Rails 5.0
  • Ruby 2.2.2+ or 2.3.x
  • MySQL development headers (mysql-devel package on CentOS, libmysqlclient-dev on Ubuntu)
  • qtwebkit development headers (qtwebkit-devel package on CentOS, libqtwebkit-dev on Ubuntu)

Instructions

Create a new Rails app, cd into the directory:
rails new my_app

...

cd my_app
Add quick_search-core gem to your Gemfile:
gem 'quick_search-core'

For development, use: gem 'quick_search-core', git: 'git://github.com/NCSU-Libraries/quick_search.git'

Run 'bundle install'
Run the QuickSearch installation generator:
bundle exec rails generate quick_search:install

The generator will install the generic QuickSearch theme, and some searchers that will work out of the box. For more information on further configuring QuickSearch, see: Configuring QuickSearch

Start the server:
rails s
QuickSearch will be available at http://localhost:3000/

Documentation

Find more in-depth documentation about QuickSearch in the docs directory

Customizing QuickSearch

QuickSearch is built in a modular way, and is easy to modify or extend. For more in-depth documentation about this, see:

Searchers

Here are a list of searchers that have been created for QuickSearch so far. Feel free to submit a pull request to add to this list.

Searcher Line to include in Gemfile to install Repository
arxiv gem 'quick_search-arxiv_searcher' quick_search-arxiv_searcher
wikipedia gem 'quick_search-wikipedia_searcher' quick_search-wikipedia_searcher
OpenLibrary gem 'quick_search-open_library_searcher' quick_search-open_library_searcher
Placeholder gem 'quick_search-placeholder_searcher' quick_search-placeholder_searcher
Summon gem 'quick_search-summon_searcher' quick_search-summon_searcher
NCSU Libraries' Catalog Coming soon
ContentDM gem 'quick_search-contentdm' quick_search-contentdm

Themes

Theme Line to include in Gemfile to install Repository
Generic Theme gem 'quick_search-generic_theme' quick_search-generic_theme

Running the Tests

In order to run the tests, you'll need to have Xvfb installed. If you are on CentOS, you can run:

sudo yum install org-x11-server-Xvfb

On Ubuntu/Debian:

sudo apt-get install xvfb

To set up the testing database, run:

RAILS_ENV=test bundle exec rake db:schema:load

Then, to run the tests:

bundle exec rake test

TODO

There are still some TODOs left in terms of extracting this code from our production codebase:

  • Improve documentation

Bugs, Feature Requests, etc.

To report bugs, or request features, please use GitHub issues. We also welcome pull requests!

Authors

Here are the people who have contributed code to this implementation of QuickSearch (listed in alphabetical order)

  • Kevin Beswick
  • Nushrat Khan
  • Cory Lown
  • Jason Ronallo
  • Ryan West

License

See MIT-LICENSE

You can’t perform that action at this time.