forked from rapid7/warvox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·62 lines (51 loc) · 1.4 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
source 'https://rubygems.org'
gem 'puma'
gem 'rails', '~> 5.0', '>= 5.0.0.1'
gem 'pg', '~> 0.18'
gem 'jquery-rails'
gem 'jquery-datatables-rails', git: 'https://github.com/rweng/jquery-datatables-rails.git'
gem 'kissfft'
gem 'rex', '~> 2.0.10'
gem 'bootstrap-sass', '>= 3.2.0'
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.2'
gem 'uglifier', '>= 1.3.0'
gem 'autoprefixer-rails'
gem 'authlogic', git: 'https://github.com/binarylogic/authlogic.git'
gem 'rails-settings-cached', '>= 0.4.1'
gem 'breadcrumbs_on_rails'
gem 'formtastic', '>= 3.0.0'
gem 'formtastic-bootstrap', '>= 3.0.0'
gem 'therubyracer'
gem 'font-awesome-rails'
gem 'reportable', git: 'https://github.com/hdm/reportable.git',
require: 'saulabs/reportable'
gem 'will_paginate', '~> 3.0'
gem 'will_paginate-bootstrap'
gem 'dynamic_form', '>= 1.1.4'
gem 'psych_shield'
gem 'scrypt'
group :development do
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'rails_layout'
gem 'guard-livereload', '~> 2.4', require: false
gem 'annotate'
gem 'web-console'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails', '~> 3.5'
gem 'byebug', platform: :mri
end
group :test do
gem 'capybara'
gem 'pry'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '2.8'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]