Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
95037c9c
Commit
95037c9c
authored
Sep 14, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "monkey patch of Hash"
This reverts commit
6014019e
.
parent
16e44ad7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
config/initializers/hash_patch.rb
config/initializers/hash_patch.rb
+0
-15
No files found.
config/initializers/hash_patch.rb
deleted
100644 → 0
View file @
16e44ad7
# We need this patch because of json format error in the CI API:
# IOError (not opened for reading)
# Details: http://stackoverflow.com/questions/19808921/upgrade-to-rails-4-got-ioerror-not-opened-for-reading
# It happens because of ActiveSupport's monkey patch of json formatters
if
defined?
(
ActiveSupport
::
JSON
)
Hash
.
class_eval
do
def
to_json
(
*
args
)
super
(
args
)
end
def
as_json
(
*
args
)
super
(
args
)
end
end
end
\ No newline at end of file
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