This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
forked from dpn-admin/dpn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
75 lines (59 loc) · 2.13 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
69
70
71
72
73
74
75
# Copyright (c) 2015 The Regents of the University of Michigan.
# All Rights Reserved.
# Licensed according to the terms of the Revised BSD License
# See LICENSE.md for details.
source 'https://rubygems.org'
ruby '~> 2.3.0'
# ----------------------------------------------
# Include gems for your local environment here.
# e.g. gem "mysql2", group: :production
# ----------------------------------------------
if File.exist? 'Gemfile.local'
eval_gemfile 'Gemfile.local'
end
gem 'rails', '~> 4.2'
gem 'active_scheduler', '~>0.3.0'
gem 'resque', '~>1.26.0'
gem 'resque-pool', '~>0.6.0'
gem 'resque-scheduler', '~>4.3.0'
gem 'cancan'
gem 'devise'
gem 'dpn-bagit', '~>0.3.0'
gem 'dpn-client', '~>2.0.0', git: 'https://github.com/dpn-admin/dpn-client.git'
gem 'dpn_swagger_engine'
gem 'bcrypt'
gem 'easy_cipher', '~>0.9.1'
gem 'json'
gem 'kaminari'
gem 'lograge'
gem 'logstash-event'
gem 'okcomputer' # app monitoring
gem 'rpairtree'
gem 'rsync', '~>1.0.9'
gem 'sdoc', '~> 0.4.0', group: :doc
# Note: These are not in a group block because doing
# so breaks group block usage in Gemfile.local
gem 'sqlite3', group: [:development, :test]
gem 'app_version_tasks', group: [:development, :test]
gem 'byebug', group: [:development, :test]
gem 'codeclimate-test-reporter', group: [:development, :test]
gem 'fabrication', group: [:development, :test]
gem 'faker', group: [:development, :test]
gem 'pry', group: [:development, :test]
gem 'pry-doc', group: [:development, :test]
gem 'rspec-activejob', group: [:development, :test]
gem 'rspec-rails', group: [:development, :test]
gem 'rubocop', group: [:development, :test]
gem 'rubocop-rspec', group: [:development, :test]
gem 'simplecov', group: [:test]
gem 'web-console', '~> 2.1.3', group: [:development, :test]
gem 'yard', group: [:development, :test]
## Assets
# Use SCSS for stylesheets
gem 'sass-rails', group: [:assets]
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', group: [:assets]
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', group: [:assets]
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby, group: [:assets]