Ruby
Ruby yorumlamalı, nesne-temelli bir betik programlama dilidir. Ruby değerli bir mücevherin adıdır ve bu ad ona yaratıcısı Yukihiro Matsumoto, (Matz) tarafından verilmiştir ve yayınlanma yılı 1995'tir. Tarihçesini burada bulabilirsiniz. Birçok özelliklerinin bir listesini de burada bulabilirsiniz.
Bu kitap birçok bölümden oluşuyor be sırasıyla okumanız tavsiye edilir. Başlangıç bölümü sisteminizde Ruby dilini nasıl kuracak ve kullanmaya başlayacağınızı anlatıyor. Ruby Temelleri dilin deyim yapısının ana özelliklerini gösteriyor. Ruby dili bölümü dilin dokümanları gibi organize edilmiştir. Mevcut modüller standart kütüphanelerin bir kısmını içeriyor. Orta seviye Ruby biraz daha gelişmiş başlıkları içeriyor. Her bölüm kendi içinde diğerlerinden bağımsız düşünülmüştür.
İçindekiler
[düzenle]Başlangıç
[düzenle]- Genel Bakış
- Ruby Kurulumu
- Ruby Editörler
- Notasyon Kuralları
- İnteraktif Mod
- Ruby Programları Oluşturmak
Ruby Temelleri
[düzenle]- Merhaba Dünya
- Stringler
- Alternatif String Yazımları
- here Dokümanlar
- ASCII
- Encoding
- Nesnelere giriş
- Temel yapılar
- Data types — numbers, strings, hashes and arrays
- Writing methods
- Classes and objects
- Exceptions
Ruby dili
[düzenle]- Söz Dizimi
- Kaynak
Mevcut Standard Kütüphane Modülleri
[düzenle]- BigDecimal gives you a way to have arbitrary precision Decimal style numbers. Never succumb to rounding errors again!
- Debugger gives you a way to step through debug your Ruby code.
- Distributed Ruby (DRb) gives you a way to make remote procedure calls against objects in a different VM.
- mkmf is a utility used to generate makefiles for ruby extensions.
- Mutex gives you a way to control thread concurrency.
- Net::HTTP gives you a way to download web pages.
- Open3 gives you a way to run a sub-process and have easy access to its I/O.
- OpenSSL is a wrapper to the OpenSSL (C) library, giving you access to secure socket connections.
- Pathname gives you an easy way to manipulate filenames and create/remove files.
- Profiler gives you a way to profile what is taking up the most time in your code.
- OpenURI gives you a way to download files using ruby.
- REXML is a way to parse XML in pure Ruby.
- Ripper gives you a way to parse pure Ruby code into an AST.
- Socket gives you access to Network connectivity.
- Tracer gives you a way to see which lines of your code are being executed and in what order.
- Win32::Registry gives you a way to query and edit the windows registry.
- Win32API gives you a way to call into specific windows core methods easily.
- WIN32OLE gives you a way to use Windows OLE.
Diğer kütüphaneler
[düzenle]GUI kütüphaneleri
[düzenle]Wikipedia Girdisi
[düzenle]Konu ile ilgili Diğer Wikikitaplar
[düzenle]Daniel Carrera'nın Ruby Öğrenmek Makalesi
Orta seviye Ruby
[düzenle]Burada Ruby'nin bazı yönlerine ait daha gelişmiş öğreticiler mevcut.
- Unit testing
- RubyDoc
- Rake
- RubyGems
- Running Multiple Processes
- Using Network Sockets
- Building C Extensions
- Rails
- Embedding Ruby within a separate C program