Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
5c9674fe
Commit
5c9674fe
authored
Jan 16, 2016
by
Cuong Tran
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #319 from ryanfox1985/develop
Added Active admin models.
parents
31fe4c5a
f03ac27b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
annotate_models.rb
lib/annotate/annotate_models.rb
+8
-1
No files found.
lib/annotate/annotate_models.rb
View file @
5c9674fe
...
...
@@ -9,7 +9,7 @@ module AnnotateModels
END_MARK
=
"== Schema Information End"
PATTERN
=
/^\r?\n?# (?:
#{
COMPAT_PREFIX
}
|
#{
COMPAT_PREFIX_MD
}
).*?\r?\n(#.*\r?\n)*(\r?\n)*/
MATCHED_TYPES
=
%w(test fixture factory serializer scaffold controller helper)
MATCHED_TYPES
=
%w(test fixture factory serializer scaffold controller
admin
helper)
# File.join for windows reverse bar compat?
# I dont use windows, can`t test
...
...
@@ -49,6 +49,9 @@ module AnnotateModels
# Controller files
CONTROLLER_DIR
=
File
.
join
(
"app"
,
"controllers"
)
# Active admin registry files
ACTIVEADMIN_DIR
=
File
.
join
(
"app"
,
"admin"
)
# Helper files
HELPER_DIR
=
File
.
join
(
"app"
,
"helpers"
)
...
...
@@ -121,6 +124,10 @@ module AnnotateModels
[
File
.
join
(
root_directory
,
CONTROLLER_DIR
,
"%PLURALIZED_MODEL_NAME%_controller.rb"
)
]
when
'admin'
[
File
.
join
(
root_directory
,
ACTIVEADMIN_DIR
,
"%MODEL_NAME%.rb"
)
]
when
'helper'
[
File
.
join
(
root_directory
,
HELPER_DIR
,
"%PLURALIZED_MODEL_NAME%_helper.rb"
)
...
...
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