198 reputation
9
bio website rubyops.net
location Los Angeles, CA
age 34
visits member for 1 year, 10 months
seen 22 hours ago
stats profile views 13

Mar
20
comment Grab copy model and save to new object
I'm not an ActiveRecord expert (or Rails for that matter), but perhaps something like (but probably not exactly): invoice = Invoice.new(quotes.labouritems.to_h) You might have to implement the to_h method for you model if it's not there by default. I believe ActiveRecord allows you to create a new method from a hash, if not, you'll probably have to implement an initialize method to init from a hash in Invoice as well. There's probably a simpler "railsy" way of doing this though.
Dec
23
awarded  Revival
Nov
26
accepted Radiant and NewRelic with Memcached doesn't log traffic
Nov
26
answered Radiant and NewRelic with Memcached doesn't log traffic
Nov
16
awarded  Tumbleweed
Nov
12
comment Could not find rails (>= 0) amongst [] (Gem::LoadError)
If you already have rvm installed and a newer version, this should do the same thing: rvm get stable --auto
Nov
9
revised Radiant and NewRelic with Memcached doesn't log traffic
added 2683 characters in body; edited title
Nov
9
answered Grab copy model and save to new object
Nov
9
awarded  Critic
Nov
9
answered How to benchmark logins per second with omniauth / oauth ? (ruby+rspec)
Nov
9
asked Radiant and NewRelic with Memcached doesn't log traffic
Oct
24
answered How to apply multiple CSS selectors to a paticular div?
Oct
24
accepted Ruby Test Coverage Mapping Tool
Oct
24
answered Ruby Test Coverage Mapping Tool
Oct
24
comment Delete image in wxpython?
And although this isn't really part of the question, if you're looking to hide bitmap1, so as to show bitmap2 (loaded in the same way), it's self.bitmap2.Show().
Oct
4
comment Ruby Test Coverage Mapping Tool
agreed, starting to think what I'm looking for doesn't exist, because it's not exactly possible. Thanks!
Oct
2
comment ImageMagick / RMagick - Can't install RMagick 2.13.1. Can't find Magick-config
Ubuntu 12... sudo apt-get install graphicsmagick-libmagick-dev-compat worked for me.
Sep
28
awarded  Commentator
Sep
28
comment Ruby Test Coverage Mapping Tool
My assumptions on it being "not extension enough" is that it doesn't do what I'm looking to do, from what I can see. I use SimpleCov in all of my personal work and in the site I'm referring to above and it's a great tool, it just doesn't solve the problem I'm trying to in my OP.
Sep
28
comment Ruby Test Coverage Mapping Tool
Honestly, I wasn't very familiar with SimpleCov (which we do use) at the time of asking this question. That said, given the initial problem I mentioned, SimpleCov doesn't solve it. At least not from what I've seen. I'm looking for something that I can drop in at top level and it will explicitly identify overlapping tests and identify tests that can be removed without losing coverage. I'll dig in a little deeper to "coverage.so" and see if there's something there I'm missing though. Thanks!