Sha256: 0534f60f0fdf4ac211f5ef684ce0f22d7c5052dd872423167379ce446660fecd
Contents?: true
Size: 969 Bytes
Versions: 19
Compression:
Stored size: 969 Bytes
Contents
module Heroku class API # DELETE /features/:feature def delete_feature(feature, app = nil) request( :expects => 200, :method => :delete, :path => "/features/#{feature}", :query => { 'app' => app } ) end # GET /features def get_features(app = nil) request( :expects => 200, :method => :get, :path => "/features", :query => { 'app' => app } ) end # GET /features/:feature def get_feature(feature, app = nil) request( :expects => 200, :method => :get, :path => "/features/#{feature}", :query => { 'app' => app } ) end # POST /features/:feature def post_feature(feature, app = nil) request( :expects => 200, :method => :post, :path => "/features/#{feature}", :query => { 'app' => app } ) end end end
Version data entries
19 entries across 19 versions & 1 rubygems