├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── app.rb ├── public └── favicon.png └── views ├── about.erb ├── index.erb ├── layout.erb └── search.erb /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.1.3 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ruby app.rb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/app.json -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/app.rb -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/public/favicon.png -------------------------------------------------------------------------------- /views/about.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/views/about.erb -------------------------------------------------------------------------------- /views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/views/index.erb -------------------------------------------------------------------------------- /views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/views/layout.erb -------------------------------------------------------------------------------- /views/search.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejasmanohar/quiztionary/HEAD/views/search.erb --------------------------------------------------------------------------------