Redline Software Inc. - Winnipeg's Leader in Ruby on Rails Development

New Release: Snap Chop Mobile App

Redline Software has released its premier mobile app for iPhone & Android. It’s stupid, smart, awesome, immature, and hilarious all in one.

We develop a lot of business related software, so we found it time to do something a bit less serious with the release of Snap Chop. Check it out at http://www.snapchop.me.

Snap Chop is available for your iPhone/iPad or Android device.

Ruby Syntax Tip

I’ve had quite a few moments while using Ruby when I decide to try to write something that I think should be valid Ruby without knowing if it actually is and it ends up working.

Here’s one of my latest finds using for loops…

1
2
3
  for a, b, c in [[1,2,3], [4,5,6], [7,8,9]]
    puts "#{a}, #{b}, #{c}"
  end

Results in…

1
2
3
  1, 2, 3
  4, 5, 6
  7, 8, 9

The for loop lets you can assign multiple values at the same time which is exactly what you can do with arrays with basic assignment elsewhere in Ruby code.

1
  a, b, c = [1, 2, 3]

I knew I could assign multiple values from an array like this, but had never tried it in a for loop before. Ruby ftw!

Url Menu Items

We’ve added a small new feature to Redzone. You can now create menu items that link to external pages just by specifying a url for the menu item.

Enjoy.

New Email Function

We’ve added a new email function to Redzone. You can now email all players for a given season. The link is accessible from the users and divisions pages.

Redzone Forum Issues

Apologies if anybody has had issues posting to our Redzone Forum, but I think we’ve resolved any outstanding issues with it.

Thanks