Sha256: 98c8a3fe849e091263c27debc63d6160ffd42247eaea18ff2cb5328cdc42e021

Contents?: true

Size: 413 Bytes

Versions: 1

Compression:

Stored size: 413 Bytes

Contents

module Tumblr
  class Client
    module Tagged
      
      @@standard_options = [:before, :limit, :filter]
      
      def tagged(tag, options={})
        params = {:tag => tag, :api_key => @consumer_key}
        unless options.empty?
          params.merge!(options)
        end
        if valid_options(@@standard_options, options)
            get("v2/tagged", params)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tumblr_client-0.6.11 lib/tumblr/tagged.rb