Category: Ruby On Rails
-
How to get started with open source rails?
Hey Folks, this is a basic bullet points for those who want to get started with open source within Ruby on Rails and start contributing the society for the good of all. Open source in my opinion is a culture that we must embrace for the growth of self and the community as a whole.
-
The Insufficiency of Good Design by Sarah Mei
As a developer you should have come to a point where you think about quality of the code you write. You must have wondered what good code actually is and how good design can be achieved. This talk by ‘Sarah Mei’ clarifies the idea of Good code and also provides guideline of how it can…
-
Custom fonts with Wicked PDF on Rails
Well! We all have had a hard time getting through the custom fonts in our website or web-application. It has been easier with the @font-face implementation through CSS though this requires different formats of file integrated through it. This implementation was OK until our client wanted to have the custom font implemented in the PDF…
-
Is class required while experimenting Ruby codes in file?
Dear Rubyists, There I was trying to guide a very good friend of mine, Sajin Shakya who was keen to learn a programming language, Ruby On Rails. I suggested him not to jump onto Rails and dig deep into Ruby first. Hence, as he had learnt C programming earlier, I told him to practice developing similar algorithms…
-
Validation on create with Ripple (Riak On Rails)
Ripple doesn’t provide direct method for adding validation only on create while trying to implement Riak On Rails using Ripple as modeling layer. This is very much necessary for the validation of properties such as password which are to be checked only while being created. Here is how I have done it.
-
Uniqueness Validation With Ripple (Riak On Rails)
I’m a riak newbie who is trying to implement Riak On Rails using Ripple as modeling layer. But while creating User model, I wanted validation for uniqueness of user. Validation such as presence is available with Ripple but I couldn’t find proper validation method directly provided for the uniqueness. So, below is the sample code…