diff --git a/Gemfile b/Gemfile index 59c5b7f..4445d5c 100755 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ gem 'coffee-rails', '~> 4.2' gem 'jquery-rails'# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks gem 'turbolinks', '~> 5' gem 'jbuilder', '~> 2.5' -gem 'bootstrap-sass' +gem 'bootstrap-sass', '~> 3.2.0' gem 'devise' gem 'paperclip', '~> 4.2' diff --git a/app/models/pin.rb b/app/models/pin.rb index 1803cc3..7fd76a3 100755 --- a/app/models/pin.rb +++ b/app/models/pin.rb @@ -1,4 +1,5 @@ class Pin < ActiveRecord::Base belongs_to :user has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" } + validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"] end \ No newline at end of file diff --git a/app/views/pins/show.html.erb b/app/views/pins/show.html.erb index 3fe1b83..5dfddb7 100755 --- a/app/views/pins/show.html.erb +++ b/app/views/pins/show.html.erb @@ -1,6 +1,7 @@

<%= notice %>

+ <%= link_to image_tag(@pin.image.url, class: 'media-object'), @pin.image.url, target: '_blank' %> Description: <%= @pin.description %>