[변수] # 로컬변수 : 소문자로 작성 bellstone # 인스턴스 변수 : 변수명 앞에 @ @bellstone # 클래스 변수 : 변수명 앞에 @@ @@bellstone # 글로벌 변수 : 변수명 앞에 $ $bellstone # 상수 : 대문자로 작성 BELLSTONE [프린트] # 출력 후 개행이 되지않습니다. print "bellstone" # 출력 후 개행이 됩니다. puts "BellStone" # 출력 후 개행이 되고 데이터 타입을 확인할 수 있도록 표시 됩니다. p "BELLSTONE" p 123456789 출처: https://itbellstone.tistory.com/54 [BELLSTONE]
참고한 가이드 : guides.rubyonrails.org/api_app.html rails new my_api --api Configure your application to start with a more limited set of middleware than normal. Specifically, it will not include any middleware primarily useful for browser applications (like cookies support) by default. Make ApplicationController inherit from ActionController::API instead of ActionController::Base. As with middleware,..