install grape and mount Gitlab::API
This commit is contained in:
parent
4c1f435ab7
commit
4aca61e8a6
4 changed files with 37 additions and 21 deletions
1
Gemfile
1
Gemfile
|
@ -17,6 +17,7 @@ gem "omniauth-ldap", :git => "https://github.com/gitlabhq/omniauth-ldap.git",
|
||||||
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
|
gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git"
|
||||||
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
|
gem "linguist", "~> 1.0.0", :git => "https://github.com/gitlabhq/linguist.git"
|
||||||
|
|
||||||
|
gem "grape"
|
||||||
gem "stamp"
|
gem "stamp"
|
||||||
gem "kaminari"
|
gem "kaminari"
|
||||||
gem "haml-rails"
|
gem "haml-rails"
|
||||||
|
|
|
@ -162,6 +162,12 @@ GEM
|
||||||
gherkin (2.11.0)
|
gherkin (2.11.0)
|
||||||
json (>= 1.4.6)
|
json (>= 1.4.6)
|
||||||
git (1.2.5)
|
git (1.2.5)
|
||||||
|
grape (0.2.0)
|
||||||
|
hashie (~> 1.2)
|
||||||
|
multi_json
|
||||||
|
multi_xml
|
||||||
|
rack
|
||||||
|
rack-mount
|
||||||
haml (3.1.6)
|
haml (3.1.6)
|
||||||
haml-rails (0.3.4)
|
haml-rails (0.3.4)
|
||||||
actionpack (~> 3.0)
|
actionpack (~> 3.0)
|
||||||
|
@ -223,6 +229,8 @@ GEM
|
||||||
rack (1.4.1)
|
rack (1.4.1)
|
||||||
rack-cache (1.2)
|
rack-cache (1.2)
|
||||||
rack (>= 0.4)
|
rack (>= 0.4)
|
||||||
|
rack-mount (0.8.3)
|
||||||
|
rack (>= 1.0.0)
|
||||||
rack-protection (1.2.0)
|
rack-protection (1.2.0)
|
||||||
rack
|
rack
|
||||||
rack-ssl (1.3.2)
|
rack-ssl (1.3.2)
|
||||||
|
@ -373,6 +381,7 @@ DEPENDENCIES
|
||||||
foreman
|
foreman
|
||||||
git
|
git
|
||||||
gitolite!
|
gitolite!
|
||||||
|
grape
|
||||||
grit!
|
grit!
|
||||||
haml-rails
|
haml-rails
|
||||||
httparty
|
httparty
|
||||||
|
|
|
@ -4,6 +4,10 @@ Gitlab::Application.routes.draw do
|
||||||
#
|
#
|
||||||
get 'search' => "search#show"
|
get 'search' => "search#show"
|
||||||
|
|
||||||
|
# API
|
||||||
|
require 'api'
|
||||||
|
mount Gitlab::API => '/api'
|
||||||
|
|
||||||
# Optionally, enable Resque here
|
# Optionally, enable Resque here
|
||||||
require 'resque/server'
|
require 'resque/server'
|
||||||
mount Resque::Server.new, at: '/info/resque'
|
mount Resque::Server.new, at: '/info/resque'
|
||||||
|
|
2
lib/api.rb
Normal file
2
lib/api.rb
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
class Gitlab::API < Grape::API
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue