Daudi Amani
Daudi Amani
I don't recommend removing the status log output.. there should be a switch paramter to reduce it, or else change the LOG state. It really is critical for debugging devise...
Automating destruction of data doesn't seem wise to me. It's better that the developers knows exactly what they are doing. Rails is full of examples where such statements must explicitly...
The suggested fix-around worked. But, it took sprockets from v3.1.0 down to 2.12.3. I question whether that is the best, long-term fix for this issue.
I've gotten same error while trying to pull from heroku. $ heroku db:pull postgres://user:password@localhost/ !!! Caught Server Exception HTTP CODE: 500 Taps Server Error: schema parsing returned no columns, table...
If pony gem is a requirement, then it should be in the gem dependencies so that bundler will automatically install it!
actually, the call is: SMSNotifier.send_sms(email, message, from) implying that it's a class method .. so in sms_notifier.rb, shouldn't send_sms be defined as a class method? but if I do that,...
Yes, the README documentation is really poor. I've been using sms-fu plugin for years .. today am switching over to gem. It's unclear where to put the sms_fu = SMSFu::Client.configure(:delivery...
Response from Ruby/Eric Wong: You want to use StringValueCStr or StringValuePtr when you see untrusted user-input instead of RSTRING_PTR. RSTRING_PTR will segfault if the user calls a function with a...
Here's a one-liner to reproduce the error, assuming you have at least two registered CUPS printers (mine are: "laserjet_1102w", "lp_null") ``` ruby Cups.show_destinations.map {|cn| Cups.device_uri_for( cn ) } ``` and...