Skip to content
Gant Laborde edited this page Aug 10, 2013 · 3 revisions

Project History Path

Return to Full Project History

SWITCH TO RAILS 4

  • installed rails4 (gem install rails)

  • Gemfile - updated rails version and removed assets group

  • changed application config to simply use bundler

  • did environment updates

    $ gem update

    $ rm Gemfile.lock

    $ bundle update

    $ bundle outdated

  • Added version tags to various gems to use rails 4

  • Removed attr_accessibles and moved to strong params approach

  • Renamed secret token

  • Removed vendor/plugins directory (no longer allowed)

--> Merged Branch

  • Fixed all tests to pass!
  • ADDED Travis-CI for continual integration testing - Format travis.yml

--> Project Point

  • Added a nice rake task to populate table with junk data via rake db:populate

--> Project Point

  • Coordinator refactored to be called Organization

--> Project Point

  • Added Member Model

    $ rails g model Member user:references organization:references event:references team:references admin:boolean

  • modified migration to enforce user association via :null => false

--> Project Point

  • New ALL EVENTS route/control/action added to top navigation. In this commit

--> COMMIT PROJECT

  • Added in Member Model to tie in to Organization, Event, and Team models for users. Populator and Tests TOO! for issue #5

--> Project Point

  • Trying out friendly_id for Organizations In this commit Has small deletion mistake on Evnts Model (woops)

--> COMMIT PROJECT

--> Project Point

Clone this wiki locally