Would also be good if I could also find the top questions/answers in a particular tag - i.e. questions tagged with Ruby or PHP.
Per the docs the only thing I can see that will return questions in a particular tag is FAQs by tag.
There anyway for me to retrieve just the questions & answers in a specific tag?
Serel::Question.search.tagged('Ruby').pagesize(10).sort('votes'). But answers won't allow thesearchmethod for whatever reason. Also, how do I receive more results than justpagesize(100)? Once I try going to101it returns0. I also triedhas_moreand that didn't work. For instance, I was trying to retrieve all the tags by doingSerel::Tag.totaland that returnedNoMethodError: undefined method 'total' for #<Serel::Relation:0x007f8d53a8fab0>– marcamillion Feb 20 '13 at 23:48/questionsor/searchyou can addquestion.answersto your filter to get the answers along with the question (as they're not included in the default filter)..totallikewise isn't included by default. Maximum pagesize is 100, if you need more than 100 results you have to make multiple requests. – Kevin Montrose Feb 21 '13 at 18:17