Started to Implement D-A, and roles scaffold - Need to finish Test Suitemaster
commitd1926fb0d7b705dc7b8838017214e1bdf67ed609
authorMike Simkins <software@g7obs.com>
Thu, 2 Sep 2010 15:37:46 +0000 (2 16:37 +0100)
committerMike Simkins <software@g7obs.com>
Thu, 2 Sep 2010 15:37:46 +0000 (2 16:37 +0100)
tree00595566b57ea67d61f6fb3a3dc6b307762d7cf4
parent14ac3ef52434599b9eba6cdc1944c59ae26b9f85
Started to Implement D-A, and roles scaffold - Need to finish Test Suite
32 files changed:
Gemfile
Gemfile.lock
app/controllers/application_controller.rb
app/controllers/roles_controller.rb [new file with mode: 0644]
app/helpers/roles_helper.rb [new file with mode: 0644]
app/models/assignment.rb [new file with mode: 0644]
app/models/role.rb
app/models/user.rb
app/views/roles/_form.html.erb [new file with mode: 0644]
app/views/roles/edit.html.erb [new file with mode: 0644]
app/views/roles/index.html.erb [new file with mode: 0644]
app/views/roles/new.html.erb [new file with mode: 0644]
app/views/roles/show.html.erb [new file with mode: 0644]
config/routes.rb
db/migrate/20100901125550_users_have_and_belong_to_many_roles.rb [deleted file]
db/migrate/20100902151516_create_roles.rb [moved from db/migrate/20100901125355_create_cancan_role_migration.rb with 71% similarity]
db/migrate/20100902151904_create_assignments.rb [new file with mode: 0644]
db/migrate/20100902153434_generate_initial_roles.rb [new file with mode: 0644]
db/schema.rb
features/manage_roles.feature [new file with mode: 0644]
features/step_definitions/role_steps.rb [new file with mode: 0644]
features/support/paths.rb
spec/controllers/roles_controller_spec.rb [new file with mode: 0644]
spec/helpers/roles_helper_spec.rb [new file with mode: 0644]
spec/models/assignment_spec.rb [new file with mode: 0644]
spec/models/role_spec.rb [new file with mode: 0644]
spec/requests/roles_spec.rb [new file with mode: 0644]
spec/routing/roles_routing_spec.rb [new file with mode: 0644]
spec/views/roles/edit.html.erb_spec.rb [new file with mode: 0644]
spec/views/roles/index.html.erb_spec.rb [new file with mode: 0644]
spec/views/roles/new.html.erb_spec.rb [new file with mode: 0644]
spec/views/roles/show.html.erb_spec.rb [new file with mode: 0644]