Rashmi Yadav

Programmer

Announcing Ruby Raven

We are pleases to announce Ruby Raven which is an iOS app that will keep you updated about latest happening in Ruby Conferences world.

Inside Ruby Raven App you can see all upcoming Ruby Conferences.

People like notifications and Ruby Raven fullfills this need. Ruby Raven send notifications which keeps you updated.

This App will send the a Raven when

  • A new conference is announced.

  • A conference is opening doors for proposals so you know when to submit.

  • Closing dates are nearby to submit a proposal.

  • Registrations are open.

We like open source as other people do.

We have kept Ruby Raven open source.

Ruby Raven has two components

  1. Server App part to keep track of latest Conferences.

  2. iOS App which lives in your devices and is built using Swift.

You are most welcome to contribute.

Future

This is very intial version for Ruby Raven. We are planning to add more features like showing CFP details within App, Confernce location. There are many cannot list all of them right now.

Credits

  • We would like to give special thank to Karan Arora for suggesting and giving feedback on Logo design and overall app feedback.

  • We would like to thanks all beta tester for initial feedback. We will be looking for more beta tester for future versions. Add yourself here.

  • We would like to thank thenounproject.com for icons.

Links

Contact

Screenshots

Thanks,

Rashmi and Arun



Rails Routing Constraints

Routing is backbone of a web applications. When we are building applications using Rails we can manage routing for our app easily. I am going to explain a bit advance feature of routing in Rails

What is routing constraints

Few many times we require routes to behave differently and also want to do some routing based on specific conditions.

For example

  • Constraint routes for http methods( put, post )

  • Want to show different home page for different users.

  • Want to restrict URL for some sub domain or range of IP addresses

We can easily constraints our routes in Rails

How many ways we can constraint our routes

Segment Constraints(Parameter Restriction)

You can filter any parameter based on Regular expression

Read on →


jQuery attr(‘value’) and val()

Here is a short tip about using $(obj).val() and $(obj).attr(‘value’). I was fixing a bug in ajax request with some params then i found that there is a difference val() method and attr(‘value’) I never faced this problem before. I thought to share this with you guys.

Read on →

Rails 4 Directory Structure

Rails 4 is released. Lots of new features has been added to rails. Here we will see what new directories have been added.

We will create a sample app in rails 4 so that it will be easy to see the new structure. I am assuming you have updated your rails. To check current version of rails run following command:

1
rails -v

It should be Rails 4.0.0

Read on →




Enhance Rails Models

In Rails Models play a important part in our Rails App.We should keep are model pretty,not having dirty code Here i am just reminding you some basic points to refactor a model.

Read on →