# File lib/ohai/dsl/plugin/versionvi.rb, line 35
        def name
          # Ohai V6 doesn't have any name specification for plugins. 
          # So we are using the partial path to infer the name of the plugin
          partial_path = Pathname.new(@source).relative_path_from(Pathname.new(@plugin_dir_path)).to_s
          partial_path.chomp(".rb").gsub("/", "::")
        end