judofyr / ruby-oembed

oEmbed for Ruby

This URL has Read+Write access

ruby-oembed / lib / oembed / response / photo.rb
100644 9 lines (9 sloc) 0.137 kb
1
2
3
4
5
6
7
8
9
module OEmbed
  class Response
    class Photo < self
      def html
        "<img src='" + self.url + "' />"
      end
    end
  end
end