api.rb 187 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 Dir["#{Rails.root}/lib/api/*.rb"].each {|file| require file} module Gitlab class API < Grape::API format :json helpers APIHelpers mount Users mount Projects end end