rthbound/usno-imagery

View on GitHub
lib/usno/imagery/earth/set.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'pay_dirt'


module USNO
  module Imagery
    module Earth
      class Set < EarthView
        include USNO::Imagery::Earth::Call

        def initialize(options = {})
          options = {
            view: "set"
          }.merge(options) and super
        end
      end
    end
  end
end