Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
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
simple_controller
Commits
a0d7cf8e
Commit
a0d7cf8e
authored
Jan 05, 2018
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add single model support
parent
41049583
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
simple_controller_generator.rb
...nerators/simple_controller/simple_controller_generator.rb
+9
-0
No files found.
lib/generators/simple_controller/simple_controller_generator.rb
View file @
a0d7cf8e
...
@@ -97,6 +97,15 @@ class SimpleControllerGenerator < Rails::Generators::NamedBase
...
@@ -97,6 +97,15 @@ class SimpleControllerGenerator < Rails::Generators::NamedBase
nil
nil
end
end
# Second priority is the top namespace model, e.g. EngineName::Article for EngineName::Admin::ArticlesController
@resource_class
||=
begin
namespaced_classes
=
controller_class_name
.
split
(
'::'
)
namespaced_class
=
namespaced_classes
[
-
1
].
singularize
namespaced_class
.
constantize
rescue
NameError
nil
end
# Otherwise use the Group class, or fail
# Otherwise use the Group class, or fail
@resource_class
||=
begin
@resource_class
||=
begin
class_name
=
controller_class_name
.
classify
class_name
=
controller_class_name
.
classify
...
...
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