Sha256: 1a9049be1accaf8f1622e5ccd1db235387c2a7319ee65e4229ccd02fed8cb679
Contents?: true
Size: 794 Bytes
Versions: 3
Compression:
Stored size: 794 Bytes
Contents
module AngellistApi class Client # Defines methods related to URLs # # @see http://angel.co/api/spec/press module Press # Return press for the given startup. Press is paginated and ordered by # most recent first, according to the post date. # # @requires_authentication No # @paginated Yes # # @param options [Hash] A customizable set of options. # @option options [Integer] :startup_id Specifies the desired startup # @option options [Integer] :page Specifies the page of results to # retrieve. # @option options [Integer] :per_page (50) The number of results to return # for a page. Maximum of 50. def get_press(options={}) get("1/press", options) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
angellist_api-1.1.0 | lib/angellist_api/client/press.rb |
angellist_api-1.0.7 | lib/angellist_api/client/press.rb |
angellist_api-1.0.6 | lib/angellist_api/client/press.rb |