# frozen_string_literal: true require_relative "powerstar/version" require "./common_data/Ganesh.rb" module Powerstar class Error < StandardError; end # Your code goes here... # module User < ApplicationRecord # # validates :name,presence:true # def self.ganesh # puts "ganesh method is executing" # end # end class Ganesh1 def self.ganesh puts "ganesh" end def self.root(a,b) return a*b end # end end