Skip to content

Commit b408902

Browse files
committedMar 22, 2012
Adds gravatar_hash on user creation and specs
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 06fffb4 commit b408902

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed
 

‎app/models/user.rb

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ class User < ActiveRecord::Base
22

33
has_many :activities
44
before_save :ensure_authentication_token
5+
before_save :ensure_gravatar_hash
56

67
# Include default devise modules. Others available are:
78
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
@@ -16,4 +17,8 @@ def bushido_extra_attributes(extra_attributes)
1617
self.email = extra_attributes["email"]
1718
end
1819

20+
def ensure_gravatar_hash
21+
self.gravatar_hash = Digest::MD5.hexdigest self.email
22+
end
23+
1924
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class AddGravatarHashToUsers < ActiveRecord::Migration
2+
def change
3+
add_column :users, :gravatar_hash, :text
4+
5+
end
6+
end

‎db/schema.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# It's strongly recommended to check this file into your version control system.
1313

14-
ActiveRecord::Schema.define(:version => 20120306163143) do
14+
ActiveRecord::Schema.define(:version => 20120322155347) do
1515

1616
create_table "activities", :force => true do |t|
1717
t.text "content"
@@ -68,6 +68,7 @@
6868
t.string "locale"
6969
t.datetime "created_at", :null => false
7070
t.datetime "updated_at", :null => false
71+
t.text "gravatar_hash"
7172
end
7273

7374
add_index "users", ["authentication_token"], :name => "index_users_on_authentication_token", :unique => true

‎spec/models/user_spec.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@
77
end
88
end
99

10-
it "user should have authentication token on creation" do
10+
it "should have authentication token on creation" do
1111
@user = Factory :user
1212
@user.authentication_token.should_not be_nil
1313
end
14+
15+
it "should have gravatar hash on creation" do
16+
@user = Factory :user
17+
@user.gravatar_hash.should_not be_nil
18+
end
1419
end

0 commit comments

Comments
 (0)
Please sign in to comment.