Skip to content

Instantly share code, notes, and snippets.

@derwiki
Created August 16, 2014 03:24
Show Gist options
  • Save derwiki/a267829a771a295f77dc to your computer and use it in GitHub Desktop.
Save derwiki/a267829a771a295f77dc to your computer and use it in GitHub Desktop.
Example of using the lightweight PixelPeeper API.
def example_pictures_for(gear)
pp = PixelPeeper.new
if gear.pp_lens_id.present?
pp.examples(lens_id: gear.pp_lens_id)
elsif gear.pp_camera_id.present?
pp.examples(camera_id: gear.pp_camera_id)
else
[]
end.take(8)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment