Description:
Update rails version to '3.2.19' to compensate with issue stated by nattee on pull request #4 of cafe-grader-judge-scripts, add view of list_all action
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r358:78c0ae82a8ed - - 2 files changed: 14 inserted, 1 deleted
@@ -0,0 +1,13 | |||
|
1 | + = user_title_bar(@user) | |
|
2 | + | |
|
3 | + %h1 Console: all messages | |
|
4 | + | |
|
5 | + = link_to '[active messages]', :action => 'list_all' | |
|
6 | + | |
|
7 | + %table | |
|
8 | + %tr | |
|
9 | + %th From | |
|
10 | + %th When | |
|
11 | + %th Message | |
|
12 | + %th | |
|
13 | + = render :partial => "short_message", :collection => @messages |
@@ -1,50 +1,50 | |||
|
1 | 1 | source 'https://rubygems.org' |
|
2 | 2 | |
|
3 |
- gem 'rails', '3.2. |
|
|
3 | + gem 'rails', '3.2.19' | |
|
4 | 4 | |
|
5 | 5 | # Bundle edge Rails instead: |
|
6 | 6 | # gem 'rails', :git => 'git://github.com/rails/rails.git' |
|
7 | 7 | |
|
8 | 8 | gem 'mysql2' |
|
9 | 9 | |
|
10 | 10 | # Gems used only for assets and not required |
|
11 | 11 | # in production environments by default. |
|
12 | 12 | group :assets do |
|
13 | 13 | gem 'sass-rails', '~> 3.2.3' |
|
14 | 14 | gem 'coffee-rails', '~> 3.2.1' |
|
15 | 15 | |
|
16 | 16 | # See https://github.com/sstephenson/execjs#readme for more supported runtimes |
|
17 | 17 | # gem 'therubyracer', :platforms => :ruby |
|
18 | 18 | |
|
19 | 19 | gem 'uglifier', '>= 1.0.3' |
|
20 | 20 | end |
|
21 | 21 | |
|
22 | 22 | gem 'prototype-rails' |
|
23 | 23 | |
|
24 | 24 | # To use ActiveModel has_secure_password |
|
25 | 25 | # gem 'bcrypt-ruby', '~> 3.0.0' |
|
26 | 26 | |
|
27 | 27 | # To use Jbuilder templates for JSON |
|
28 | 28 | # gem 'jbuilder' |
|
29 | 29 | |
|
30 | 30 | # Use unicorn as the app server |
|
31 | 31 | # gem 'unicorn' |
|
32 | 32 | |
|
33 | 33 | # Deploy with Capistrano |
|
34 | 34 | # gem 'capistrano' |
|
35 | 35 | |
|
36 | 36 | # To use debugger |
|
37 | 37 | # gem 'debugger' |
|
38 | 38 | |
|
39 | 39 | gem "haml" |
|
40 | 40 | gem "mail" |
|
41 | 41 | gem "rdiscount" |
|
42 | 42 | gem "test-unit" |
|
43 | 43 | gem 'will_paginate', '~> 3.0.0' |
|
44 | 44 | gem 'dynamic_form' |
|
45 | 45 | gem 'in_place_editing' |
|
46 | 46 | gem 'verification', :git => 'git://github.com/sikachu/verification.git' |
|
47 | 47 | |
|
48 | 48 | group :test, :development do |
|
49 | 49 | gem "rspec-rails", "~> 2.0" |
|
50 | 50 | end |
You need to be logged in to leave comments.
Login now