nishisuke_mountable_engine 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 226c6eed8092c9d256d84440baf4e0ea1b8c6779dc4097eb2ee0aa1c92d85f17
|
4
|
+
data.tar.gz: 6f142573276f7fc797e5bed332a9175c933392d5c7df97076acd22b6025f0b8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc4e89269ccca8bc8f280d2991581b0b9c459dec78f0479ea0d387f40309cd9976535943213abbb7f538ead9f4ae6d91ac67317eeebbe86159397bda6ce72ce3
|
7
|
+
data.tar.gz: ecea3f52e0ed5960ab08a0def9e83a6c2b1f693eca5b71fa5a92d93ec70c0069852791e1362e50da61a30dc74f6a983d0294b41773bdfd562a98b89b45160447
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require_dependency "nishisuke_mountable_engine/application_controller"
|
2
|
+
|
3
|
+
module NishisukeMountableEngine
|
4
|
+
class NishisukeController < ApplicationController
|
5
|
+
def root
|
6
|
+
render text: 'root'
|
7
|
+
end
|
8
|
+
|
9
|
+
def dashboard
|
10
|
+
render text: 'dashboard'
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/config/routes.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nishisuke_mountable_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nishisuke
|
@@ -52,6 +52,7 @@ files:
|
|
52
52
|
- app/assets/javascripts/nishisuke_mountable_engine/application.js
|
53
53
|
- app/assets/stylesheets/nishisuke_mountable_engine/application.css
|
54
54
|
- app/controllers/nishisuke_mountable_engine/application_controller.rb
|
55
|
+
- app/controllers/nishisuke_mountable_engine/nishisuke_controller.rb
|
55
56
|
- app/helpers/nishisuke_mountable_engine/application_helper.rb
|
56
57
|
- app/jobs/nishisuke_mountable_engine/application_job.rb
|
57
58
|
- app/mailers/nishisuke_mountable_engine/application_mailer.rb
|