Created
September 26, 2012 08:00
-
-
Save valachi/3786697 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aLoading development environment (Rails 3.2.8) | |
1.9.3p194 :001 > art = Art.first | |
Art Load (0.4ms) SELECT `arts`.* FROM `arts` LIMIT 1 | |
=> #<Art id: 3, image: "06_wallpaper.jpg", title: "Клипарт", desc: "Недорогой клипарт от nicegirls", created_at: "2012-09-26 07:38:12", updated_at: "2012-09-26 07:38:12"> | |
1.9.3p194 :002 > helper.image_tag art.image | |
=> "<img alt=\"06_wallpaper\" src=\"/uploads/art/image/3/06_wallpaper.jpg\" />" | |
1.9.3p194 :003 > helper.image_tag art.image.url | |
=> "<img alt=\"06_wallpaper\" src=\"/uploads/art/image/3/06_wallpaper.jpg\" />" | |
1.9.3p194 :004 > helper.image_tag art.image.thumb | |
=> "<img alt=\"Thumb_06_wallpaper\" src=\"/uploads/art/image/3/thumb_06_wallpaper.jpg\" />" | |
1.9.3p194 :005 > helper.image_tag art.image.thumb.url | |
=> "<img alt=\"Thumb_06_wallpaper\" src=\"/uploads/art/image/3/thumb_06_wallpaper.jpg\" />" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment