module VueApp::Core::Helpers::Build

Add build method related to @env

Public Instance Methods

build() click to toggle source

Build method @param [String] str

# File lib/vueapp/core/helpers/build.rb, line 10
def build
  case @env
  when :production then build_production
  when :development then build_dev
  when :test then build_test
  else
    build_dev
  end
end