Last active
December 17, 2015 21:49
-
-
Save rummelonp/5677157 to your computer and use it in GitHub Desktop.
Sinatra と Grape 同時に使う
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
require 'grape' | |
require 'sinatra/base' | |
class App | |
def self.application | |
Rack::Cascade.new [Web, API] | |
end | |
class Web < Sinatra::Base | |
get '/' do | |
send_file File.join(settings.public_folder, 'index.html') | |
end | |
end | |
class API < Grape::API | |
prefix :api | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
require File.expand_path('app', File.dirname(__FILE__)) | |
run App.application |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment