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
b77e1ae6
Commit
b77e1ae6
authored
May 15, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't require DB conncetion in AttrEncrypted.
parent
25b09688
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
attr_encrypted_no_db_connection.rb
config/initializers/attr_encrypted_no_db_connection.rb
+29
-0
No files found.
config/initializers/attr_encrypted_no_db_connection.rb
0 → 100644
View file @
b77e1ae6
module
AttrEncrypted
module
Adapters
module
ActiveRecord
protected
def
attribute_instance_methods_as_symbols
# We add accessor methods of the db columns to the list of instance
# methods returned to let ActiveRecord define the accessor methods
# for the db columns
if
connection_established?
&&
table_exists?
columns_hash
.
keys
.
inject
(
super
)
{
|
instance_methods
,
column_name
|
instance_methods
.
concat
[
column_name
.
to_sym
,
:"
#{
column_name
}
="
]}
else
super
end
end
def
connection_established?
begin
# use with_connection so the connection doesn't stay pinned to the thread.
ActiveRecord
::
Base
.
connection_pool
.
with_connection
{
ActiveRecord
::
Base
.
connection
.
active?
}
rescue
Exception
false
end
end
end
end
end
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