Skip to content

Commit

Permalink
update rails to 3.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
manxingxing committed Dec 6, 2013
1 parent 756ba45 commit f97b143
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,6 +1,6 @@
source 'http://rubygems.org'

gem 'rails'
gem 'rails', "3.2.16"
gem 'pg'
gem 'haml'
gem 'authlogic'
Expand Down
56 changes: 28 additions & 28 deletions Gemfile.lock
Expand Up @@ -2,38 +2,38 @@ GEM
remote: http://rubygems.org/
specs:
acl9 (0.12.0)
actionmailer (3.2.15)
actionpack (= 3.2.15)
actionmailer (3.2.16)
actionpack (= 3.2.16)
mail (~> 2.5.4)
actionpack (3.2.15)
activemodel (= 3.2.15)
activesupport (= 3.2.15)
actionpack (3.2.16)
activemodel (= 3.2.16)
activesupport (= 3.2.16)
builder (~> 3.0.0)
erubis (~> 2.7.0)
journey (~> 1.0.4)
rack (~> 1.4.5)
rack-cache (~> 1.2)
rack-test (~> 0.6.1)
sprockets (~> 2.2.1)
activemodel (3.2.15)
activesupport (= 3.2.15)
activemodel (3.2.16)
activesupport (= 3.2.16)
builder (~> 3.0.0)
activerecord (3.2.15)
activemodel (= 3.2.15)
activesupport (= 3.2.15)
activerecord (3.2.16)
activemodel (= 3.2.16)
activesupport (= 3.2.16)
arel (~> 3.0.2)
tzinfo (~> 0.3.29)
activerecord-import (0.4.1)
activerecord (>= 3.0)
activeresource (3.2.15)
activemodel (= 3.2.15)
activesupport (= 3.2.15)
activesupport (3.2.15)
activeresource (3.2.16)
activemodel (= 3.2.16)
activesupport (= 3.2.16)
activesupport (3.2.16)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
acts-as-taggable-on (2.4.1)
rails (>= 3, < 5)
arel (3.0.2)
arel (3.0.3)
authlogic (3.2.0)
activerecord (>= 3.0.0)
activesupport (>= 3.0.0)
Expand Down Expand Up @@ -87,7 +87,7 @@ GEM
haml (3.1.7)
hike (1.2.3)
hpricot (0.8.6)
i18n (0.6.5)
i18n (0.6.9)
journey (1.0.4)
jquery-rails (2.1.4)
railties (>= 3.0, < 5.0)
Expand All @@ -103,7 +103,7 @@ GEM
mime-types (~> 1.16)
treetop (~> 1.4.8)
method_source (0.8.1)
mime-types (1.25)
mime-types (1.25.1)
multi_json (1.8.2)
paperclip (3.5.2)
activemodel (>= 3.0.0)
Expand All @@ -126,17 +126,17 @@ GEM
rack
rack-test (0.6.2)
rack (>= 1.0)
rails (3.2.15)
actionmailer (= 3.2.15)
actionpack (= 3.2.15)
activerecord (= 3.2.15)
activeresource (= 3.2.15)
activesupport (= 3.2.15)
rails (3.2.16)
actionmailer (= 3.2.16)
actionpack (= 3.2.16)
activerecord (= 3.2.16)
activeresource (= 3.2.16)
activesupport (= 3.2.16)
bundler (~> 1.0)
railties (= 3.2.15)
railties (3.2.15)
actionpack (= 3.2.15)
activesupport (= 3.2.15)
railties (= 3.2.16)
railties (3.2.16)
actionpack (= 3.2.16)
activesupport (= 3.2.16)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
Expand Down Expand Up @@ -214,7 +214,7 @@ DEPENDENCIES
paperclip (~> 3.5.2)
pg
pg_search
rails
rails (= 3.2.16)
rb-inotify
ruby_parser (>= 3.1.2)
sass-rails (~> 3.2.3)
Expand Down
2 changes: 1 addition & 1 deletion app/models/user.rb
Expand Up @@ -50,7 +50,7 @@ def to_s
alias to_label to_s

def to_param
"#{id}-#{full_name.parameterize}"
"#{id}-#{full_name}".parameterize
end

def full_name
Expand Down

0 comments on commit f97b143

Please sign in to comment.