Just a small update on Bort.
Bort Project Page
I decided to make a dedicated page for Bort, so I only have one place to keep up to date.
Open ID Authentication
I’ve integrated OpenID with RESTful Auth on Bort in the new version. I’ll be perfectly honest though, I’ve never actually set up OpenID before, so I’d appreciate if people could take a look at it and let me know if it sucks.
User Voice! Load Noises!
We’ve set up an account on User Voice so you guys can submit ideas and all that jazz to us, then we can act like power hungry sultans and deny your ideas.
Bort is Popular!
At this moment in time, we have 239 watchers on Github and are the 25th most popular project. Hooray for us.
(Possibly) Related Posts
If you found this post or anything else on this site of any use, then please take the time to recommend me on Working with Rails.

9 Responses to “Bort! Now with OpenID!”
Hi, I tried it yesterday from your 0.3 branch and it worked great. Thanks.
I might have to check this out; I’ve never been able to successfully integrate OpenID into my apps.
Your bort page doesn’t work J-Slice. Also, I fixed the iffy user migrations in bort/master.
Seems to work for me LL Phil J.
When I click your bort page link I get a firefox error page:
Redirect Loop
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
It’s somehow related to your javascript. I browse with noscript disabling javascript. Once I allowed jimneath.org I could follow the link. Even after I returned to blocking to jimneath.org. Strangeness.
Is Bort’s Asset Packager working on Git for the versioning of compressed base files? I just stumbled across Asset Packager and Borts integration and wondered if anyone had worked round the (as far as I’m aware) SVN only integration for managing different versions of the base collections….
Cheers men bort.
Just installed 1 week ago and started a new project with it, everything (that I used) works great.
I’m really thinking to use it for the rails rumble.
Hi all,
I’ve a problem with MySQL database:
If I try to execute the initial Rake db:migrate i got a method missing error.
After enabling –trace I’ve found the source of the error is in /app/models/user_observer.rb.
I’ve to rem both UserMailer.deliver_signup_notification(user) and UserMailer.deliver_activation(user) if user.recently_activated?
to have the migration working as expected.
With the defauld sqllite db All is working.
More, where can I find the SMTP settings?
Thank you for this great work!
user_observer.rb
————————
class UserObserver < ActiveRecord::Observer
def after_create(user)
#~ UserMailer.deliver_signup_notification(user)
end
def after_save(user)
#~ UserMailer.deliver_activation(user) if user.recently_activated?
end
end