Pixoo Sign Client for Ruby
Article URL: https://github.com/tenderlove/pixoo-rb Comments URL: https://news.ycombinator.com/item?id=46485629 Points: 6 Comments: 1...
Article URL: https://github.com/tenderlove/pixoo-rb Comments URL: https://news.ycombinator.com/item?id=46485629 Points: 6 Comments: 1...
!Cover image for Ruby 4 Has Landed 💎 — And It’s Bringing Giftshttps://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format=auto/http...
Ruby 프로그래밍 언어의 기본 문법과 개념을 알아봅니다. 파일 및 실행 ruby 파일 형식: 파일명.rb 실행 방법: ruby 파일명.rb 확장자가 rb가 아니어도 실행 가능 주석 ruby 한 줄 주석 =begin 여러 줄 주석 =end 줄바꿈 및 명령 구분 ruby 줄바꿈 puts...
예외 처리 Ruby에서 예외를 발생시키고 처리하는 기본적인 방법을 살펴봅니다. ruby def raise_exception puts 'I am before the raise.' raise 'An error has occured' puts 'I am after the raise' 실행되...
Ruby 블록Block Ruby의 블록Block은 메서드 호출과 함께 코드 블록을 전달하는 방법입니다. ruby def call_block puts 'Start of method' yield yield puts 'End of method' end call_block { puts 'In...
기본 클래스 ruby class Test puts :Test.object_id.to_s def test puts :test.object_id.to_s @test = 10 puts :test.object_id.to_s end end t = Test.new t.test 생성자와 인스턴스...
조건문 ruby s1 = 'Jonathan' s2 = 'Jonathan' s3 = s1 if s1 == s2 puts 'Both Strings have identical content' else puts 'Both Strings do not have identical content'...
파일 열기와 읽기 ruby File.open'p014constructs.rb', 'r' do |f1| while line = f1.gets puts line end end 파일 쓰기 ruby File.open'test.rb', 'w' do |f2| f2.puts 'Created by...
문자열 ruby 'a' 'a' 'a' + 'b' 'a'b' 'a' 3 => 'aaa' '2'.to_i => 2 문자열을 정수로 '2'.to_f => 2.0 문자열을 실수로 2.to_s => '2' 숫자를 문자열로 'a'.length => 1 .inspect 객체의 구조를 문자열로 변환...
Article URL: https://charm-ruby.dev/ Comments URL: https://news.ycombinator.com/item?id=46430558 Points: 6 Comments: 0...
Article URL: https://nesbitt.io/2025/12/25/cursed-bundler-using-go-get-to-install-ruby-gems.html Comments URL: https://news.ycombinator.com/item?id=46400927 Poi...
Article URL: https://type-ruby.github.io/ Comments URL: https://news.ycombinator.com/item?id=46395871 Points: 18 Comments: 0...