User Bryan Woods - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T09:06:42Zhttp://stackoverflow.com/feeds/user/2293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1928989/replacing-broken-external-images-with-custom-image0Replacing Broken External Images With Custom ImageBryan Woods2009-12-18T15:50:34Z2009-12-18T18:31:32Z
<p>I'm looping through an array of URL strings of images hosted at an external site.</p>
<p>It looks something like this:</p>
<pre><code>def get_image_urls
image_url_array.each do |image_url|
puts image_tag image_url
end
end
</code></pre>
<p>Which will return the URLs of images hosted on the external site. The problem is, some of these images might be broken (404). So for example:</p>
<pre><code>get_image_urls
# These would return image_tags, but for brevity...
=> "http://someothersite.com/images/1.jpg"
"http://someothersite.com/images/2.jpg"
"http://someothersite.com/images/3.jpg" # <-- (Broken: 404)
"http://someothersite.com/images/4.jpg"
"http://someothersite.com/images/5.jpg" # <-- (Broken: 404)
</code></pre>
<p>What I'm looking to do is replace the URL strings of the broken images to a "missing" image hosted on my own site. So using the example above, with 3.jpg and 5.jpg being broken, I want to have returned something like this:</p>
<pre><code>get_image_urls
# These would return image_tags, but for brevity...
=> "http://someothersite.com/images/1.jpg"
"http://someothersite.com/images/2.jpg"
"http://mysite.com/images/missing.png"
"http://someothersite.com/images/4.jpg"
"http://mysite.com/images/missing.png"
</code></pre>
<p>Is there a simple way to solve this problem? Thanks so much in advance.</p>
http://stackoverflow.com/questions/1778083/why-does-a-rails-app-on-heroku-serve-assets-via-all-css-and-locally-via-individua/1778139#17781393Answer by Bryan Woods for Why does a rails app on heroku serve assets via all.css and locally via individual filesBryan Woods2009-11-22T07:49:49Z2009-11-22T20:54:33Z<p>This is the result of calling :cache => true on your stylesheet link tag.</p>
<p>:cache => true takes all of the stylesheets provided and concatenates them into one file called all.css. </p>
<p>The reason you're only seeing this on your Heroku deployment is because it calls the concatenated all.css only when the Rails application is running in production mode.</p>
<p>So for example let's say I have three stylesheets and I include them in my header:</p>
<pre><code>= stylesheet_link_tag "application", "jquery-ui", "style", :cache => true
</code></pre>
<p>When in development, this will include application.css, jquery-ui.css, and style.css (in that order).</p>
<p>In production, it will concatenate all of the CSS from the three files (in the order provided) into one single file called "all.css", which will be the only CSS file included.</p>
<p>The benefit is making fewer HTTP requests in production and ideally a smaller file size for your included CSS, which should hopefully speed up page load.</p>
<p><em>Edit</em> As Casper points out in the comments, Heroku has a read-only filesystem.
You might want to look at <a href="http://github.com/amasses/heroku%5Fasset%5Fpackager" rel="nofollow">Heroku Asset Packager</a> for a Heroku-specific solution.</p>
http://stackoverflow.com/questions/1774824/utf8-encoded-urls-in-rails-2-3-4/1774858#17748580Answer by Bryan Woods for utf8 encoded urls in rails 2.3.4Bryan Woods2009-11-21T07:43:21Z2009-11-21T07:43:21Z<p>CGI::escape seems like a quick fix to me.</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.connect CGI::escape("ö"), :controller => 'test'
end
</code></pre>
http://stackoverflow.com/questions/1773491/converting-unformatted-string-of-objects-into-an-array0Converting Unformatted String Of Objects Into An ArrayBryan Woods2009-11-20T21:56:03Z2009-11-21T01:01:12Z
<p>I simply want to convert a string like this:</p>
<pre><code>str = "tree dog orange music apple"
</code></pre>
<p>Into an array like this:</p>
<pre><code>arr = ["tree", "dog", "orange", "music", "apple"]
</code></pre>
<p>I tried going down a path like this before realizing it's a dead end:</p>
<pre><code>str = "tree dog orange music apple"
# => "tree dog orange music apple"
str.gsub!(" ", ", ")
# => "tree, dog, orange, music, apple"
arr = str.to_a
# ["tree, dog, orange, music, apple"]
</code></pre>
<p>Any help would be much appreciated. Thanks!</p>
http://stackoverflow.com/questions/1441008/posting-file-attachments-over-http-via-json-api0POSTing File Attachments over HTTP via JSON APIBryan Woods2009-09-17T19:58:05Z2009-09-17T23:41:31Z
<p>I have a model called Book, which has_many :photos (file attachments handled by paperclip).</p>
<p>I'm currently building a client which will communicate with my Rails app through JSON, using Paul Dix's <a href="http://github.com/pauldix/typhoeus" rel="nofollow">Typhoeus</a> gem, which uses libcurl.</p>
<p>POSTing a new Book object was easy enough. To create a new book record with the title "Hello There" I could do something as simple as this:</p>
<pre><code>require 'rubygems'
require 'json'
require 'typhoeus'
class Remote
include Typhoeus
end
p Remote.post("http://localhost:3000/books.json",
{ :params =>
{ :book => { :title => "Hello There" }}})
</code></pre>
<p>My problems begin when I attempt to add the photos to this query. Simply POSTing the file attachments through the HTML form creates a query like this:</p>
<pre><code> Parameters: {"commit"=>"Submit", "action"=>"create", "controller"=>"books", "book"=>{"title"=>"Hello There", "photo_attributes"=>[{"image"=>#<File:/var/folders/1V/1V8Kw+LEHUCKonqJ-dp3oE+++TI/-Tmp-/RackMultipart20090917-3026-i6d6b9-0>}]}}
</code></pre>
<p>And so my assumption is I'm looking to recreate the same query in the Remote.post call. </p>
<p>I'm thinking that I'm letting the syntax of the array of hashes within a hash get the best of me. I've been attempting to do variations of what I was expecting would work, which would be something like:</p>
<pre><code>p Remote.post("http://localhost:3000/books.json",
{ :params =>
{ :book => { :title => "Hello There",
:photo_attributes => [{ :image => "/path/to/image/here" }] }}})
</code></pre>
<p>But this seems to concatenate into a string what I'm trying to make into a hash, and returns (no matter what I do in the :image => "" hash):</p>
<pre><code>NoMethodError (undefined method `stringify_keys!' for "image/path/to/image/here":String):
</code></pre>
<p>But I also don't want to waste too much time figuring out what is wrong with my syntax here if this isn't going to work anyway, so I figured I'd come here.</p>
<p>My question is:
<strong>Am I on the right track?</strong> If I clear up this syntax to post an array of hashes instead of an oddly concatenated string, should that be enough to pass the images into the Book object?</p>
<p>Or am I approaching this wrong?</p>
http://stackoverflow.com/questions/1387577/uploading-a-file-to-a-directory-outside-of-rails-root-with-attachmentfu/1387636#13876361Answer by Bryan Woods for Uploading a file to a directory outside of RAILS ROOT with attachment_fuBryan Woods2009-09-07T05:14:26Z2009-09-07T05:14:26Z<p>This probably isn't an Attachment-Fu issue, but rather how Ruby handles File I/O as well as how files are stored in Unix.</p>
<p>So for instance if your app lives in, say, ~/Users/ron/APP_NAME</p>
<p>If you change the above code:</p>
<pre><code>:path_prefix => "~/APP_NAME/uploads/"
</code></pre>
<p>To:</p>
<pre><code>:path_prefix => "../#{RAILS_ROOT}/uploads"
</code></pre>
<p>The files would be stored in a folder called "uploads" in ~/Users/ron/uploads. The "../" means one directory above the current Rails root. If you want to go up two directories, it would be "../../" and so on.</p>
<p>But that only addresses hierarchical navigation. If you wanted to tell Attachment-Fu to store files in a hardcoded directory in your filesystem, you could give it a file path such as "~/Users/ron/APP_NAME/uploads", but keep in mind hardcoding in a file path this way is brittle and could be a pain point in the future should your file storage requirements change.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1107127/multiple-uploads-to-amazon-s3-from-ruby-on-rails-what-background-processing-sys2Multiple Uploads to Amazon S3 from Ruby on Rails - What Background Processing System to Use?Bryan Woods2009-07-10T00:28:00Z2009-08-28T14:30:11Z
<p>I'm developing a Ruby on Rails application that needs to allow the user to simultaneously upload 16 high-quality images at once.</p>
<p>This often means somewhere around 10-20 megabytes (sometimes more), but it's the number of connections that are becoming the most pertinent issue.</p>
<p>The images are being sent to Amazon S3 from Paperclip, which unfortunately opens and closes a new connection for each of the 16 files. Needless to say, I need to move the system to run as background processes to keep my web server from locking up like it already is with no traffic.</p>
<p>My question is, out of all the Rails-based systems to use for background jobs (Starling, BackgroundRb, Spawn, etc.), if there is one that might fit the bill for this scenario better than the others (I'm new to building an in-the-background system anyway, so all of the available systems are equally new to me)?</p>
http://stackoverflow.com/questions/1318802/enabling-and-disabling-radio-buttons-depending-on-user-selection1Enabling and Disabling Radio Buttons Depending on User SelectionBryan Woods2009-08-23T15:22:31Z2009-08-23T16:06:26Z
<p>I'm looking to write jQuery to only enable radio buttons depending on which radio buttons are currently selected in accordance with some business logic.</p>
<p>Essentially there are 3 groups of 3 radio buttons, which end up looking something like (my apologies for being verbose with this example HTML, but hoping this will show what I mean):</p>
<pre><code><p>
<label for="group_one">Group One</label>
</p>
<p>
<div class="group_one">
<div id="group_one_choice_one">
<label for="group_one_choice_one">Choice One</label>
<br />
<input checked="checked" id="choice_one" type="radio" value="1" />
<br />
</div>
<div id="group_one_choice_two">
<label for="group_one_choice_two">Choice Two</label>
<br />
<input id="group_one_choice_two" type="radio" value="2" />
<br />
</div>
<div id="group_one_choice_three">
<label for="group_one_choice_three">Choice Three</label>
<br />
<input id="choice_three" type="radio" value="3"/ >
<br />
</div>
</div>
</p>
<p>
<label for="group_two">Group Two</label>
</p>
<p>
<div class="group_two">
<div id="group_two_choice_one">
<label for="group_two_choice_one">Choice One</label>
<br />
<input checked="checked" id="choice_one" type="radio" value="1" />
<br />
</div>
<div id="group_two_choice_two">
<label for="group_two_choice_two">Choice Two</label>
<br />
<input id="group_two_choice_two" type="radio" value="2" />
<br />
</div>
<div id="group_two_choice_three">
<label for="group_two_choice_three">Choice Three</label>
<br />
<input id="choice_three" type="radio" value="3"/ >
<br />
</div>
</div>
</p>
<p>
<label for="group_three">Group Three</label>
</p>
<p>
<div class="group_three">
<div id="group_three_choice_one">
<label for="group_three_choice_one">Choice One</label>
<br />
<input checked="checked" id="choice_one" type="radio" value="1" />
<br />
</div>
<div id="group_three_choice_two">
<label for="group_three_choice_two">Choice Two</label>
<br />
<input id="group_three_choice_two" type="radio" value="2" />
<br />
</div>
<div id="group_three_choice_three">
<label for="group_three_choice_three">Choice Three</label>
<br />
<input id="choice_three" type="radio" value="3"/ >
<br />
</div>
</div>
</p>
</code></pre>
<p>Where it gets tricky is the logic needed to determine which radio buttons to display and which to enable. A user must select one choice from each group, but cannot repeat the same choice from one group to another.</p>
<p>Ideally when the user gets to the page, all of the radio buttons would be available but unselected.</p>
<p>If the user were to first select (for example) Choice Two in Group Three, the script should then disable Choice Two in both Group One and Group Two. If the user then selects Choice Three in Group Two, it should then only enable Choice One in Group One, and so on.</p>
<p>Any help would be very, very much appreciated. I would post the jQuery I've been attempting to write to solve this problem but I don't think I've been going about this very well and would love any help working through it. Thanks!</p>
http://stackoverflow.com/questions/1255774/pdf-generation-with-prawn-and-prawnto/1255816#12558161Answer by Bryan Woods for PDF generation with Prawn and PrawntoBryan Woods2009-08-10T16:17:14Z2009-08-10T16:17:14Z<p>The prawnto plugin is is up and alive on
<a href="http://github.com/thorny-sun/prawnto/tree/master" rel="nofollow">Github</a>, albeit without much documentation.</p>
<p>I have built several Rails apps that put PDF generation front and center, and I can definitely attest that Prawn/Prawnto is the way to go. The DSL provided by Prawn is really elegant and pleasant to work with, and even though the library isn't as feature-packed as others, it handles most of what you will need out of the box without any pain at all.</p>
<p>I saw Gregory Brown (author of the Prawn library) give a talk about Ruby implementations, and he's a user of JRuby. I'd be surprised if you find any problems there, though I haven't personally used Prawn with JRuby.</p>
<p>The <a href="http://groups.google.com/group/prawn-ruby" rel="nofollow">Prawn Google Group</a> is relatively active and helpful, so you might want to check it out as well.</p>
<p>It also appears that the <a href="http://prawn.majesticseacreature.com/" rel="nofollow">Prawn website</a> is still available as well.</p>
http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu1TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T16:26:26Z2009-07-25T12:17:17Z
<p>I'm handling file attachments in my Rails app with Attachment_fu, which provides a <code>public_filename</code> method to retrieve a file's URL.
I'm using it on a model called Cover, so if I want to call the URL of an uploaded cover image, in a view I would do:</p>
<pre><code><%= image_tag(@cover.public_filename) %>
</code></pre>
<p>This works just fine when the user has the appropriate attachment, but in my application it is not a requirement for a user to upload an attachment. </p>
<p>Therefore, calling <code>@cover.public_filename</code> will throw a TypeError: Can't convert nil into String for the obvious reason that the file is nil.</p>
<p>However, I'm having trouble adding logic to this problem effectively since the object is nil, and all of my attempts with doing things like <code>unless @cover.public_filename.nil?</code> or <code>if @cover.public_filename == nil</code> have been fruitless and cause the same Type Error.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1179100/problem-getting-ajax-effect-to-work-with-rubyonrails/1179280#11792800Answer by Bryan Woods for Problem getting AJAX effect to work with RubyOnRailsBryan Woods2009-07-24T18:13:32Z2009-07-24T18:18:56Z<p>Since the animation is "snapping," you might want to try adding a duration option:
<code>Effect.SlideUp('id_of_element', { duration: 3.0 });</code></p>
http://stackoverflow.com/questions/41188/waveform-visualization-in-ruby2Waveform Visualization in RubyBryan Woods2008-09-03T04:54:21Z2009-07-17T23:39:25Z
<p>I'm about to start a project that will record and edit audio files, and I'm looking for a good library (preferably Ruby, but will consider anything other than Java or .NET) for on-the-fly visualization of waveforms.</p>
<p>Does anybody know where I should start my search?</p>
http://stackoverflow.com/questions/1127777/are-variables-defined-locally-in-a-partial-also-visible-to-the-invoking-erb-templ/1128196#11281961Answer by Bryan Woods for Are variables defined locally in a partial also visible to the invoking erb template?Bryan Woods2009-07-14T21:34:44Z2009-07-14T21:34:44Z<p>Short answer: Yes. You would theoretically be able to access the defined variable.</p>
<p>Longer answer: Don't define variables in views. Adding logic to the views (and therefore pushing it to the client) is really bad practice. Use models for your business logic and controllers for your action handling.</p>
http://stackoverflow.com/questions/1123524/what-is-the-current-standard-way-to-deploy-a-rails-app/1123841#112384119Answer by Bryan Woods for What is the current standard way to deploy a Rails app?Bryan Woods2009-07-14T06:54:40Z2009-07-14T06:54:40Z<p>Capistrano is still the standard for typical Rails deployments, yes.</p>
http://stackoverflow.com/questions/1123030/rails-protecting-code-and-licensing-for-independently-deployed-rails-applicati/1123829#11238291Answer by Bryan Woods for (Rails) Protecting code and licensing for independently deployed Rails applications...?Bryan Woods2009-07-14T06:50:37Z2009-07-14T06:50:37Z<p>My knowledge doesn't extend much into this realm, but you might want to look into using JRuby to package the Rails application as an executable JAR.</p>
<p><a href="http://fi.github.com/" rel="nofollow">Github recently did something similar</a> for their Firewall Install product (<a href="http://github.com/blog/441-announcing-github-fi" rel="nofollow">more information on the packaging process here</a>).</p>
<p>It seems likely that this kind of requirement would be much more common in Javaland, so I wouldn't be surprised at all if going the JRuby route was your best bet.</p>
http://stackoverflow.com/questions/38901/strange-rails-authentication-issue2Strange Rails Authentication IssueBryan Woods2008-09-02T05:43:40Z2009-07-01T06:49:40Z
<p>I'm using the RESTful authentication Rails plugin for an app I'm developing.
I'm having a strange issue I can't get to the bottom of.
Essentially, the first time I log into the app after a period of inactivity (the app is deployed in production, but only being used by me), I will be brought to a 404 page, but if I go back to the home page and log in again, everything works according to plan.
Any ideas?</p>
http://stackoverflow.com/questions/1045922/what-do-you-prefer-for-showing-your-local-rails-projects-to-friends/1046034#10460348Answer by Bryan Woods for What do you prefer for showing your local rails projects to friends?Bryan Woods2009-06-25T20:24:28Z2009-06-25T20:24:28Z<p><a href="http://heroku.com" rel="nofollow">Heroku</a>.</p>
<p>Deploying a free application is as simple as:</p>
<pre><code>$ heroku create
$ git push heroku master
</code></pre>
<p>And you can scale up from there if you ever need to obviously as well.</p>
http://stackoverflow.com/questions/1041035/what-are-the-best-gems-for-social-networking-features/1041056#10410563Answer by Bryan Woods for What are the best gems for social networking features?Bryan Woods2009-06-24T21:14:39Z2009-06-24T21:14:39Z<p><a href="http://github.com/insoshi/insoshi/tree/master" rel="nofollow">Insoshi</a> and <a href="http://lovdbyless.com/" rel="nofollow">Loved by Less</a> are both great open source pre-built social networking platforms for Ruby on Rails.</p>
<p>For Twitter and Facebook specifically, check out the <a href="http://twitter.rubyforge.org/" rel="nofollow">Twitter gem</a> and <a href="http://rfacebook.rubyforge.org/" rel="nofollow">Rfacebook</a>, respectively.</p>
http://stackoverflow.com/questions/1036984/how-to-access-and-submit-related-polymorphic-models-in-the-same-form-in-rails/1038712#10387121Answer by Bryan Woods for How to access and submit related polymorphic models in the same form, in Rails?Bryan Woods2009-06-24T14:26:45Z2009-06-24T14:26:45Z<p>There is a <a href="http://railscasts.com/episodes/73-complex-forms-part-1" rel="nofollow">RailsCast on Complex Forms</a> that might help you with building a single form from multiple models. </p>
http://stackoverflow.com/questions/1032143/rails-users-what-exception-notification-software-do-you-use/1033616#10336161Answer by Bryan Woods for Rails users: What exception notification software do you use?Bryan Woods2009-06-23T16:13:21Z2009-06-23T16:13:21Z<p><a href="http://hoptoadapp.com/welcome" rel="nofollow">Hoptoad</a> is my preferred exception notifier by a landslide.
It's intelligent about the emails it sends me, and it's web interface does a nice job of automatically organizing all of the exceptions.</p>
<p>If I make a change that causes an error, I'll likely get several of the same error messages, so Hoptoad sends me an email, and in the web interface I might see something like 4 of the same error, I can click through to the details, patch the bug, and with one click check them off as fixed.</p>
<p>It's a really nice clean way of handling exceptions and strikes me as far less intrusive/ghetto.</p>
http://stackoverflow.com/questions/1033484/is-it-feasible-to-use-ruby-1-9-for-rails-yet/1033540#10335403Answer by Bryan Woods for Is it feasible to use Ruby 1.9 for Rails yet?Bryan Woods2009-06-23T16:02:46Z2009-06-23T16:02:46Z<p>The current release of Rails (2.3.2) <em>should</em> work just fine with Ruby 1.9, and Rails 3.0 should have no problem.</p>
<p>That being said, the adoption of Ruby 1.9 for use with Rails is more a social problem than a technical one right now. There's a chicken-and-egg situation with many Ruby gems and Rails plugins not being compatible with Ruby 1.9, which causes developers to not use 1.9, which in turn causes fewer patches to be released, etc, etc, etc...</p>
<p>Gregory Brown (author of the fantastic Prawn Ruby gem) gave a great talk recently at GoRuCo called "<a href="http://goruco2009.confreaks.com/30-may-2009-11-00-where-is-ruby-really-heading-gregory-brown.html" rel="nofollow">Where is Ruby Really heading?</a>" that addresses these issues.</p>
<p>In short, Ruby 1.9 is a substantial leap forward for the language and platform, and it's essential that developers install it and being patching their libraries and dependencies in order to ensure more rapid adoption. </p>
<p>Whether it's already feasible for your needs is likely dependent on your app's dependencies and whether or not the time spent writing patches equates to the benefit of Ruby 1.9.</p>
http://stackoverflow.com/questions/1033366/search-in-ruby-on-rails/1033409#10334090Answer by Bryan Woods for Search in Ruby On RailsBryan Woods2009-06-23T15:43:23Z2009-06-23T15:43:23Z<p>You might want to look into Sphinx/Thinking Sphinx for fast full-text search.</p>
<p><a href="http://freelancing-god.github.com/ts/en/" rel="nofollow">Thinking Sphinx</a></p>
<p>I don't know if installing Unix packages and that whole process is overkill for what you're looking for on Dreamhost, but it's a very fast and robust solution that will serve your needs well in the future.</p>
http://stackoverflow.com/questions/987887/how-ruby-on-rails-to-build-a-basic-site/988001#9880010Answer by Bryan Woods for How: Ruby on Rails to build a basic siteBryan Woods2009-06-12T17:37:07Z2009-06-12T17:37:07Z<p>It sounds to me like this site might not be the best way to learn Ruby on Rails.
Rails is really great for CRUD applications (applications which allow users to Create, Read, Update, and Delete records in a database). Since your site looks to be all static pages except for the "Contact Us" section (which I'm assuming is a form that sends an email with some kind of confirmation page), you're actually going to find yourself kind of fighting against "The Rails Way." </p>
<p>Ideally in a situation like this, you could just throw all of your static pages into the public/ directory and make a quick Rails scaffold for the "Contact Us" page.</p>
<p>But by doing that, you won't end up with a finished project that resembles a typical Ruby on Rails application, and in the worst case, you might find yourself having to "unlearn" or at least "relearn" a lot of the aspects of Rails programming.</p>
<p>I think building a CRUD application with several resources (the canonical <a href="http://rubyonrails.org/screencasts" rel="nofollow">"Rails blog in 15 minutes"</a> is a great start. You'll learn more by practicing Rails conventions and seeing the kind of workflow and application that really allows Rails to shine.</p>
<p>Then when it comes time to build another mostly-static website, you'll know exactly what you'll need to do to go about it.</p>
<p>My 2 cents, anyway.</p>
http://stackoverflow.com/questions/987478/are-applications-written-for-iphone-binary-compatible-with-ipod-touch/987496#9874969Answer by Bryan Woods for Are applications written for iPhone binary compatible with iPod Touch?Bryan Woods2009-06-12T15:59:10Z2009-06-12T15:59:10Z<p>Yes.
So long as your application does not take advantage of iPhone-specific features (SMS is a great example), you should be able to run it on OS-compatible iPhone and iPod Touch devices.</p>
http://stackoverflow.com/questions/894647/radiant-extensions-on-heroku/894843#8948432Answer by Bryan Woods for Radiant extensions on Heroku?Bryan Woods2009-05-21T20:05:02Z2009-05-21T20:05:02Z<p>Heroku doesn't currently support git submodules.
However, their (excellent) documentation expresses a way around this: <a href="http://docs.heroku.com/constraints#git-submodules" rel="nofollow">check it out here</a></p>
<p>From the docs:</p>
<pre><code>$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git add .
$ git commit -m "brought submodules into the main repo"
</code></pre>
http://stackoverflow.com/questions/870507/determining-if-a-variable-is-within-range-ruby2Determining if a variable is within range? (Ruby)Bryan Woods2009-05-15T19:46:18Z2009-05-16T04:58:29Z
<p>I need to write a loop that does something like:</p>
<pre><code>if i (1..10)
do thing 1
elsif i (11..20)
do thing 2
elsif i (21..30)
do thing 3
etc...
</code></pre>
<p>But so far have gone down the wrong paths in terms of syntax. Any help would be much appreciated.</p>
http://stackoverflow.com/questions/754331/accessing-users-objects-in-different-states-ruby-on-rails-restful-authenticati0Accessing User's Objects in Different States (Ruby on Rails, RESTful Authentication)Bryan Woods2009-04-16T00:34:13Z2009-04-16T01:18:04Z
<p>In my Rails application I have a User model (more or less built by RESTful Authentication), and several other models belonging to the user.
So let's say, for example:</p>
<p>user has_many :posts</p>
<p>post belongs_to :user</p>
<p>Anywhere in the users resource I can access the user variables as I would expect.
@user.name, @user.email, @user.login, etc. all return the expected object.</p>
<p>However, I can't seem to access any of these attributes from any other resource (in this example, posts) without it returning nil (nil rather than a NoMethodError).</p>
<p>Why is this? It seems even stranger to me that I can call <code>current_user</code> just fine, as in <code>current_user.name</code>, <code>current_user.email</code>, but not for the user in question.</p>
http://stackoverflow.com/questions/732223/accessing-user-password-variable-scope-in-rails2Accessing User Password: Variable Scope in RailsBryan Woods2009-04-08T22:59:27Z2009-04-10T18:17:45Z
<p>I'm writing a very simple mailing system for a Rails app. I'm using RESTful authentication.
It's a fairly conventional setup, where I'm sending the same email when a user signs up and when a user forgets their password.
I'm just having one problem that I can't seem to wrap my head around.</p>
<p>I'd like to use the same email template for both instances, even though the "new user" email will come from a users controller and the "forgot password" email will come from a passwords controller.</p>
<p>The email looks something like this:</p>
<pre><code><%=h @user.name %>,
Your membership details:
Username: <%=h @user.login %>
Password: <%=h @user.password %>
</code></pre>
<p>When a user signs up, this works just fine, causing an email that looks something like:</p>
<pre><code> Bryan,
Your membership details:
Username: bryan
Password: password
</code></pre>
<p>Unfortunately, everything breaks when attempting to use this template to send a "forgot password" email from the passwords controller.
The thing that's perplexing me, though, is that it only sort of breaks:</p>
<pre><code> Bryan,
Your membership details:
Username: bryan
Password:
</code></pre>
<p>In other words, @user.name is still valid, as is @user.login. But for some reason in this state @user.password doesn't come through.</p>
<p><strong>Thanks for the responses. To be clear, security really isn't an issue in this case, and for that reason it'd be nicer to be able to send a forgotten password in plain text rather than going through the resetting password process, but I do appreciate that this is usually not the case.</strong></p>
http://stackoverflow.com/questions/544031/problem-with-regular-expression-to-remove-html-tags2Problem With Regular Expression to Remove HTML TagsBryan Woods2009-02-12T23:34:39Z2009-04-03T21:59:03Z
<p>In my Ruby app, I've used the following method and regular expression to remove all HTML tags from a string:</p>
<pre><code>str.gsub(/<\/?[^>]*>/,"")
</code></pre>
<p>This regular expression did just about all I was expecting it to, except it caused all quotation marks to be transformed into <code>&#8220;</code>
and all single quotes to be changed to <code>&#8221;</code>
.</p>
<p>What's the obvious thing I'm missing to convert the messy codes back into their proper characters?</p>
<p><strong>Edit: The problem occurs with or without the Regular Expression, so it's clear my problem has nothing to do with it. My question now is how to deal with this formatting error and correct it. Thanks!</strong></p>
http://stackoverflow.com/questions/219476/using-php-to-access-a-users-webcam1Using PHP to Access a User's WebcamBryan Woods2008-10-20T18:55:09Z2009-03-18T08:54:09Z
<p>I'd like to allow users to record videos directly from their webcam.
I haven't done much work with PHP but am stuck with it for this project.
We currently have a system in place for video uploading and encoding, but nothing to actually access a user's webcam.
How would you recommend I proceed?</p>
http://stackoverflow.com/questions/1928989/replacing-broken-external-images-with-custom-image/1929935#1929935Comment by Bryan Woods on Replacing Broken External Images With Custom ImageBryan Woods2009-12-18T20:39:36Z2009-12-18T20:39:36ZI appreciate the input. Unfortunately this time I need to do this all server-side, but will keep this in mind for the future.http://stackoverflow.com/questions/1774824/utf8-encoded-urls-in-rails-2-3-4/1774984#1774984Comment by Bryan Woods on utf8 encoded urls in rails 2.3.4Bryan Woods2009-11-21T16:35:14Z2009-11-21T16:35:14ZGlad it worked! There should be a check mark by the up and down vote arrows next to my answer. Checking it will mark the question as answered.http://stackoverflow.com/questions/1441008/posting-file-attachments-over-http-via-json-api/1441895#1441895Comment by Bryan Woods on POSTing File Attachments over HTTP via JSON APIBryan Woods2009-09-18T01:38:15Z2009-09-18T01:38:15ZThis is a very interesting point, however this client is not a browser-based application so an iframe is unfortunately out of the question.http://stackoverflow.com/questions/1107127/multiple-uploads-to-amazon-s3-from-ruby-on-rails-what-background-processing-sys/1107158#1107158Comment by Bryan Woods on Multiple Uploads to Amazon S3 from Ruby on Rails - What Background Processing System to Use?Bryan Woods2009-07-10T00:53:13Z2009-07-10T00:53:13ZDelayed Job looks like it'll work perfect. Thanks!http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/799589#799589Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T21:54:41Z2009-04-28T21:54:41ZWell I'll be. Thanks for the tip.http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/798996#798996Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T21:35:57Z2009-04-28T21:35:57Zpublic_filename? doesn't seem to work.http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/798993#798993Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T19:21:20Z2009-04-28T19:21:20ZSo strange. I've restarted the server and can't find another instance. The stack trace looks like it's generating from attachment_fu/backends/s3_backend.rb (I'm using the S3 backend in Attachment_fu). I can't imagine this could be a bug in the plugin, but I'm at a loss as to where else this could be coming from.http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/798993#798993Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T18:50:28Z2009-04-28T18:50:28ZYes, typo. My apologies. <%= image_tag(@cover.public_filename) unless @cover.nil? %> Had no effect on solving the Type Error in this case, unfortunately. It looks like the error is caused when @cover.public_filename gets processed either way.http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/798993#798993Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T18:32:00Z2009-04-28T18:32:00ZThanks for the update. This makes total sense with @cover being nil and @cover.class => NilClass in this case. I'm still getting a TypeError the moment @cover.public_filename is processed using <%= image_tag(@cover.public_filename) unless @cover.nil %> though, and can't seem to figure out why. http://stackoverflow.com/questions/798775/typeerror-cant-convert-nil-into-string-with-attachmentfu/798996#798996Comment by Bryan Woods on TypeError (Can't convert nil into String) With Attachment_FuBryan Woods2009-04-28T18:00:24Z2009-04-28T18:00:24ZThis is along the lines of what I was expecting, but is returning a NoMethodError (undefined method `public_filename?'). Does this make sense?http://stackoverflow.com/questions/754331/accessing-users-objects-in-different-states-ruby-on-rails-restful-authenticati/754424#754424Comment by Bryan Woods on Accessing User's Objects in Different States (Ruby on Rails, RESTful Authentication)Bryan Woods2009-04-16T03:17:42Z2009-04-16T03:17:42ZIt's strange, you're saying exactly what I would expect, but the problem is persisting. I'm beginning to wonder what might be going on under the hood that I'm not noticing.http://stackoverflow.com/questions/754331/accessing-users-objects-in-different-states-ruby-on-rails-restful-authenticati/754424#754424Comment by Bryan Woods on Accessing User's Objects in Different States (Ruby on Rails, RESTful Authentication)Bryan Woods2009-04-16T01:24:33Z2009-04-16T01:24:33ZThanks for the response. Let's say I'm trying to access the user's name who the post belongs to from Posts/show. The name would be @user.name in the Users resource. And for show in the Posts controller currently: @post = Post.find(params[:id], @user).http://stackoverflow.com/questions/732223/accessing-user-password-variable-scope-in-rails/732350#732350Comment by Bryan Woods on Accessing User Password: Variable Scope in RailsBryan Woods2009-04-09T19:12:04Z2009-04-09T19:12:04Z@MarkusQ That's shortsighted. What if it's an application used internally and informally between myself and a few friends? Session storage and passwords is more about etiquette than security in this case, and building a "reset password" system seems like overkill.http://stackoverflow.com/questions/732223/accessing-user-password-variable-scope-in-rails/732350#732350Comment by Bryan Woods on Accessing User Password: Variable Scope in RailsBryan Woods2009-04-09T15:00:06Z2009-04-09T15:00:06ZSecurity really isn't an issue with this application, but I would usually agree.http://stackoverflow.com/questions/567331/at-what-point-do-you-perform-front-end-optimization/567361#567361Comment by Bryan Woods on At what point do you perform front-end optimization?Bryan Woods2009-02-19T23:48:42Z2009-02-19T23:48:42ZI'm interested more in when you recommend doing these things rather than how to do them. Any insight?