-
Notifications
You must be signed in to change notification settings - Fork 3
History July 2013
Return to Full Project History
-
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
- Pagination done by @daddymac Completing Issue 12
- Added Next 10 Events to front page.
- Made Organization page better with maps! Competing Issue 8
--> Project Point