User jcoby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T02:30:33Zhttp://stackoverflow.com/feeds/user/2884http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199044/how-to-update-rails-plugins-installed-through-git-but-in-a-svn-repo2How to update rails plugins installed through git but in a svn repo?jcoby2008-10-13T21:12:09Z2009-09-25T08:59:53Z
<p>My rails app is in a svn repository, but several of the plugins are installed through git and later added to the svn repo. How can I update these plugins? I can't seem to get script/plugin update to do anything. I'd really like to update activemerchant to get rid of the Inflector warnings.</p>
http://stackoverflow.com/questions/40273/whats-the-best-way-to-use-soap-with-ruby2What's the best way to use SOAP with Ruby?jcoby2008-09-02T18:46:09Z2009-07-30T17:47:11Z
<p>A client of mine has asked me to integrate a 3rd party API into their Rails app. The only problem is that the API uses SOAP. Ruby has basically dropped SOAP in favor of REST. They provide a Java adapter that apparently works with the Java-Ruby bridge, but we'd like to keep it all in Ruby, if possible. I looked into soap4r, but it seems to have a slightly bad reputation.</p>
<p>So what's the best way to integrate SOAP calls into a Rails app?</p>
http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233666#2336660Answer by jcoby for Worst PHP practice found in your experience?jcoby2008-10-24T14:07:25Z2009-06-19T19:34:09Z<p><code>register_globals</code> sibling in evil <code>extract($_REQUEST)</code></p>
<p><code>magic_quotes_*</code></p>
<p><code>DIRECTORY_SEPARATOR</code> when opening files ('/' is usable on all systems).</p>
<pre><code>require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');
</code></pre>
<p>Yeah.. that's readable.</p>
http://stackoverflow.com/questions/259382/model-view-confusion/259465#2594652Answer by jcoby for Model-View-Confusionjcoby2008-11-03T18:13:20Z2008-11-03T18:13:20Z<p>To add to @Benoît's comment:</p>
<p>The Symfony framework handles this with components. Each component is a self-contained MVC instance that can be embedded into another view. It cannot be instantiated to respond directly to web requests like the normal MVC instance (a module/action pair). It can only be embedded into another MVC view.</p>
<p>As a side note: Symfony also treats plugins as their own complete MVC instance, complete with its own schema, models, controllers, config files, views, et al.</p>
<p>In your case, each component would be its own MVC instance and the app would stitch these components together. Each component would be responsible for how it responds to a form submit.</p>
<p>MVC doesn't mean there is ONE view and ONE controller. It just means the app logic is stored in models, the controller glues things together, and the view builds the display. It's a formal and logical separation of logic and presentation.</p>
http://stackoverflow.com/questions/259416/does-ruby-have-a-stepwise-debugger-similar-to-perls-perl-d/259437#2594376Answer by jcoby for Does ruby have a stepwise debugger, similar to perl's "perl -d"?jcoby2008-11-03T18:03:00Z2008-11-03T18:03:00Z<p>Check out the <a href="http://rubyforge.org/projects/ruby-debug/" rel="nofollow">ruby-debug gem</a> and the rdebug command. Here is a <a href="http://www.datanoise.com/articles/2006/7/12/tutorial-on-ruby-debug" rel="nofollow">random blog article about ruby-debug</a> to get you started.</p>
http://stackoverflow.com/questions/248821/undoing-a-commit-in-tortoisesvn/248850#2488505Answer by jcoby for Undoing a commit in Tortoisesvnjcoby2008-10-29T23:52:26Z2008-10-29T23:52:26Z<p>You may need to use the command line, but you can use the svn merge command and specify the revisions in reverse to effectively revert a commit. Assuming your bad commit was r1123, you would do:</p>
<p><code>svn merge -r1123:1122 <url of your working copy></code></p>
http://stackoverflow.com/questions/247948/is-there-a-better-way-of-checking-nil-or-length-0-of-a-string-in-ruby/248028#2480283Answer by jcoby for Is There a Better Way of Checking Nil or Length == 0 of a String in Ruby?jcoby2008-10-29T19:07:54Z2008-10-29T19:07:54Z<p>Konrad Rudolph has the right answer.</p>
<p>If it really bugs you, monkey patch the String class or add it to a class/module of your choice. It's really not a good practice to monkey patch core objects unless you have a really compelling reason though.</p>
<pre><code>class String
def self.nilorempty?(string)
string.nil? || string.empty?
end
end
</code></pre>
<p>Then you can do <code>String.nilorempty? mystring</code></p>
http://stackoverflow.com/questions/246876/php-mangles-my-dates/247648#2476483Answer by jcoby for PHP mangles my datesjcoby2008-10-29T17:17:45Z2008-10-29T17:17:45Z<p>or even easier: <code>$date = date('Y-m-d', strtotime($dob))</code></p>
http://stackoverflow.com/questions/247467/how-are-associative-arrays-implemented-in-php/247634#2476343Answer by jcoby for How are associative arrays implemented in PHP?jcoby2008-10-29T17:14:36Z2008-10-29T17:14:36Z<p>@EBGreen is correct. </p>
<p>Which gives you some interesting performance problems, especially when treating an array as a list and using the [] (array add) operator. PHP doesn't seem to cache the largest numeric key and add one to it, instead it seems to traverse all of the keys to find what the next numeric key should be. I've rewritten scripts in python because of PHP's dismal array-as-a-list performance.</p>
<p>Associative arrays have the standard dict/hash performance overhead. </p>
http://stackoverflow.com/questions/240525/how-did-you-learn-to-program/240590#2405904Answer by jcoby for How did you learn to program?jcoby2008-10-27T16:49:23Z2008-10-27T16:49:23Z<p>I sat down in front my my 2nd hand 286 when I was 12 with a copy of a C compiler and a couple of C programming books my grandfather let me borrow. Throw in about 6 years of late nights trying to understand other people's code, some CompuServe forums, countless Internet searches, and a handful of other languages.</p>
<p>So, in a nutshell, I taught myself by learning from other's work and reading megabytes of source code. I don't do well being taught- I have to learn it myself by failing. And I've failed.. A LOT.</p>
http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a-given-lat-lng-location/238278#2382783Answer by jcoby for How to calculate the bounding box for a given lat/lng location?jcoby2008-10-26T17:10:57Z2008-10-26T17:10:57Z<p>You're looking for an ellipsoid formula. </p>
<p>The best place I've found to start coding is based on the Geo::Ellipsoid library from CPAN. It gives you a baseline to create your tests off of and to compare your results with its results. I used it as the basis for a similar library for PHP at my previous employer.</p>
<p><a href="http://search.cpan.org/~jgibson/Geo-Ellipsoid-1.12/lib/Geo/Ellipsoid.pm" rel="nofollow">http://search.cpan.org/~jgibson/Geo-Ellipsoid-1.12/lib/Geo/Ellipsoid.pm</a></p>
<p>Take a look at the <code>location</code> method. Call it twice and you've got your bbox.</p>
<p>You didn't post what language you were using. There may already be a geocoding library available for you.</p>
<p>Oh, and if you haven't figured it out by now, Google maps uses the WGS84 ellipsoid.</p>
http://stackoverflow.com/questions/236810/how-do-i-get-a-zipped-files-content-using-the-rubyzip-library0How do I get a zipped file's content using the rubyzip library?jcoby2008-10-25T18:28:35Z2008-10-25T18:59:14Z
<p>I'm trying to extract an uploaded zip file and store its contents in the database, one entry per file. The rubyzip library has nearly no useful documentation.</p>
<p>There is an assets table that has key :string (file name) and data :binary (file contents).</p>
<p>I'm using the rubyzip library, and have made it as far as this:</p>
<pre><code>Zip::ZipFile.open(@file_data.local_path) do |zipfile|
zipfile.each do |entry|
next if entry.name =~ /__MACOSX/ or entry.name =~ /\.DS_Store/ or !entry.file?
asset = self.assets.build
asset.key = entry.name
asset.data = ?? # what goes here?
end
end
</code></pre>
<p>How can I set the data from a ZipEntry? Do I have to use a temp file?</p>
http://stackoverflow.com/questions/236810/how-do-i-get-a-zipped-files-content-using-the-rubyzip-library/236836#2368362Answer by jcoby for How do I get a zipped file's content using the rubyzip library?jcoby2008-10-25T18:59:14Z2008-10-25T18:59:14Z<p>Found an even more simple way: </p>
<pre><code>asset.data = entry.get_input_stream.read
</code></pre>
http://stackoverflow.com/questions/232274/how-do-i-get-vim-to-highlight-matching-parenthesis/232278#2322782Answer by jcoby for How do I get vim to highlight matching parenthesis jcoby2008-10-24T02:17:59Z2008-10-24T02:17:59Z<p>set showmatch is your best bet. you can also use the % command to jump between matching parenthesis, braces, brackets, quotes, etc.</p>
http://stackoverflow.com/questions/219265/svn-hosting-vote-for-the-provider-you-use/219656#2196560Answer by jcoby for SVN Hosting: Vote for the provider you usejcoby2008-10-20T19:52:56Z2008-10-20T19:52:56Z<p><a href="http://svnrepository.com/" rel="nofollow">http://svnrepository.com/</a></p>
<p>Seems to be the best bang for the buck out there.</p>
http://stackoverflow.com/questions/184435/tax-service-recommendation-for-a-rails-app2Tax Service Recommendation for a Rails App?jcoby2008-10-08T19:24:08Z2008-10-10T20:18:45Z
<p>I'm developing a cart that needs to calculate tax and am looking for a 3rd party tax service to handle the calculations. </p>
<p>I've used Avalara in another app, but it's somewhat miserable since I have to use the Rjb gem with their java library.</p>
<p>Does anyone have a recommendation for a tax service that works well with rails?</p>
http://stackoverflow.com/questions/184049/framework-language-for-new-web-2-0-sites-2008-and-2009/184376#1843764Answer by jcoby for Framework/Language for new web 2.0 sites (2008 and 2009)jcoby2008-10-08T19:08:42Z2008-10-08T19:08:42Z<p>it depends.</p>
<p>php - symfony is a great framework. downsides: php, wordy and directory heavy. propel gets annoying to use. upsides: php is everywhere and labor is cheap. well done framework, and good support. lots of plugins to make your life easier</p>
<p>python - django is also a great framework. downsides: python programmers can be harder to find, django even harder. changing your db schema can be somewhat difficult since there are no official migrations. doesn't quite do mvc like you'd expect. upsides: does everything you need and has the great python std library and community behind it.</p>
<p>ruby - i've never used merb, so I'll address rails. upsides: there is a plugin, gem, or recipe for almost anything you could want to do. easy to use. downsides: those plugins, gems, and recipes sometimes fail to work in mysterious ways. monkey patching is often evil. the community is.. vocal. opinionated software, and sometimes those opinions are wrong (<em>lack of foreign keys</em>). rails itself seems like a tower of cards waiting to explode and take hours of your life away.</p>
<p>with all of that said, I'm a freelance php/symfony and ruby/rails developer. I've worked on several projects in both languages and frameworks. My latest project is in Rails solely because of ActiveMerchant. I've been looking for a reason to develop a django app for a while. If there were an ActiveMerchant like library for django, I probably would have used it.</p>
http://stackoverflow.com/questions/133701/is-symfony-a-good-framework-to-learn/134365#1343652Answer by jcoby for Is Symfony a good framework to learn?jcoby2008-09-25T16:27:20Z2008-09-25T16:27:20Z<p>@<a href="#133909" rel="nofollow">Daok</a></p>
<p>Yaml is only used in the ORM to define your schema. It doesn't really define any behavior. Propel is based on generated code and it uses the schema.yml to create the models.</p>
<p>It works on OS X as well.</p>
<p>It also has a pretty good caching layer.</p>
http://stackoverflow.com/questions/133701/is-symfony-a-good-framework-to-learn/133738#1337389Answer by jcoby for Is Symfony a good framework to learn?jcoby2008-09-25T14:35:45Z2008-09-25T14:45:20Z<p>Yes, it's a great framework. I've used it to build several sites of various complexities. One is a small-business site with only a handful of pages and a contact form. Another is a complex file delivery site with thousands of users and tens of thousands of transactions per month. Several of my clients use it- one has over 100k users.</p>
<p>There is a good user community, irc usually has helpful people, and there are several plugins to make common tasks easy. It has a really nice admin generator. The ORM (Propel) is a bit wordy, but allows for most of your common database features- constraints, foreign keys, indexes, etc. The Form objects in 1.1 are nice.</p>
<p>Biggest complaints: it's wordy and directory-heavy. Over-use of config files can make things a bit difficult to figure out.</p>
<p>Definitely recommended.</p>
http://stackoverflow.com/questions/104086/polymorphic-models-in-ruby-on-rails0Polymorphic Models in Ruby on Rails?jcoby2008-09-19T17:54:24Z2008-09-24T19:01:52Z
<p>For a project I'm working on, the store has two types of products - a real product and a group of products. </p>
<p>For this discussion, let's call them "1 T shirt" and "a box of T shirts". For one t-shirt, I need to store the normal attributes - price, sku, size, color, description, etc. For the box of t-shirts I need to have a price, sku, description, and a list of t-shirts that are included.</p>
<p>So right now, I'm representing this with the Shirt and ShirtCollection models. I can see this causing difficulty down the road when I need to do reporting and order management and making sure SKUs are unique.</p>
<p>So what's the best way of representing this? </p>
http://stackoverflow.com/questions/61383/is-there-a-good-admin-generator-for-ruby-on-rails7Is there a good admin generator for Ruby on Rails?jcoby2008-09-14T14:41:11Z2008-09-16T04:56:32Z
<p>My current project is in Rails. Coming from a Symfony (PHP) and Django (Python) background, they both have excellent admin generators. Seems like this is missing in Rails.</p>
<p>For those who aren't familiar with Symfony or Django, they both allow you to specify some metadata around your models to automatically (dynamically) generate an admin interface to do the common CRUD operations. You can create an entire Intranet with only a few commands or lines of code. They have a good appearance and are extensible enough for 99% of your admin needs.</p>
<p>I've looked for something similar for Rails, but all of the projects either have no activity or they died long ago. Is there anything to generate an intranet/admin site for a rails app other than scaffolding?</p>
http://stackoverflow.com/questions/61383/is-there-a-good-admin-generator-for-ruby-on-rails/63459#634590Answer by jcoby for Is there a good admin generator for Ruby on Rails?jcoby2008-09-15T14:35:35Z2008-09-15T14:35:35Z<p>@<a href="#62451" rel="nofollow">Blaxter</a></p>
<p>I'm using Rails 2.1.1 with ActiveScaffold now with no problems at all. Granted, I'm not doing anything really difficult, but it seems to work fine. Maybe it's a Rails 2.1.0 problem?</p>
http://stackoverflow.com/questions/60658/rails-model-view-controller-and-helper-what-goes-where/60824#608248Answer by jcoby for Rails Model, View, Controller, and Helper: what goes where?jcoby2008-09-13T20:18:46Z2008-09-13T20:18:46Z<p>To add to pauliephonic's comment:</p>
<p><strong>Helper</strong>: functions to make creating the view easier. For example, if you're always iterating over a list of widgets to display their price, put it into a helper (along with a partial for the actual display). Or if you have a piece of rjs that you don't want cluttering up the view, put it into a helper.</p>
http://stackoverflow.com/questions/54500/storing-images-in-postgresql/54541#545416Answer by jcoby for Storing Images in PostgreSQLjcoby2008-09-10T16:09:32Z2008-09-10T16:09:32Z<p>In the database, there are two options:</p>
<ul>
<li>bytea. Stores the data in a column, exported as part of a backup. Uses standard database functions to save and retrieve. Recommended for your needs.</li>
<li>blobs. Stores the data externally, not normally exported as part of a backup. Requires special database functions to save and retrieve.</li>
</ul>
<p>I've used bytea columns with great success in the past storing 10+gb of images with thousands of rows. PG's TOAST functionality pretty much negates any advantage that blobs have. You'll need to include metadata columns in either case for filename, content-type, dimensions, etc.</p>
http://stackoverflow.com/questions/41925/is-there-a-standard-for-storing-normalized-phone-numbers-in-a-database/42028#420282Answer by jcoby for Is there a standard for storing normalized phone numbers in a database?jcoby2008-09-03T16:10:47Z2008-09-03T16:10:47Z<p>Look up E.164. Basically, you store the phone number as a code starting with the country prefix and an optional pbx suffix. Display is then a localization issue. Validation can also be done, but it's also a localization issue (based on the country prefix).</p>
<p>For example, +12125551212+202 would be formatted in the en_US locale as (212) 555-1212 x202. It would have a different format in en_GB or de_DE. </p>
<p>There is quite a bit of info out there about ITU-T E.164, but it's pretty cryptic. </p>
http://stackoverflow.com/questions/34975/branching-strategies/35083#3508311Answer by jcoby for Branching Strategiesjcoby2008-08-29T19:17:18Z2008-08-29T19:17:18Z<p>Here is the method I've used in the past with good success:</p>
<p>/trunk - bleeding edge. Next major release of the code. May or may not work at any given time.</p>
<p>/branches/1.0, 1.1, etc. Stable maintenance branches of the code. Used to fix bugs, stabilize new releases. If a maintenance branch, it should compile (if applicable) and be ready for QA/shipping at any given time. If a stabilization branch, it should compile and be feature complete. No new features should be added, no refactoring, and no code cleanups. You can add a pre- prefix to indicate stabilization branches vs maintenance branches.</p>
<p>/branches/cool_feature. Used for highly experimental or destructive work that may or may not make it into trunk (or a maintenance branch). No guarantees about code compiling, working, or otherwise behaving sanely. Should last the minimum time as possible before merging into the mainline branch.</p>
<p>/tags/1.0.1, 1.0.2, 1.1.3a, etc. Used for tagging a packaged & shipped release. Never EVER changes. Make as many tags as you want, but they're immutable.</p>
http://stackoverflow.com/questions/35047/migrating-database-changes-from-development-to-live/35061#350612Answer by jcoby for Migrating database changes from development to livejcoby2008-08-29T19:07:11Z2008-08-29T19:07:11Z<p>Symfony has a plugin called sfMigrationsLight that handles basic migrations. CakePHP also has migrations.</p>
<p>For whatever reason, migration support has never really been a high priority for most of the PHP frameworks and ORMs out there.</p>
http://stackoverflow.com/questions/34488/does-limiting-a-query-to-one-record-improve-performance/34508#345080Answer by jcoby for Does limiting a query to one record improve performancejcoby2008-08-29T15:55:07Z2008-08-29T15:55:07Z<p>To answer your questions in order:
1) yes, if there is no index on name. The query will end as soon as it finds the first record. take off the limit and it has to do a full table scan every time.
2) no. primary/unique keys are guaranteed to be unique. The query should stop running as soon as it finds the row.</p>
http://stackoverflow.com/questions/27345/how-do-i-install-the-phpgd2-extension-in-mamp-on-a-mac/27352#273522Answer by jcoby for How do I install the php_gd2 extension in MAMP on a Mac? jcoby2008-08-26T03:33:39Z2008-08-26T03:33:39Z<p>You shouldn't need to install the extension. I have 1.7.2 installed and running right now and it has GD bundled (2.0.34 compatible).</p>
<p>From the MAMP start page, click on phpinfo and you should see a GD section.</p>
http://stackoverflow.com/questions/350053/php-frameworks-are-they-solely-personal-preference/350084#350084Comment by jcoby on PHP Frameworks - Are they solely personal preference?jcoby2008-12-09T03:18:56Z2008-12-09T03:18:56ZWhat? Symfony is about as far from Ruby on Rails in both design and philosophy as you can get and still be a MVC framework. Cake is an attempt at a clone of RoR, but without the power of Ruby and hampered by PHP4 compatibility.http://stackoverflow.com/questions/247467/how-are-associative-arrays-implemented-in-php/247634#247634Comment by jcoby on How are associative arrays implemented in PHP?jcoby2008-10-29T21:46:37Z2008-10-29T21:46:37ZIt's possible they've changed it recently. I was using 5.1 when I was doing the work. PHP's array was AWFUL when you're talking about 10k entries or more.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164446#164446Comment by jcoby on What real life bad habits has programming given you?jcoby2008-10-29T21:10:30Z2008-10-29T21:10:30ZIt has more to do with how differently men and women think. Men understand direct and assertive. Women want to be friendly and coercive. Women say "do you want to" as a passive request to be friendly. Men find it annoying and subversive. Go figure. There's more about it in the mars/venus book.http://stackoverflow.com/questions/247948/is-there-a-better-way-of-checking-nil-or-length-0-of-a-string-in-ruby/248056#248056Comment by jcoby on Is There a Better Way of Checking Nil or Length == 0 of a String in Ruby?jcoby2008-10-29T19:19:25Z2008-10-29T19:19:25Zooh, even more tricky! I like it!http://stackoverflow.com/questions/243217/which-coding-style-you-use-for-ternary-operator/243241#243241Comment by jcoby on Which coding style you use for ternary operator?jcoby2008-10-29T17:22:47Z2008-10-29T17:22:47Z100% agreed. and ONLY if the operator is used as a single statement and ONLY if it's less than 80 chars, including indentation.
at a previous employer, the previous lead dev liked to use the ternary op in the middle of 1k echo statements. EVIL. I outlawed its use altogether in that codebase.http://stackoverflow.com/questions/240525/how-did-you-learn-to-program/240590#240590Comment by jcoby on How did you learn to program?jcoby2008-10-27T16:58:01Z2008-10-27T16:58:01Zthat's a great way of putting it!http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237909#237909Comment by jcoby on Most frustrating programming style you've encounteredjcoby2008-10-26T17:20:15Z2008-10-26T17:20:15ZPHP, Ruby, Python all allow trailing commas. Several other languages as well. I commonly leave it in to make adding another entry or removing one easier.http://stackoverflow.com/questions/238260/how-to-calculate-the-bounding-box-for-a-given-lat-lng-location/238280#238280Comment by jcoby on How to calculate the bounding box for a given lat/lng location?jcoby2008-10-26T17:14:26Z2008-10-26T17:14:26Zyou can't actually use a sphere to model the earth without introducing inaccuracy. you have to use an ellipsoid- and there are a dozen or so to choose from. wgs84 seeming to be the most common.http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233666#233666Comment by jcoby on Worst PHP practice found in your experience?jcoby2008-10-26T14:22:06Z2008-10-26T14:22:06Zit was only an example. not bashing on sf at all.http://stackoverflow.com/questions/236810/how-do-i-get-a-zipped-files-content-using-the-rubyzip-library/236827#236827Comment by jcoby on How do I get a zipped file's content using the rubyzip library?jcoby2008-10-25T18:59:44Z2008-10-25T18:59:44ZThanks. 10 points for effort!http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233158#233158Comment by jcoby on Worst PHP practice found in your experience?jcoby2008-10-24T14:14:04Z2008-10-24T14:14:04Zsounds like pretty much 70% of the php sites out there.http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233589#233589Comment by jcoby on Worst PHP practice found in your experience?jcoby2008-10-24T14:12:34Z2008-10-24T14:12:34ZDreamweaver is the source of most PHP evils. It screws up the code formatting, encourages bad css names, and encourages duplicating the layout everywhere thanks to templates and by making it easy to change multiple files. Makes it hell for the rest of us.http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233639#233639Comment by jcoby on Worst PHP practice found in your experience?jcoby2008-10-24T14:11:12Z2008-10-24T14:11:12Z<code>use</code> huh? nice.http://stackoverflow.com/questions/199044/how-to-update-rails-plugins-installed-through-git-but-in-a-svn-repo/215380#215380Comment by jcoby on How to update rails plugins installed through git but in a svn repo?jcoby2008-10-20T18:09:05Z2008-10-20T18:09:05Zthat sort of works, but it puts the directory in an unknown state in terms of svn since it actually just deletes the vendor/plugin/active_merchant dir and reinstalls it.http://stackoverflow.com/questions/199044/how-to-update-rails-plugins-installed-through-git-but-in-a-svn-repo/200349#200349Comment by jcoby on How to update rails plugins installed through git but in a svn repo?jcoby2008-10-20T18:08:11Z2008-10-20T18:08:11Zthey were installed from a git repo, but are housed in my app's svn repo. if that makes sense. see <a href="http://www.activemerchant.org/" rel="nofollow">activemerchant.org</a> and look at the plugiin/install instructions.