-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
119 lines (98 loc) · 3.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
source 'https://rubygems.org'
ruby '>= 2.3'
gem 'rails', '>= 5.1.4'
gem 'pg', '>= 0.21.0', platforms: [:mri, :rbx]
gem 'activerecord-jdbcpostgresql-adapter', '>= 0', platform: :jruby,
git: 'https://github.com/jruby/activerecord-jdbc-adapter.git'
# Core.
gem 'authpwn_rails', '>= 0.22.0'
gem 'file_blobs_rails', '>= 0.2.3'
gem 'foreman', '>= 0.82.0', require: false
gem 'jbuilder', '~> 2.4'
gem 'markdpwn', '>= 0.3.0', platforms: [:mri, :rbx]
gem 'mail', '>= 2.6.6'
gem 'nokogiri', '>= 1.8.0'
gem 'jc-validates_timeliness', '>= 3.1.1'
# Use Puma as the app server.
gem 'puma', '>= 3.10.0'
# Background processing.
gem 'delayed_job', '>= 4.1.3'
gem 'delayed_job_active_record', '>= 4.1.2' # Required by delayed_job.
# PDF cover sheets.
gem 'prawn', '>= 2.2.2'
gem 'prawn-table', '>= 0.2.2'
# Instant feedback.
gem 'contained_mr', '>= 0.6.0'
#gem 'contained_mr', '>= 0.1.2', path: '../contained_mr'
gem 'pdf-reader', '>= 2.0.0'
# Gravatar fall-back avatars.
gem 'gravatar-ultimate', '>= 2.0.0'
# LDAP lookup.
gem 'net-ldap', '>= 0.14.0'
# Report production exceptions.
gem 'exception_notification', '>= 4.2.2'
# Profiling.
gem 'stackprof', '>= 0.2.10', platforms: :mri
gem 'flamegraph', '>= 0.9.5', platforms: :mri
gem 'rack-mini-profiler', '>= 0.10.5', require: false
# Bower integration.
gem 'bower-rails', '>= 0.10.0'
# Assets.
gem 'sass-rails', '>= 5.0.6'
gem 'jquery-rails', '>= 4.2.2'
gem 'font-awesome-rails', '>= 4.7.0.1'
gem 'uglifier', '>= 3.2.0'
gem 'autoprefixer-rails', '>= 7.1.4'
gem 'foundation-rails', '>= 6.4.1.2'
gem 'coffee-rails', '>= 4.2.2'
gem 'mini_racer', '>= 0.1.12'
# Image resizing.
#gem 'rmagick', '>= 2.16.0', platforms: [:mri, :rbx]
#gem 'rmagick4j', '>= 0', platform: :jruby
# Ruby standard gems.
# These gems should be included with every Ruby installation. For some reason,
# they are sometimes left out.
gem 'bigdecimal', '>= 1.3.1', require: false
gem 'io-console', '>= 0.4.6', require: false
gem 'json', '>= 1.8.6', require: false
gem 'minitest', '>= 5.10.3', require: false
gem 'net-telnet', '>= 0.1.1', require: false
gem 'openssl', '>= 2.0.4', require: false
gem 'psych', '>= 2.2.2', require: false
gem 'power_assert', '>= 1.1.0', require: false
gem 'rake', '>= 12.0.0', require: false
gem 'test-unit', '>= 3.2.3', require: false
gem 'xmlrpc', '>= 0.3.0', require: false
group :development, :test do
gem 'binary_fixtures', '>= 0.1.3'
gem 'byebug', platforms: :mri
end
group :development do
gem 'web-console', '>= 3.5.0'
gem 'binding_of_caller', '>= 0.7.3.pre1'
# TODO(pwnall): Remove the git ref when 2.7.2 gets released.
gem 'annotate', '>= 2.7.1',
git: 'https://github.com/ctran/annotate_models.git',
ref: '983d36f6a028daa289f31c0fe3fa83df36825d25'
# TODO(pwnall): Remove version limitation when the rake issue gets fixed.
# https://github.com/stympy/faker/issues/780
gem 'faker', ['>= 1.6.6', '< 1.7']
gem 'railroady', '>= 1.5.1'
gem 'listen', '~> 3.0.8'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'minitest-spec-rails', '>= 5.3.0'
gem 'capybara', '>= 2.15.1'
gem 'launchy', '>= 2.4.3'
gem 'poltergeist', '>= 1.16.0'
gem 'mocha', '>= 1.3.0'
gem 'mechanize', '>= 2.7.4', require: false
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]