What People are Saying
"We love working with Integrum — they always get excited about new projects and changes we want to make to the site, and their enthusiasm for web design and development really shows. They’re also great at explaining things in “layman’s terms” for those of us who aren’t so tech-savvy."
— Jackie, www.rattlebox.com
Announcements
So…you’d like to work for Integrum?
With a stable of long term clients and growth on the mobile development side as well, Integrum is looking to bring more talented developers to our team. We’re currently looking for Rails developers from n00b to the cliched ‘rockstar’ level.
We do real Agile (capital A because we don’t fake it) and SCRUM development, so you’ll have to be comfortable talking with clients on a regular basis. If you’ve got an interest in iPhone or Android development to go along with the Rails stuff, that’s a nice bonus too.
These are full time positions, on-site at our office in Chandler, Arizona. Benefits, perks, Pac-Man, we’ve got all those. Salary is dependent on experience.
Ready to apply? Here’s our job application — a little test.
Below is what you will find in the README for the job application on github.
Please note that these tests all require some basic Ruby knowledge. If you don’t know ruby, take a few minutes to learn the basics. You will need to have Ruby, rubygems, RSpec installed, and Factory Girl installed.
In order to be considered for a position at Integrum, you must follow these steps.
1. Fork this repository (if you don’t know how to do that, google is your friend)
2. In the refactor-this directory you will find some Ruby code that needs to be refactored.
- A test suite is included with failing specs.
- Please refactor this code, this is real code we found in a real project that could be much more readable and intuitive.
- Run spec helper_spec.rb to execute your specs and see if they are passing.
- Please note: feel free to change the specs, but they should all be passing when you turn in your code.
3. In the github-challenge directory, please create a Ruby script that accomplishes the following:
- Connect to the github API
- Find the rails/rails repository
- Find the most recent commits
- Print out HTML that groups the recent commits by author.
4. Add your resume to the resume directory
5. Commit and Push your code to your new repository
6. Send us a pull request, we will review your code and get back to you
For more information, contact Chris Conrey at conrey@integrumtech.com or hr@integrumtech.com.
MountainWest RubyConf 2009
We’re sponsoring this years MountainWest RubyConf, March 13-14. Are you going? You should be there – we will be! For more information visit http://mtnwestrubyconf.org/2009/.
Gangplank Hacknight
What is Hacknight? The best way to find out is show up. It is whatever we make it.
Gangplank Academy
Come to Gangplank, same address as Integrum, each Wednesday at 11:45 a.m. for brown bag lunch and a presentation.
Calling all Rails Nerds!
We want you (to work for us)! Drop us a line at hr@integrumtech.com.
Press Room
Integrum wins Small Business of the Year award
How do you know a company deserves an award? When the staff is so focused on going above and beyond for clients, they miss the call from the city notifying them they’ve won.
Fortunately, the City of Chandler was able to track the staff at Integrum down and award them the 2010 Small Business of the Year award at a banquet held last Wednesday.
The 23rd Annual Awards Dinner took place at the Crowne Plaza San Marcos Resort in downtown Chandler. The event celebrates individual and business excellent in the community. Integrum was chosen based on the company’s contributions to the growth of the local economy, high quality service and innovations in the field of software development. Additionally, Integrum was recognized for the company’s community involvement through its nonprofit, Gangplank.
Jade Meskill and Derek Neighbors were on hand to accept the award.
Thank you for this tip! But: Your skip_callback method does not handle the result of the yielded block. If have fixed it with this code:
def self.skip_callback(callback, &block) method = instance_method(callback) remove_method(callback) if respond_to?(callback) define_method(callback){ true } result = yield remove_method(callback) define_method(callback, method) result endHi. This is really interesting post. Thank You! I have just subscribed to Your rss!
Best regards
Really usefull solution to me! I used this in a module and didn’t get it working on first until I read about the difference between including and extending a module. For all developers getting the same problem, I found a lot of usefull info on this url:
http://www.juixe.com/techknow/index.php/2006/06/15/mixins-in-ruby/
One more addition: Bad things happen if an exception is raised in the yielded block – the former callback is not restored. To avoid this I have changed the method like this:
def self.skip_callback(callback, &block) method = instance_method(callback) remove_method(callback) if respond_to?(callback) define_method(callback){ true } begin result = yield ensure # Always redefine the old callback, even if # there were exceptions raised in the yielded block remove_method(callback) define_method(callback, method) end result endWhat i find even more interesting is that it works even it the callback itself.
class Person < ActiveRecord::Base after_save :create_another def create_another Person.skip_callback("create_brother") do Person.create(:name => "peter") end end end Person.create :name => "ronald" This code will not explode, even though the method removes itself and then add itself back (gives me headache).Hm. Please close the pre tag behind me, thank you :)