api.rb 267 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Dir["#{Rails.root}/lib/api/*.rb"].each {|file| require file} module Gitlab class API < Grape::API VERSION = 'v2' version VERSION, :using => :path format :json error_format :json helpers APIHelpers mount Users mount Projects end end