similar to: Having issues with paperclip, S3, and Aptana Cloud

Displaying 20 results from an estimated 5000 matches similar to: "Having issues with paperclip, S3, and Aptana Cloud"

2008 Sep 02
4
Attachment_fu, Paperclip, & S3
For various reasons, I made a git branch and installed Paperclip in place of attachment_fu. Paperclip works great except that images seem to have lost some quality; edges have gone a little too jaggy to be able to drop attachment_fu just yet. After a post on the Paperclip Google Group, someone suggested the :convert_options could be passed additional attributes, like ''quality'',
2009 Apr 16
6
Using Paperclip::Processor and RMagick to sharpen my thumbnails
Hi, I''m brand new to RMagick (and pretty new to Rails for that matter!). Right now, site owners are allowed to upload product and ingredient photos to the website. Everything works great, ingredients are sized down and proportioned correctly...the problem is that the resulting images are so blurry! So I''ve been doing some research and it looks like Paperclip::Processor may be the
2011 Aug 07
2
PROBLEM WITH PAPERCLIP
hello, i am trying to upload a image file ...using paperclip in rails 3 i did as follows 1. In gemfile => included gem paperclip 2.In config/environments /development.rb => Paperclip.options[:command_path] = "/usr/bin/" (convert path) 3.created a controller *picusers *and defined => def create @picuser = Picuser.create(params[:picuser]) end 4.created a model *picuser
2011 Aug 13
1
Paperclip - could not find generator.
Hello there, I installed plugin "paperclip" for working with images, but after running a command -- rails generate paperclip user avatar I am getting error -- Could not find generator paperclip. If I will try run a command -- bundle show paperclip So I will get -- /Library/Ruby/Gems/1.8/gems/paperclip-2.3.0 In Gemfile I have -- gem "paperclip", "~> 2.3" I
2010 Sep 01
1
Faking Paperclip has_attached_file with Factory girl?
Hello! I wonder if it''s possible to simulate Paperclip''s has_attached_file with Factory Girl and then test it with Rspec. I don''t get it to work. My factories.rb file looks like this: Factory.define :user do |user| user.name "Anders" user.email "user-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org" user.password
2007 Nov 18
2
Aptana RadRails 0.9.1 Final Release
For fellow Radrails users, there is happy news ! Aptana RadRails 0.9.1 Final Release has been released since 15th November 2007. Users who are still on 0.8.0 are highly recommended to upgrade. Here''s the Trac changelog: http://www.aptana.com/trac/milestone/RadRails%20IDE%200.9.1 And the ASAP one: http://support.aptana.com/issues/browse/ROR/fixforversion/10004 Apparently, 66 tickets
2008 Jun 17
6
Book released "Aptana RadRails: An IDE for Rails Development"
Hi, Some months ago, a person from Packt Publishing posted a message in this list looking for potential Authors/Reviewers for new Ruby on Rails books. Now I''m proud to announce my book [1] "Aptana RadRails: An IDE for Rails Development". If you are using [2] Aptana RadRails, or if you are looking for an IDE and you still haven''t decided which one to use, you might
2007 Sep 28
4
Aptana Radrails M7 Beta - Best Way to Upgrade
Hi Just upgraded smoothly to long overdue Aptana M7 Beta which was released on 25/9/2007. FYI, the best way to upgrade from July''s M5 (M6 was skipped) is as follows :- 1) Click Help/Software Upgrades/Finad and Install 2) Manually adding the following update site to the update manager: http://update.aptana.com/update/rails/beta/3.2/site.xml
2008 Jan 18
2
Adding an existing project to Aptana RadRails
I''ve just installed Aptana RadRails and now want to import an existing project that was originally created in the Ruby console using the "ruby script/generate controller say" command. I now want to import this into Aptana so I don''t have to use Notepad to edit the .rb and .rhtml files. Does anyone know how to do this or know of a decent user guide I can read? Thank
2010 Aug 07
12
Paperclip Trouble - Not Writing to the Database
Hello all, I''m a Rails newbie trying to get a basic implementation of Paperclip up but it''s giving me problems. I''m developing on Windows XP (I know...) with WEBrick and MySQL. In my model I have: class User < ActiveRecord::Base has_attached_file :avatar,:styles => { :medium => "300x300>", :thumb => "100x100>" }, :url =>
2010 Oct 13
1
Installation of rmagick --version '>= 2.13.1' on CENTOS
I have successfully installed the following components in my centos server: Ruby 1.8.7 Rails 2.3.8 Gem 1.3.7 paperclip --version ''>= 2.3.3'' will_paginate --version ''>= 2.3.15'' tlsmail --version ''>= 0.0.1'' but facing problem at the time of installation of rmagick --version ''>= 2.13.1'' When I go for
2010 Mar 15
0
Configuring Paperclip on windows...
I''ve been banging my head against rails in the last couple of days trying to get paperclip to work in windows. I have ImageMagick working. I have RMagick working (and tested it on rails). I even configured paperclip to have the correct path to identity.exe, however I keep getting an error that identity cannot be executed. --Dmitriy -- You received this message because you are
2007 Aug 26
4
What do you think of Aptana?
Hello everyone, I am new to this forum and Ruby, and already have a question - what do you think of Aptana IDE in regards to RoR development? Thanks, Val -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email
2009 Jan 07
0
how rails insert object id to database?
[4;35;1mUser Create (0.5ms) [0m [0mINSERT INTO `users` (`name`, `avatar_file_name`, `avatar_file_size`, `created_at`, `updated_at`, `avatar_content_type`) VALUES(''hello'', ''Screenshot.png'', 253800, ''2009-01-08 08:27:19'', ''2009-01-08 08:27:19'', ''image/png'') [0m [paperclip] Saving attachments. [paperclip]
2008 Sep 17
1
Stubbing Paperclip calls to Amazon S3 (for Rspec)
Would anyone happen to know how to stub a call to S3 from Paperclip? I''ve searched every where and no one seems to have posted anything about this. I''ve done very little in the way of spec''ing dependencies on external services, so any ideas on how to do this with Paperclip & S3 would be most appreciated. I''m happy with stubbing out Thinking Sphinx - would
2009 Oct 08
2
Variable sizes with paperclip
How can i create variable sizes with paperclip. That the user can set the size he want and paperclip makes the picture. I only can create fixed sizes. -- Posted via http://www.ruby-forum.com/.
2009 Aug 23
1
Install Aptana Radrails into Eclipse Galileo - Simple Tutorial
1. Download Eclipse 3.50 aka Galileo 2. Launch Eclipse 3. Click Help/Install Software 4. Install Aptana Studio 1.5 as a plug into Eclipse More at Rails... Rails... Rails CCH http://cch4rails.blogspot.com
2010 Oct 22
1
problem about create project by aptana
After installed ruby 1.92 and rails 3.0.1 I can create project by windows cmd but when create project with aptana it perform conflict the pic i attached.Any one face this problem .Share idea please best Tanawat Attachments: http://www.ruby-forum.com/attachment/5235/railsconflicct.png -- Posted via
2010 Jan 30
1
Scaffold in Aptana error - wrong number of arguments(1 for 2) help?
Hi all - I''m new to rails and programming in general. I installed Rails 2.3.5, using mac os x 10.5.8, running into problems using scaffold. I am using Aptana Radrails as my IDE. I was not encountering this problem when using Rails 1.2.6, which is odd because from what I can gather online the entry syntax I am using should only work with Rails 2.x . Any help would be greatly appreciated.
2008 Nov 28
0
Paperclip Plugin - Routing Error?
Hi- I am using the plugin "paperclip", this is my second time using it, the first time, I had no issues... This time, I added paperclip onto my model, no issues until I tried to render the images I uploaded. I see this in the development.log: ActionController::RoutingError (No route matches "/avatars/2/original/ DSCN2149.JPG" with {:method=>:get}): I didn''t