Blog (rails)
Using Inherited Resources is an excellent way to reduce the amount of repetition in your controllers. But what about views? A lot of times resources share the same views, so why not DRY ‘em up using Inherited Resources Views!
Go check out the code! :-)
I am extremely happy that my patch was accepted, so I am now one of the 1600 odd people who have contributed to the Rails project! :D
Introduction
ActiveRecord is without doubt the de facto ORM library for Rails and many Ruby web frameworks. Many developers however, do not like database migrations and prefer to use DSL for data mapping. Datamappify is created with the sole purpose of getting rid of the DB migration headaches.
Why Not DB Migrations?
Well, depending on your specific project, DB migrations might create more trouble than it’s worth. Besides, your code is already version controlled, so why create a separate versi...
Sometimes we would want to throttle certain application actions. For instance, a user should only be allowed to send x amount of emails to other members of the site in order to reduce the spam risk.
Since this is a quite common task, I thought I might as well make it as a Rails plugin for better code reusability.
I am now releasing Action Throttler, an easy to use Rails plugin to quickly throttle application actions based on configurable duration and limit. Go check out the code now! :)
There ...
Yesterday we have launched the new design of Creattica. It runs well during the testing and staging phase, unfortunately the server quickly became overloaded and unresponsive after the relaunch was made public.
The site was running fine with its old design, but because the new design has many added features such as search filters, followers and more, system resources were very quickly drained.
After some optimisation of the database (which itself has increased the site performance by up to 300%...
A simple Google search will reveal that there are a number of different App_Config plugins for Rails. After comparing them side by side, I have decided to use the one by Christopher J. Bottaro.
It features:
- simple YAML config files
- config files support ERB
- config files support inheritance
- access config information via convenient object member notation
I just fixed a bug last night (which was pulled in to the main repository) where it could throw errors when used as a Rails plug...
So you were wondering why some of your model attributes weren’t updating properly? Well, it is perhaps because the db schema has changed but the changed schema has not been passed onto ActiveRecord, as is often the case in DB migration.
Taken from the ActiveRecord documentation:
Resets all the cached information about columns, which will cause them to be reloaded on the next request.
The most common usage pattern for this method is probably in a migration, when just after creating a table you ...
It was confirmed that DataMapper is incorrectly setting table names in SQL JOINs.
So for instance, the following code would generate an SQL error:
type.jobs.all(:"country.name".like => "%#{params[:location]}%")
There is a workaround, however the workaround requires manual looping of the dataset thus produces N+1 queries.
type.jobs.all.reject do |job|
! job.country.name.downcase.include?(params[:location].downcase)
end
But at least it works. ;)
It has been confirmed by DataMapper’s core developer Martin Gamsjaeger (snusnu) that it is a bug.
In short, created_[at|on] can be manually overridden, but updated_[at|on] cannot.
The workaround is simple, do it in two steps, for example:
job = Job.create(
title: "Web Developer",
created_at: Time.now - 2
)
job.update!(updated_at: Time.now - 1)
Please check the bug ticket to see when it’s getting fixed.
If you are using rake spec to run the specs. Try using spec spec instead! It avoids doing some preliminary tasks and therefore is quicker to execute.
You can verify the difference using Unix’s time command, i.e. time spec spec and time rake spec.