-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (26 loc) · 760 Bytes
/
Gemfile
File metadata and controls
32 lines (26 loc) · 760 Bytes
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
source 'https://rubygems.org'
gem 'multi_json', '~> 1.0'
gem 'activesupport', '~> 4.2'
gem 'activerecord', '~> 4.2'
gem 'annotate', '~> 2.6.10'
gem 'settingslogic', '~> 2.0'
gem 'bunny', '~> 1.6'
gem 'sqlite3', '~> 1.3.11'
gem 'nokogiri', '>= 1.6.7.rc'
gem 'sidekiq', '= 3.4.2'
gem 'process_explorer', github: 'AVGTechnologies/process_explorer'
group :test, :development do
gem 'rspec'
gem 'rubocop'
gem 'factory_girl', '~> 4.0'
gem 'xml-simple'
end
group :test do
# TODO: investigate whether this gem is really needed
# it causes problem running travis-ci tests
# and when running on windows
# gem 'fakefs'
end
group :development do
gem 'rails', '4.2.3', require: false
end