├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.rdoc ├── Rakefile ├── lib ├── answer.rb ├── question.rb ├── stack_overflow.rb └── stack_overflow │ └── version.rb ├── spec ├── get_answers_spec.rb ├── get_questions_spec.rb ├── spec_helper.rb └── stack_overflow_spec.rb └── stack_overflow.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/lib/answer.rb -------------------------------------------------------------------------------- /lib/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/lib/question.rb -------------------------------------------------------------------------------- /lib/stack_overflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/lib/stack_overflow.rb -------------------------------------------------------------------------------- /lib/stack_overflow/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/lib/stack_overflow/version.rb -------------------------------------------------------------------------------- /spec/get_answers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/spec/get_answers_spec.rb -------------------------------------------------------------------------------- /spec/get_questions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/spec/get_questions_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/stack_overflow_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/spec/stack_overflow_spec.rb -------------------------------------------------------------------------------- /stack_overflow.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RookieOne/StackOverflow-API/HEAD/stack_overflow.gemspec --------------------------------------------------------------------------------