0
I Use This!
Inactive

Commits : Listings

Analyzed about 13 hours ago. based on code collected about 18 hours ago.
Apr 23, 2023 — Apr 23, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Adding the UserMailer. More... over 15 years ago
Adding the Workling, and Spawn plugins. Workling is used to run tasks async through a number of different background task systems. Spawn is one of those, but so not for live use because of it's resource usage, only here for testing. Please, look into Starling, or RabbitMQ, and never use Spawn live. More... over 15 years ago
Removing mention of Shoulda in the development_gems.txt file, since Shoulda is no longer required. More... over 15 years ago
Adding the UsersController#create action. Now you are able to create users on the website, though the email activation is yet to be implemented. More... over 15 years ago
Adding locale support to the new user signup form. More... over 15 years ago
Adding some time and date, as well as number formats to the 'en' locale. More... over 15 years ago
Adding timezone support to the new user registration page. The default will be the setting for timezone, which defaults to Pacific time right now. More... over 15 years ago
Removing the requirement on Shoulda for testing. While Shoulda is nice for testing, and it really cuts down the code you have to write, when an error does happen you have such a massive stack to go through that it takes too much time to find out where things are failing. More... over 15 years ago
Rewriting the StringExtensionsTest to use only Test::Unit. More... over 15 years ago
Adding the UsersController#new method. Finally, you can almost save a user. More... over 15 years ago
Properly terminating the body's id attribute since it was an open string, and causing problems with some of the assertations being used in the controller testing. More... over 15 years ago
Adding the UsersController. More... over 15 years ago
Updating development_gems.txt to include FiveRuns Tuneup. More... over 15 years ago
Adding the Welcome controller which is the root controller. More... over 15 years ago
Removing the public/index.html file. More... over 15 years ago
Adding the base layout file. This is mainly being added now to support FiveRuns Tuneup. More... over 15 years ago
Adding Fiveruns Tuneup to the application. Yes, it's time to start building out controllers, so it's time to start profiling. More... over 15 years ago
Adding the before_validation method override for the User model to clean the login and email address, and strip the password and password_confirmation. More... over 15 years ago
Adding an extension to the String class which will 'clean' a string. Cleaning a string means stripping the whitespace from front and back of the string, removing all spaces within the string, and finally downcasing it. More... over 15 years ago
Adding a before_create callback to generate an activation_token if email_activation is enabled. If email_activation is not enabled, then the callback will add a activated_at date, and leave the activation_token blank. Also added a utility method (#activated?) to check if activation_token is blank? and if it is return true. More... over 15 years ago
Adding the beginning of the default settings to the project. First one is the main reason I broke my development cycle to add the plugin in the first place: email activation. More... over 15 years ago
Adding the settings migration to the project. More... over 15 years ago
Adding a plugin to manage global settings for the application. In general, I hate using plugins for a project that's open source, but this plugin deals with settings so well that I am making an exception. I am also making an exception to my general desire to keep the development cycles as tight as possible. More... over 15 years ago
Adding a before_save callback to generate a salt, and the password. More... over 15 years ago
Adding a couple of tests to make sure that passwords are required only when a new_record is present, or updating_password is set to true. More... over 15 years ago
Adding the validates_format_of validations to the User model. More... over 15 years ago
Adding the validates_uniqueness_of validations to the User model. More... over 15 years ago
Adding an attr_accessible to protect most fields from being updated with a mass-assignment. The only fields that are accessible are login, email, password, password_confirmation, language and timezone. More... over 15 years ago
Adding the validates_length_of validations to the User model. More... over 15 years ago
Adding validates_confirmation_of validation on the User model, for the password. More... over 15 years ago