umamahesh_nyros

Joined: 17 Jul 2007 Posts: 283 Location: Hyderabad
|
Posted: Tue Nov 08, 2011 10:46 am Post subject: open source jobs portal application in rails |
|
|
Hi Developers,
I have seen open source jobs portal in ruby on rails. Easy configuration just by running the few rake commands it make the complete application configured.
You can get the complete application form below gut url.
https://github.com/umamahesh-nyros/jobberrails
Few issues I have seen while made the application to run.
1). Issue with helper method 'flash_box'
def flash_box(text, options = {})
content_tag :div, :class => "flash #{options[:class]}" do
flash[:notice] +
link_to("Hide Message...", "#", :class => "close-text")
end
end
Need to change above method to
def flash_box(text, options = {})
content_tag :div, :class => "flash #{options[:class]}" do
text +
link_to("Hide Message...", "#", :class => "close-text")
end
end
2). Issue with 'location_at' method in job model. In one of the if condition
# return location if applicable
if self.location
@located_at = self.g.name
return @located_at
end
need to change
# return location if applicable
if self.location
@located_at = self.location.name
return @located_at
end
By making above two changes, I was able to run the application.
Let me know if you have any questions.
Thank You,
Uma Mahesh. |
|