Questions tagged [ruby]
Accompanies [app]s written in, or [library]s meant to be used from, the Ruby programming language
23 questions
3 votes
1 answer
296 views
Localhost test Stack App authentication: error 'redirect_uri' does not match
I tried the answer at "Can the redirect_uri contain port number"? But I am getting the following error: Provided redirect_uri does not match the redirect_uri this code was created with My access ...
4 votes
1 answer
715 views
`redirect_uri` is not under the registered domain for this application
I am trying to implement Stack Exchange authorization in my RoR application. But I get the error : redirect_uri is not under the registered domain for this application in Gemfile use: gem '...
3 votes
0 answers
136 views
Ruby SE Realtime: A library for watching the SE Realtime WebSocket
Screenshot / Code Snippet Documentation can be found in the GitHub repo: https://github.com/izwick-schachter/se-realtime About This is the library you need when you don't want to have to poll the ...
6 votes
0 answers
236 views
Ruby SE API: A Ruby wrapper for the Stack Exchange API
Screenshot / Code Snippet An excerpt from the README: First, initialize your client. You can omit the API key, but it's strongly recommended that you use one because it increases your request ...
4 votes
0 answers
317 views
ChatX: A ruby library for SE Chat
Screenshot / Code Snippet Here's some sample usage: cb = ChatBot.new(ENV['ChatXUsername'], ENV['ChatXPassword']) cb.login cb.gen_hooks do room 63296 do # Room ID of The Closet, a testing room for ...
5 votes
0 answers
90 views
se2jekyll.rb—export Stack Exchange posts for use on Jekyll blogs
Synopsis se2jekyll.rb site post_id Example (https://puzzling.meta.stackexchange.com/a/3020): $ se2jekyll.rb Meta.Puzzling 3020 > site_evaluations.md Republished at: http://jericson.github.io/2015/...
0 votes
1 answer
117 views
How to use the API to show the user reputation? [duplicate]
How do I use the Stack Exchange API to let my users enter their Stack Overflow URL and then extract their reputation and show it in a profile controller in Rails?
6 votes
0 answers
268 views
topstack.io - Learn from some of the most popular questions and answers on Stack Overflow (beta)
Screenshots http://topstack.io About It uses the most popular Stack Overflow questions, and sprinkles it with some spaced recall algorithms. The goal of this spaced recall is to help the student ...
5 votes
0 answers
282 views
Ruby library for Stack Exchange API
About I have written a Ruby library for accessing Stack Exchange questions, comments, badges and users. I am adding more methods. Repository https://github.com/raysrashmi/ruby-stackoverflow ...
1 vote
1 answer
107 views
How do I find a user by their `display_name`?
I am using Serel (the Ruby wrapper) and would like to be able to find a user by their display_name. As it stands right now, I can only find them via an ID - like Serel::User.find(1,2,3). I tried ...
1 vote
1 answer
198 views
Ruby wrapper for stackoverflow api - Serel, Pilha
Serel and pilha are good Ruby wrappers for the StackExchange API, but I am not able to access the body method for question and answers. The body method returns nil. I want the content of questions ...
3 votes
0 answers
134 views
OverflowMonthly
Screenshot / Code Snippet About OverflowMonthly is a monthly collection of the most popular questions on the Stack Exchange Network,published as ebooks(pdf and kindle format). People can now also ...
5 votes
0 answers
439 views
soDumpMe: a Ruby script co convert Data Dump XML to HTML
Screenshot / Code Snippet Screenshot coming soon! About This app was created to solve a request on Meta that the XML of the data dump is not readable. This app aims to convert the XML to HTML. ...
10 votes
2 answers
587 views
Serel: A Ruby Library with full support for API 2.0
Getting Started? Visit http://serel.tom.is for a whirlwind tour of the library. although it is still very much a tour in progress About Serel is Stack Exchange RElational Algebra, a fully featured ...
7 votes
0 answers
906 views
OBSOLETE - achivy.com, track all your statistics, reputation and badges in one place (now also supports coderwall)
About Time to collect your achivies Achivy adds some fun to your life. It supports Stack Overflow and all Stack Exchange applications, GitHub,Coderwall Ohloh as well as many other applications to your ...
0 votes
2 answers
211 views
Which of the Ruby libraries/wrappers for the Stack Exchange API is most complete?
There seem to be a number of Ruby libraries: Pilha or Rubyoverflow. Has anyone used either of these? What are their strengths and weaknesses? Which is more actively maintained?
7 votes
0 answers
428 views
geek score calculator - SO + Github on Rail
I am learning Rails and this is my first application built on Rails 2.3.8. http://g33k.heroku.com License: Free to use Code: http://github.com/utkarsh2012/g33k-score-calculator Platform: Hosted on ...
2 votes
5 answers
4k views
Get user data using curb/Curl in Ruby
I am trying to get user data in my Rails app. I am doing this: url_so = "http://api.stackoverflow.com/1.0/users/231917?type=jsontext" curl = Curl::Easy.new(url_so) curl.perform data_obj = ...
9 votes
2 answers
785 views
rubyoverflow 0.5
About rubyoverflow is an ruby wrapper for the Stack Exchange API. Status Middle of being rewritten. Handles /users/{id}/* routes along with /sites and /users. Documentation forthcoming Known Issues ...
6 votes
0 answers
365 views
OBSOLETE - CodeChirp - Twitter like post-aggregator and stalker webapplication
CodeChirp About CodeChirp is a twitter-like web-based question/answer/comment aggregator, that queries Stack Exchange sites, and shows the results as twitter-like posts. People can subscribe to users,...
6 votes
0 answers
672 views
Pilha - Ruby Wrapper to the Stack Exchange API
Warning: there's still a lot of work to be done. Edit: Pilha has been updated and now it supports most of the stack exchange api. There's still work to be done and the gem should be completely ...
13 votes
2 answers
694 views
analyticsoverflow - tracking question and answer counts over time
About Question, answer and comment counts for stackoverflow. The individual tag pages show a graph of the question counts over the last fortnight. Update: Now gathers and displays data for all 3 ...
6 votes
1 answer
546 views
Ruby Client Library
I've started a Ruby client library project on GitHub. There's no code there, but I will be hacking on it all weekend and welcome contributions. Sample Code client = StackOverflow::Client.new(version,...