MagicTheGathering/mtg-sdk-ruby

View on GitHub
lib/mtg_sdk/subtype.rb

Summary

Maintainability
A
0 mins
Test Coverage
module MTG
  class Subtype
    include RestClient
    
    # Get all subtypes
    #
    # @return [Array<String>]  All subtypes
    def self.all
      RestClient.get('subtypes').body['subtypes']
    end
  end
end