mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 02:52:49 +01:00
cfbb4ac4ac
I'm moving my company's server to a private location now that I have sold the domain. While prepping for this, I've done some cleanup and also threw in changes I had lingering on my hard drive. - Run a single database query instead of two - Fold the gem into the app and use Ox instead of REXML - Simplify error handling logic - Relax throttling
28 lines
348 B
Ruby
28 lines
348 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'http://rubygems.org'
|
|
|
|
ruby '2.5.0'
|
|
|
|
gem 'oj'
|
|
gem 'ox'
|
|
gem 'rack-cors'
|
|
gem 'rake'
|
|
gem 'rufus-scheduler'
|
|
gem 'sequel_pg'
|
|
gem 'sinatra'
|
|
gem 'unicorn'
|
|
|
|
group :development do
|
|
gem 'pry'
|
|
end
|
|
|
|
group :test do
|
|
gem 'minitest'
|
|
gem 'minitest-around'
|
|
gem 'rack-test'
|
|
gem 'rubocop'
|
|
gem 'vcr'
|
|
gem 'webmock'
|
|
end
|