LunarLogic/gauguin

View on GitHub
lib/gauguin/image_repository.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gauguin
  class ImageRepository
    def get(path)
      Gauguin::Image.new(path)
    end
  end
end