nishisuke_mountable_engine 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ad5b63de0ad5ef07845505afedf7e27fded23e8c8dfb0a7f718cfdc06e5a685
4
- data.tar.gz: d850b8de3e9434d7f4ca88a06328aeca6d103d4422d21321bd701a06f8931e1c
3
+ metadata.gz: 226c6eed8092c9d256d84440baf4e0ea1b8c6779dc4097eb2ee0aa1c92d85f17
4
+ data.tar.gz: 6f142573276f7fc797e5bed332a9175c933392d5c7df97076acd22b6025f0b8a
5
5
  SHA512:
6
- metadata.gz: fe4db44d60ef679b274268567a628b4a85a13c8a3691f9efe21175e5c149c41ba3f17f27b10d76519ffc98fb0bea43140bac77c2a1ffe66366ffe1825e713e1f
7
- data.tar.gz: 5c5476e4ab67b66c99a9438fae0f4d3a221287fa0d12f728ea4c45e861fc35b47d895c399b8dd5b4f6e991a005e267edde4d2bb593df3aa1c6c08c9a21cc550c
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
@@ -1,2 +1,4 @@
1
1
  NishisukeMountableEngine::Engine.routes.draw do
2
+ get 'nishisuke', to: 'nishisuke#root'
3
+ get '/', to: 'nishisuke#dashboard'
2
4
  end
@@ -1,3 +1,3 @@
1
1
  module NishisukeMountableEngine
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
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.0
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