class AppDetection

typed: true

Public Class Methods

detect_rails_app(global_path) click to toggle source
# File server/redux-os/app/models/app_detection.rb, line 4
def self.detect_rails_app(global_path)
    AppDetectionAnalysis.create!(app_detection: self.find_or_create_by!(app_type: 'rails'), jester_os_global_path: global_path, app_type: 'rails')
end