Router pada Rails 3
• Kunto Aji - Last modified atSaat ini Rails 3 masih belum resmi dirilis dan masih banyak pembenahan. Namun, untuk router pada Rails 3 sepertinya telah selesai. Yehuda Katz, yang merupakan salah satu Rails Core Contributor, membuat perubahan sedemikian rupa pada router Rails 3 sehingga membuat lebih mudah dibaca dan tidak terlalu panjang. Berikut ini adalah salah satu perubahan tersebut.
Seperti contoh diatas, router pada Rails 3 tidak memerlukan map
, namun menggunakan match
dan to
. Selain itu, terdapat shortcut pula untuk penulisan pasangan controller/action
yang tadinya berupa (:controller => "yourcontrollers", :action => "youractions")
menjadi yourcontrollers#youractions
. Untuk informasi lebih lanjut mengenai router pada Rails 3, dapat dilihat pada artikel blog milik Yehuda Katz dan Rizwan Reza.
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.