From a84e8a62e11804d8505fed4ba6faee1d32e1f178 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 18 Apr 2015 21:40:36 +0200 Subject: [PATCH] Changing from double to single quotes. Fixing <<" for rdoc --- app/models/screenshot.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/models/screenshot.rb b/app/models/screenshot.rb index a97f110..17d42e0 100644 --- a/app/models/screenshot.rb +++ b/app/models/screenshot.rb @@ -6,12 +6,12 @@ class Screenshot < ActiveRecord::Base } has_attached_file :image, - styles: { :large => "800x600>", :thumb => "160x120>" }, - default_url: "/images/dummy/no-screenshots-upload-one.svg", - #path: ":rails_root/public/system/:class/:attachment/:id_partition/:style/:filename", - path: ":rails_root/public/screenshots/:id_partition/:style.png", - url: "/screenshots/:id_partition/:style.png", - hash_secret: "M4xGM9v6y17Y27sZ1liWrnQaXdX4YDdZCJ7fOqcAUg3cZJqK9x" + styles: { :large => '800x600>', :thumb => '160x120>' }, + default_url: '/images/dummy/no-screenshots-upload-one.svg', + #path: ':rails_root/public/system/:class/:attachment/:id_partition/:style/:filename', + path: ':rails_root/public/screenshots/:id_partition/:style.png', + url: '/screenshots/:id_partition/:style.png', + hash_secret: 'M4xGM9v6y17Y27sZ1liWrnQaXdX4YDdZCJ7fOqcAUg3cZJqK9x' validates_attachment_content_type :image, :content_type => /\Aimage\/png\Z/ # Return caption for full-screen screenshots. @@ -27,28 +27,28 @@ class Screenshot < ActiveRecord::Base def uploader # TODO: Implement the ownership of images - "Anonymous" + 'Anonymous' end # Return Debshots 1.x path to allow migration of images into Paperclip filesystem schema def image_url(size) - "#{Rails.configuration.images_path_prefix}/#{self.package.name[0]}/#{self.package.name}/#{self.id}_#{size}.png" + '#{Rails.configuration.images_path_prefix}/#{self.package.name[0]}/#{self.package.name}/#{self.id}_#{size}.png' end def status text = '' - # Completes the sentence: "This image…" + # Completes the sentence: 'This image...' if self.approved - text <<'is public' + text << 'is public' else - text <<'has to be moderated before being publicly visible' + text << 'has to be moderated before being publicly visible' end if self.markedfordelete - text <<' (and was requested to be removed)' + text << ' (and was requested to be removed)' end - text + return text end end