├── .hound.yml ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── data └── lorem.txt ├── lib └── questions.rb └── spec └── questions_spec.rb /.hound.yml: -------------------------------------------------------------------------------- 1 | ruby: 2 | config_file: .rubocop.yml 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/README.md -------------------------------------------------------------------------------- /data/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/data/lorem.txt -------------------------------------------------------------------------------- /lib/questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/lib/questions.rb -------------------------------------------------------------------------------- /spec/questions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makersacademy/ruby-refresher/HEAD/spec/questions_spec.rb --------------------------------------------------------------------------------