Rubino sui binari is a wonderful open source full-stack web application framework favoring convention over configuration. Grazie ai componenti riutilizzabili e facilmente configurabili normalmente utilizzati per la creazione di applicazioni, la creazione di applicazioni in Rails è più rapida e semplice, con conseguente miglioramento della produttività e della crescita aziendale. Sta guadagnando terreno tra gli sviluppatori poiché è flessibile, scalabile e facile per gli sviluppatori web scrivere e gestire applicazioni.
Rubino sui binari pone l'accento sull'utilizzo di modelli e principi ingegneristici noti al fine di ridurre il carico di lavoro durante la creazione di applicazioni web. Anche se esistono diversi metodi per risolvere una sfida di programmazione, Ruby afferma di fare affidamento su modelli comunemente utilizzati che rendono i siti Web Rails più facili da mantenere e aggiornare. Le librerie open source con blocchi più piccoli di codice Rails che risolvono problemi particolari vengono comunemente utilizzate per ridurre il sovraccarico di sviluppo. Con l'aiuto di tali blocchi di codice, gli sviluppatori possono inserire gemme stabili e ben testate invece di perdere tempo a scrivere gli stessi tipi di codici. Uno degli strumenti più potenti nella cassetta degli attrezzi di un programmatore Ruby è il modulo. Rubino Modules provide a structure to collect Ruby classes, methods, and constants into a single, separately named and defined unit.
Ciò è utile per evitare conflitti con classi, metodi e costanti esistenti e anche per poter aggiungere (mixare) la funzionalità dei moduli nelle tue classi.
Creating a Module in Ruby
Creating a module is similar to creating a class, except you use the module keyword instead of the class keyword.
module MyFirstModule
def say_hello
puts "Hello"
end
end
Modules cannot be instantiated. To use a module, you must either include or extend it within a class.
Using include and extend
- include
Mixes the module’s methods in as instance methods of the class.
- extend
Mixes the module’s methods in as class methods of the class.
Example
module ReusableModule
def module_method
puts "Module Method: Hi there!"
end
end
class ClassThatIncludes
include ReusableModule
end
class ClassThatExtends
extend ReusableModule
end
puts "Include"
ClassThatIncludes.new.module_method
# => "Module Method: Hi there!"
puts "Extend"
ClassThatExtends.module_method
# => "Module Method: Hi there!"
Other Important Concepts About Modules in Ruby
1. Method Lookup Basics:
module M
def report
puts "'report' method in module M"
end
end
class C
include M
end
class D < C
end
obj = D.new
obj.report
Produzione:
'report' method in module M
How Method Lookup Works
When a Ruby object receives a message (method call), it searches for the method in this order:
- The objects class (D)
- Modules included in the class (D)
- The superclass (C)
- Modules included in the superclass (M)
- Continue up the inheritance chain
In this case:
- D does not define report
- C does not define report
- C includes module M
- M defines report, so Ruby executes it
2. Defining the Same Method More Than Once
If a method is defined multiple times, the last definition takes precedence. This applies to both classes and modules.
module InterestBearing
def calculate_interest
puts "Placeholder! We're in module InterestBearing."
end
end
class BankAccount
include InterestBearing
def calculate_interest
puts "Placeholder! We're in class BankAccount."
puts "And we're overriding the calculate_interest method!"
end
end
account = BankAccount.new
account.calculate_interest
Produzione:
Placeholder! We're in class BankAccount.
And we're overriding the calculate_interest method!
The class method overrides the module method.
3. Mixing in Multiple Ruby Modules with the Same Method Name
module M
def report
puts "'report' method in module M"
end
end
module N
def report
puts "'report' method in module N"
end
end
class C
include M
include N
end
c = C.new
c.report
Produzione:
'report' method in module N
The last included module wins because it appears first in the method lookup path.
4. Including a Ruby Module More Than Once
class C include M include N include M end c = C.new c.report
Produzione:
'report' method in module N
Explanation
Re-including a module has no effect if the module is already in the lookup path. Ruby does not move it to the top again. The most recently included new module (N) still takes precedence.
5. Using super with Ruby Modules
The super keyword allows you to call the next method up the method lookup chain.
module M
def report
puts "'report' method in module M"
end
end
class C
include M
def report
puts "'report' method in class C"
puts "About to trigger the next higher-up report method..."
super
puts "Back from the 'super' call."
end
end
c = C.new
c.report
Produzione:
'report' method in class C About to trigger the next higher-up report method... 'report' method in module M Back from the 'super' call.
What Happens Here
- Ruby first executes report in class C
- super calls the next report method in the lookup chain (from module M)
- Control then returns back to the class method
RailsCarma ha lavorato su RoR sin dalla sua fase nascente e con una forte forza lavoro addestrata in RoR, è cresciuto fino a diventare un nome di grande fiducia nella consulenza end-to-end, architettura, costruzione, gestione ed estensione di Ruby on Rails ad aziende di tutto il mondo.
Per saperne di più :