Wow, this article has been long overdue. I have been learning so much, but have not given this blog the priority it deserves. I refuse to use the excuse of “not enough time”
Even though , the full code is in my GitHub. This post is a reminder and a compilation of the resources , I used to complete my first webapp using Ruby on Rails.
The File Upload App currently allows a user to upload and save any file type, download the files belonging to that user and of course deleting the uploaded files if necessary. It also has a small admin mode, where the user with administrator privileges can see all files uploaded by all users and has the ability to delete both users and files uploaded.
I used the following to develop the complete WebApp
- 1. Twitter Bootstrap for UI etc.
- 2. Devise for authentication
- 3. Paperclip for handling uploads
- 4.Annotate for detailed model info
Listing All Users Registered Using Devise
rails generate controller user index show |
Add the following to your users_controller to get all the users.
def index @users = User.all end |

Considering the wide variety of email services currently available and the task of keeping all the moving parts of a start up running. For sending emails why not use one of the services already available ? What did you say … you want to save money ? ..you want do be super “lean” ? Well I wasted a lot of time trying to...
To get ”awesomeness” you will need to install the following:
Iterm2 – http://www.iterm2.com/#/section/home
Homebrew – http://mxcl.github.com/homebrew/
Htop - http://htop.sourceforge.net/
Iterm2 is basically a replacement/alternative for Terminal on the Mac OS X with mad cool features. A few of the...
As most of us know, Macs have a ”renowned” virus free reputation at least to the society at large.Mac’s aren’t immune to viruses and there is no reason to believe that they will now and forever be “virus free” .. unless they had some form of super dupper force field that magically protects...
Follow Me!