RubyFlow The Ruby and Rails community linklog

×

The Ruby and Rails community linklog

Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!

Submit a post

You can use basic HTML markup (e.g. <a>) or Markdown.
Note that your post may be edited to suit the format of the site.

As you are not logged in, you will be
directed via GitHub to signup or sign in

Post Preview

Note: Only the first pargraph is shown on the front page and overly long paragraphs may be broken up.

Padrino is a full-stack web framework wrapped around Sinatra

Padrino is a modular ruby web framework built upon the excellent Sinatra Microframework. Padrino was created to make it fun and easy to code more advanced web applications while still adhering to the spirit that makes Sinatra great! It provides a full set of standardized view helpers, an enhanced router, i18n localization, a Django-esque admin interface, generators, mountable applications and much more. Get started by reading our guides, viewing our screencast, or checking out the github repo for more information!

MongoSwitter - Rails style architecture for Sinatra application instead one-fil…
That’s pretty interesting mikhailov. A very similar architecture and toolkit ca…
Unless I’m missing something, isn’t Padrino’s Admin completely different from D…
@jd, the concept is the same and the layout updated at 2010 :D Consider that…

RubyKaigi 2010 (Japan's Ruby Conference) is open for talk proposals

RubyKaigi 2010 is the premiere Ruby conference in Japan. This year’s RubyKaigi will be from August 27-29 at Tsukuba International Conference Centre (the venue of RubyKaigi 2008”), just outside of Tokyo proper. RubyKaigi 2010 is open for talk proposals until April 28th. Talks on any topic related to Ruby are welcome: RubyKaigi 2010 Call for Presentation Proposals. RubyKaigi 2010 is also seeking “sub-event” organizers: RubyKaigi 2010 Call for Sub-Event Proposals.

Is this annual? I might try to make it in 2011 or later. I just found out my Tr…

Play! Framework....Rails for Java is finally a reality

Thought I’d share my thoughts on play! with you. I have around 10 years exp with Java, and around 4 with Ruby/Rails. I love Rails, but it does cause heartburn at times. The inability to easily track behavior definition, especially when plugins and Rails itself monkeypatches things, can make life difficult.

Eli, from the FAQ: We need a lot of scripts to manage Play applications, lik…
Plus, Eli, that’s a very mature, open-minded attitude.
Way too long on the FP. Here are the paras I’ve snipped: That's why I'm extr…
Peter, then why not set your 1000 char limit lower? :-)

Using Ruby To Solve Towers Of Hanoi Iteratively And Recursively

We can demonstrates the value of recursion by using Ruby to solve the Towers of Hanoi puzzle both iteratively and recursively. As a side-effect this shows how much more expressive the solution can be when done in Ruby.

This was pretty useful. I am learning Ruby and just to explore things, i was tr…

Jquery Full Calendar with Rails

Jquery Full Calendar provides a full-sized, drag & drop calendar. I decided to give it a try and utilize its hooks for user triggered events within our Rails application. Find more information about this small project here

http://jqueryui.com provides great solutions for full calendars and will let yo…
Added recurring events functionality to the demo app. …
http://fullcalendar.vinsol.com/ …
I tried full calendar in my rails application .. you too get working with fullc…

Devise + Imap = perfect for internal apps

Devise is a relativly new authentication framework for rails, using Warden (rack based authentication) and engines to create a flexible and fully featured setup for all sized apps. But what if you are building an app to be used internally in your office/organisation and you don’t have access to an LDAP server? Instead of recreating the wheel, use Devise with Imapable to create a simple shared authentication solution.

rack-legacy: A rack handler to run PHP/CGI alongside a Ruby/Rails App

A new rack module for running old legacy PHP/CGI code alongside your new shiny Ruby/Rails code. Ideal for development environments where you don’t want to install and setup and full Apache stack just to hack on a bit of code. A simple use Rack::Legacy::Php, 'public' and your Rack-based app will now be executing PHP out of your public directory and all you have to do is rackup your app. For Rails it is config.middleware.use Rack::Legacy::Php, Rails.public_path and now you can just ./script/server and you are done.

I didn’t see where this addresses the single-signon problem? Many legacy php a…
Loading older posts