This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rake db:test:prepare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def create | |
render :text => params.inspect | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Dashboard | |
include ActiveModel::Validations | |
attr_accessor :start, :finish, :status | |
validates :start, :presence => true | |
validates :finish, :presence => true | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rails genarate scaffold user company name address:text picture | |
rails g gmaps4rails:copy_coffee | |
rails generate migration AddLatitudeAndLongitudeToUser latitude:float longitude:float |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
de: | |
activerecord: | |
attributes: | |
user: | |
confirmation_sent_at: Bestätigung gesendet am | |
confirmation_token: Bestätigungs-Token | |
confirmed_at: Bestätigt am | |
created_at: Erstellt am | |
current_password: Bisheriges Passwort | |
current_sign_in_at: Aktuelle Anmeldung vom |