Skip to content

Instantly share code, notes, and snippets.

@tibbon
Created August 16, 2013 18:10
Show Gist options
  • Save tibbon/6252153 to your computer and use it in GitHub Desktop.
Save tibbon/6252153 to your computer and use it in GitHub Desktop.
My recent history
756 rails _3.2.13_ new raffler
757 cd raffler/
758 git status
759 ls
760 rails g controller main index --skip-javascript
761 rm app/assets/javascripts/main.js.coffee
762 subl .
763 git add .
764 git commit -m "Ran controller generator to create Main controller with an action of Index. Added Loading text to app views main index"
765 git add .
766 git commit -m "Updated routes to default to main#index"
767 git rm public/index.html
768 git commit -m "Removed public index"
769 rails
770 rails s
771 bundle
772 git add .
773 git commit -m "Added backbone-on-rails gem"
774 rails g backbone:install --javascript
775 git add .
776 git commit -m "Ran backbone installer"
777 rails s
778 gem list | grep underscore
779 gem list
780 rails s
781 rails g backbone:scaffold entry --javascript
782 git add .
783 git commit -m "Ran backbone entry scaffold comment with javascript"
784 bundle
785 git add .
786 git commit -m "Added Handlebars_assets gem"
787 rails s
788 git add .
789 git commit -m "Got basic router functionality working. Started history."
790 rails s
791 git add .
792 git add -u
793 git commit -m "Show Router view is working for alert"
794 git push origin master
795 git add .
796 git commit -m "Added render method for index view"
797 rails s
798 git add .
799 git commit -m "Index view should be calling template. Added handlebars to application.js"
800 git push origin master
801 rails s
802 git add .
803 git commit -m "Templates working"
804 git push origin master
805 rails g resource entry name winner:boolean --skip-javascripts
806 git add .
807 git commit -m "Ran entry resource generator"
808 git add .
809 git commit -m "Changed routes for scoping the api"
810 git push origin master
811 git add .
812 git commit -m "Built API in EntriesController"
813 git add .
814 git commit -m "Added Seeds"
815 rake db:seed
816 rake db:migrate
817 rake db:seed
818 rails s
819 rails s
820 git add .
821 git commit -m "Loading people dynamically from the server"
822 git push origin master
823 rails s
824 history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment