rails new plugin mountable
This commit is contained in:
4
lib/tasks/vue_r_tasks.rake
Normal file
4
lib/tasks/vue_r_tasks.rake
Normal file
@ -0,0 +1,4 @@
|
||||
# desc "Explaining what the task does"
|
||||
# task :vue_r do
|
||||
# # Task goes here
|
||||
# end
|
6
lib/vue_r.rb
Normal file
6
lib/vue_r.rb
Normal file
@ -0,0 +1,6 @@
|
||||
require "vue_r/version"
|
||||
require "vue_r/engine"
|
||||
|
||||
module VueR
|
||||
# Your code goes here...
|
||||
end
|
5
lib/vue_r/engine.rb
Normal file
5
lib/vue_r/engine.rb
Normal file
@ -0,0 +1,5 @@
|
||||
module VueR
|
||||
class Engine < ::Rails::Engine
|
||||
isolate_namespace VueR
|
||||
end
|
||||
end
|
3
lib/vue_r/version.rb
Normal file
3
lib/vue_r/version.rb
Normal file
@ -0,0 +1,3 @@
|
||||
module VueR
|
||||
VERSION = "0.1.0"
|
||||
end
|
Reference in New Issue
Block a user