Skip to content
Snippets Groups Projects
Commit 283f90fe authored by elijah's avatar elijah
Browse files

remove unused files

parent 6d2d382f
No related branches found
No related tags found
No related merge requests found
# desc "Explaining what the task does"
# task :tickets_module do
# # Task goes here
# end
require "tickets_module/version"
require "tickets_module/engine"
module Support
end
module TicketsModule
# Your code goes here...
class Engine < ::Rails::Engine
isolate_namespace Support
#
# make db:migrate automatically pull in engine migrations:
#
initializer :append_migrations do |app|
unless app.config.root.to_s =~ /test\/dummy/
app.config.paths["db/migrate"] << config.paths["db/migrate"].first
end
end
end
end
module Support
end
module TicketsModule
class Engine < ::Rails::Engine
isolate_namespace Support
#
# make db:migrate automatically pull in engine migrations:
#
initializer :append_migrations do |app|
unless app.config.root.to_s =~ /test\/dummy/
app.config.paths["db/migrate"] << config.paths["db/migrate"].first
end
end
end
end
module TicketsModule
VERSION = "0.1.0"
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment