BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
82c8c42a
Commit
82c8c42a
authored
Apr 04, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move all serialization to marshall
parent
11e4709f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
24 deletions
+18
-24
event.rb
app/models/event.rb
+10
-1
gitlab_serialize.rb
app/models/gitlab_serialize.rb
+0
-23
merge_request.rb
app/models/merge_request.rb
+8
-0
No files found.
app/models/event.rb
View file @
82c8c42a
...
...
@@ -14,7 +14,8 @@ class Event < ActiveRecord::Base
belongs_to
:project
belongs_to
:target
,
:polymorphic
=>
true
serialize
:data
,
GitlabSerialize
.
new
# For Hash only
serialize
:data
scope
:recent
,
order
(
"created_at DESC"
)
scope
:code_push
,
where
(
:action
=>
Pushed
)
...
...
@@ -104,6 +105,14 @@ class Event < ActiveRecord::Base
delegate
:name
,
:email
,
:to
=>
:author
,
:prefix
=>
true
,
:allow_nil
=>
true
delegate
:title
,
:to
=>
:issue
,
:prefix
=>
true
,
:allow_nil
=>
true
delegate
:title
,
:to
=>
:merge_request
,
:prefix
=>
true
,
:allow_nil
=>
true
def
load
obj
Marshal
.
load
obj
end
def
dump
obj
Marshal
.
dump
obj
end
end
# == Schema Information
#
...
...
app/models/gitlab_serialize.rb
deleted
100644 → 0
View file @
11e4709f
class
GitlabSerialize
# Called to deserialize data to ruby object.
def
load
(
data
)
hash
=
parse_data
(
data
)
hash
=
HashWithIndifferentAccess
.
new
(
hash
)
if
hash
hash
end
def
parse_data
(
data
)
JSON
.
load
(
data
)
rescue
JSON
::
ParserError
begin
YAML
.
load
(
data
)
rescue
Psych
::
SyntaxError
nil
end
end
# Called to convert from ruby object to serialized data.
def
dump
(
obj
)
JSON
.
dump
(
obj
)
end
end
app/models/merge_request.rb
View file @
82c8c42a
...
...
@@ -144,6 +144,14 @@ class MergeRequest < ActiveRecord::Base
:author_id
=>
user_id
)
end
def
load
obj
Marshal
.
load
obj
end
def
dump
obj
Marshal
.
dump
obj
end
end
# == Schema Information
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment