Teflon Ted
|
Registered User
|
Married to Java. Sleeping with Ruby.
|
|
Nov 28 |
accepted | Asset URLs without cache timestamps in Rails |
|
Nov 23 |
answered | Remotely Track the Current Branch in Git |
|
Nov 23 |
comment |
Remotely Track the Current Branch in Git In order for the test server to pull the latest code for testing, you have to have pushed it somewhere the server can grab it from, and I don't believe there's a post-push hook in git, and I also think that hook would run on the machine that performed the push (e.g. your laptop, not the server with the repository). |
|
Nov 12 |
accepted | How can you load the Rails environment from CloudCrowd actions? |
|
Nov 12 |
accepted | How can you check to see if a file exists (on the remote server) in Capistrano? |
|
Nov 12 |
awarded | ● Self-Learner |
|
Nov 12 |
comment |
How can you easily test hash equality in Ruby when you only care about intersecting keys? That's great but there's a couple edge cases I want to handle, like if one of the hashes is nil, or empty, or if the value 1 is equal to '1', or the key :b matches the key 'b'. I'll post my solution with unit tests after this simmers for a couple days. Thanks! |
|
Nov 12 |
asked | How can you easily test hash equality in Ruby when you only care about intersecting keys? |
|
Nov 6 |
answered | How can you load the Rails environment from CloudCrowd actions? |
|
Nov 6 |
asked | How can you load the Rails environment from CloudCrowd actions? |
|
Nov 2 |
answered | How can you check to see if a file exists (on the remote server) in Capistrano? |
|
Nov 2 |
comment |
How can you check to see if a file exists (on the remote server) in Capistrano? Thanks. I'm assuming you mean to wrap that with the "capture" method? capify.org/index.php/Capture |
|
Nov 2 |
asked | How can you check to see if a file exists (on the remote server) in Capistrano? |
|
Nov 1 |
answered | Unit tests for 3rd-party libraries |
|
Oct 23 |
awarded | ● Popular Question |
|
Oct 22 |
comment |
Haml: Control whitespace around text It works with tags but not expressions; in your example you've changed his expression to a tag. I have the same issue and unfortunately this is not a solution. |
|
Oct 21 |
revised |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? added solution |
|
Oct 21 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Thanks but that's not working for me. Please see my update to the question with the example code. |
|
Oct 21 |
revised |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? added pseudo code |
|
Oct 21 |
comment |
Medialets to track iPhone app usage etc.. I have used their library and had no issues following the step-by-step instructions in the PDF that accompanies it. If you can add some more specifics or details to your question I might be able to better assist you. Thanks. |
|
Oct 21 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? That's clever and might make a great Plan B but I really need to apply the updates at the before_create step (#6 in your list) after validation. Thanks. |
|
Oct 20 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Yeah that's not going to work for me. I'm working with a single database here, and as you can see it my comments to the other response, nested transactions aren't working either. This is not looking good. |
|
Oct 20 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? This doesn't work. The wrapped transaction gets rolled back with the wrapping transaction. From the documentation: "Most databases don’t support true nested transactions. At the time of writing, the only database that we’re aware of that supports true nested transactions, is MS-SQL. Because of this, Active Record emulates nested transactions by using savepoints." |
|
Oct 20 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? "You need to specifically request another connection from AR" - Fantastic; how do I do that? Thanks. |
|
Oct 20 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? Thanks. Could you be a little more explicit? Perhaps some sample/pseudo code? |
|
Oct 20 |
comment |
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? No I have to prevent the create in some cases. |
|
Oct 20 |
asked | How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false? |
|
Oct 18 |
revised |
Asset URLs without cache timestamps in Rails edited tags |
|
Oct 18 |
comment |
Asset URLs without cache timestamps in Rails Yeah you can use this: $("img[src*='-trans.png']") |
|
Oct 18 |
comment |
Asset URLs without cache timestamps in Rails Interesting but your example code has a couple issues like replacing every IMG tag with the class "logo" on the page which is fine if you're the only person working on the code but could be a big WTF moment if some other designer make the faux pas of using the same tag/class combination for another image. Also this only works for one particular image. You implied in your question that you had multiple images you wanted to "fix", so you might be better off with some pattern matching on the "src" value, which I think jQuery can do. |
|
Oct 18 |
answered | Asset URLs without cache timestamps in Rails |
|
Oct 13 |
revised |
How can you reverse engineer a binary thrift file? linked to thrift site |
|
Oct 13 |
asked | How can you reverse engineer a binary thrift file? |
|
Oct 12 |
comment |
How might you clone a database table via Rails migration? Good call. "Use LIKE to create an empty table based on the definition of another table, including any column attributes and indexes defined in the original table" dev.mysql.com/doc/refman/… |
|
Oct 12 |
comment |
How might you clone a database table via Rails migration? > it won't copy table options or indices Thanks but indexes is a requirement. |
|
Oct 11 |
answered | How might you clone a database table via Rails migration? |
|
Oct 9 |
asked | How to specify rubygems path in environment-less Ruby script? |
|
Oct 9 |
asked | How might you clone a database table via Rails migration? |
|
Oct 9 |
comment |
How do you specify a required switch (not argument) with Ruby OptionParser? It stinks that's not a native feature of the library - it's not very DRY if you have a few more required switches. Thanks. |
|
Oct 9 |
asked | How do you specify a required switch (not argument) with Ruby OptionParser? |
|
Oct 7 |
accepted | How to run every script in a directory except itself? |
|
Oct 5 |
answered | How to run every script in a directory except itself? |
|
Oct 5 |
comment |
How to run every script in a directory except itself? @reinierpost the "open" command essentially tells OS X to "run this as if it were launched from the dock" so you can start applications from the command line, and in this case those applications are shell scripts that launch through new Terminal windows. |
|
Oct 4 |
asked | How to run every script in a directory except itself? |
|
Sep 28 |
asked | How to get the number of days in a given month in Ruby, accounting for year? |
|
Sep 23 |
asked | Ignoring escaped delimiters (commas) with awk? |
|
Sep 17 |
revised |
Advanced queries in HBase fixed tags |
|
Sep 16 |
asked | Advanced queries in HBase |
|
Sep 11 |
awarded | ● Popular Question |
|
Sep 4 |
awarded | ● Popular Question |
