-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (41 loc) · 786 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8; mode: ruby -*-
source 'https://rubygems.org'
# source 'http://gems.erasme.org'
gem 'grape'
gem 'grape-swagger'
gem 'json'
gem 'omniauth'
gem 'omniauth-cas'
gem 'puma'
# gem 'mail'
gem 'mysql2'
gem 'nokogiri'
gem 'rack'
gem 'rack-rewrite'
gem 'rake'
gem 'rest-client'
gem 'savon'
gem 'sequel'
gem 'sinatra'
gem 'laclasse-common', git: 'https://github.com/laclasse-com/laclasse-common.git'
# Generation de pdf
gem 'pdfkit'
gem 'wkhtmltopdf-binary'
gem 'htmlentities'
group :development do
gem 'sinatra-contrib'
gem 'shotgun'
gem 'pry'
gem 'logger'
gem 'coveralls'
gem 'rack-test'
gem 'simplecov'
gem 'rspec'
gem 'travis-lint'
gem 'rubocop'
gem 'guard'
gem 'guard-rspec'
gem 'guard-bundler'
gem 'guard-rubocop'
gem 'rb-readline'
end