Railslove around the world

We’re posting more and more stuff on our tumble blog “Railslove around the world”.

On the tumble we’re publishing all the good stuff we discover on the web, mostly ruby and web develoment related. So make sure to keep an eye on it. ;)

On the way to Rails 3 – a link list

Rails 3 is coming! The first beta release of the new version is right around the corner and it should be released today or tomorrow… the release notes are already in the master branch.
For me this feels like the release of Rails 1.0 and I’m so excited about all the new changes and the great new features.
Rails 3 is a lot about changing your mindset to make use of the all new features and concepts.

I’ve collected some reading material for you about Rails 3 and the upcoming changes. Since the final Rails 3 is not yet released excpect some of the stuff that’s mentioned to be changed or already have changed in the beta. But this is a good start to catch up with all the Rails awesomeness:

Must-reads

Actually all of these links are “must-reads” but for those of you with little time. Read at least these:

Router

ActiveRecord / ActiveModel

ActionMailer

Views / JavaScript

Controller

Rack

Gem, Plugins, Dependencies

Generators

I18n

Other great reading

General Rails

I’ll update this list with upcoming Rails 3 resources.

update:

1. Added link to I18n changes (thanks @ Carlos)

Rails Rumble 2009 – we’ve built nybbl.me

Nybbl.me - flavour learning

Phew! That was exciting. Rails Rumble 2009 – the 48 hour web application development competition- is over.

We teamed up with Rany (aka @purzelrakete) to build the best team I can imagine.
Our idea is as simple as powerful: (from your team description)

nybbl.me is a microlearning plattform. get twitter sized nibbles of information sent to you, like “you can parse json 2x as fast with the yajl-ruby gem. check it on github.”. choose a set, like “rails active record”, and get schooled over the next days.

create, share and remix nybbl sets, and get them pushed to your iphone. if you prefer, you can grab them per email or sms, too.

nybbl is learning, the easy way: sweat not included.

Think of your private teacher who teaches you in twitter sized micro lessons throughout the day.
Everyone can create those sets of lessons and publish them on the nybbl app store. Most of the sets are free but publishers can choose a price between 0.99$ and 9.99$.
nybbl.me will deliver these nybbls to every subscriber via iphone push notification, sms, twitter or email.

We will post more information and a screencast about nybbl.me in the next days.
For now you should check out nybbl.me and all the incredible apps that were built within the 2 days.

A huge thanks goes out to all the organizers and sponsors of the Rails Rumble for the awesome weekend.

Static content in your Rails application

Our heros over at thoughtbot.com blogged about static pages and their newly released Rails engine high_voltage. High Voltage helps you dealing with simple, stupid static content pages that nobody wants but everyone needs. ;) (With static pages I’m thinking of imprint, about us, etc.)

In our projects we had a similar solution but to edit the pages more easily and without the need to deploy the whole application we’re saving the content in the database.

Because the database part was missing in high_voltage but I’ve really liked the idea to extract that feature into a rails engine I’ve created a fork last night.

My fork checks if there is a valid template file in views/pages/ – if not it checks the Database and renders the views/pages/show template.

How to use it?

Installation

script/plugin install git://github.com/bumi/high_voltage.git

Create pages
this is up to you. ;)
You can add static files to your app/views/pages/ directory or create a database entry:

HighVoltage::Page.create(:title => "Hello world", :body => "High Voltage! High Voltage!")

That’s it!

For more information check the original thoughtbot post” – You should follow their blog anyway! – And have a look at the readme.

Hope you like my addons.
What are your solutions for static pages?

missed this years railsconf?

Have you missed this years Railsconf in Las Vegas like we did?
Thankfully the incredible Gregg Pollack from Railsenvy has again made a 34 minutes long video and shows us all the cool speakers and topics we have missed: ;)

For more cool videos and ruby stuff head over to the railsenvy blog

← Previous PageNext Page →