This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
forked from idb-project/the-idb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (57 loc) · 1.34 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
source 'https://rubygems.org'
ruby '2.6.3'
gem 'rails', "~> 5.2.4.6"
gem 'rake'
gem 'mysql2'
gem 'net-ldap'
gem 'stomp', '1.3.4'
gem 'bcrypt'
gem 'grape', ">= 1.1.0"
gem 'grape-active_model_serializers'
gem 'grape-swagger'
gem 'grape-entity'
gem 'grape-swagger-entity' #, git: 'https://github.com/bytemine/grape-swagger-entity.git'
gem 'sass-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'rails-jquery-autocomplete'
gem 'bootstrap-sass', '~> 2.3.2.2'
gem 'font-awesome-rails'
gem 'simple_form'
gem 'redcarpet'
gem 'will_paginate'
gem 'paperclip'
gem 'duktape'
gem 'sidekiq'
gem 'sidekiq-cron', '~> 1.0.0'
gem 'redis-namespace'
gem 'excon'
gem 'virtus'
gem 'keynote'
gem 'high_voltage'
gem 'paranoia'
gem 'paper_trail'
gem 'diffy'
gem 'exception_notification'
gem 'ipaddress'
gem 'rubius', :git => 'https://github.com/bytemine/rubius.git'
gem 'closure_tree'
gem 'sprockets', '>= 3.7.2'
gem 'rack', '>= 2.0.6'
group :development do
gem 'puma'
gem 'capistrano', '~> 2.15', require: false
gem 'foreman', require: false
gem 'rspec-rails'
gem 'rspec-its'
gem 'factory_bot_rails'
gem 'fakeweb', :git => 'https://github.com/chrisk/fakeweb.git'
gem 'timecop'
gem 'spring', require: false
gem 'spring-commands-rspec', require: false
gem 'ruby-ldapserver', require: false
end
group :test do
gem 'rails-controller-testing'
end