search for: mccoey

Displaying 6 results from an estimated 6 matches for "mccoey".

Did you mean: macey
2006 Feb 21
4
File_Column w/ Dynamic Sizing
I''m running file_column 0.3.1, and having a few problems... which are: - Uploading a 378x567 jpg, and using :magick => {:geometry => "100x100" }, my image ends up being 67x100 ? Is there a way to "force" the image to be the size you specify ? - My view has a drop-down of sizes, and I''m trying to pass in this size into :magick =>
2006 Nov 17
6
RESTful routes and resulting urls
if I have the following in my routes.rb: map.resources :product_categories it provides urls such as: /product_categories /product_categories/1 /product_categories/1;edit etc. and uses the ProductCategories controller. how can I keep the same controller (and model) but set up the resources so that I can have any abitrary url point to the existing controller, much like specifying the controller
2006 Feb 21
2
caching and admin area
i have created some ''public'' controllers like so: ./script/generate controller example and an ''admin'' controller like this: ./script/generate controller admin/example now i want to have caching in the ''public'' controllers so i add something like this: caches_action :show, :whatever but i want the ''admin'' controller to do
2005 Oct 18
1
rails gem update
hi all, i just did a ''gem update --source gems.rubyonrails.org'' and then a ''gem cleanup'' and all appeared to run smoothly but now when i start up a webrick server i get the following: /usr/local/lib/site_ruby/1.8/rubygems.rb:204:in `report_activate_error'': RubyGem version error: activesupport(1.2.0 not = 1.1.1) (Gem::LoadError) from
2006 Feb 01
18
Switchtower Error
This is my deploy file set :application, "varcasa stage" set :repository, "file:///c:/svnrepo/thenali/trunk" # ============================================================================= # ROLES # ============================================================================= # You can define any number of roles, each of which contains any number of # machines. Roles might
2005 Oct 06
8
accessing extra request parameters
hi all, how are other people passing and accessing ''get'' parameters from their apps? what is the best way to do it? ie: www.example.com/controller/action/id/extra/extra2/ ?? or www.example.com/controller/action/id/~extra/extra2/ or what ever.... are there built in methods for passing and accessing extra parameters? thanks for your suggestions -felix