Initial commit

This commit is contained in:
2025-09-26 22:45:07 -04:00
commit e29b31187c
61 changed files with 1726 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
require "laradi/version"
require "laradi/railtie"
# require 'dry-core'
# require 'dry-auto_inject'
module Laradi
# Your code goes here...
LaradiInject = {}
if method_defined?(:get_di_container)
container = get_di_container
LaradiInject = Dry::AutoInject(container)
end
end
+4
View File
@@ -0,0 +1,4 @@
module Laradi
class Railtie < ::Rails::Railtie
end
end
+3
View File
@@ -0,0 +1,3 @@
module Laradi
VERSION = "0.1.0"
end
+4
View File
@@ -0,0 +1,4 @@
# desc "Explaining what the task does"
# task :laradi do
# # Task goes here
# end