forked from pentestgeek/phishing-frenzy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
129 lines (93 loc) · 2.11 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
120
121
122
123
124
125
126
127
128
129
source 'https://rubygems.org'
gem 'rails', '4.2.7'
gem 'mysql2'
gem 'sass-rails', '~> 5.0', '>= 5.0.6'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem "libv8"
gem "therubyracer"
# core rails helpers
gem 'uglifier'
gem 'jquery-rails'
gem 'protected_attributes'
# TO use devise for authentication
gem 'devise'
# For login tracking
gem 'paper_trail', '>= 3.0.0.rc2'
# For background work (sending emails)
gem 'sidekiq'
gem 'sinatra', '>= 1.3.0', :require => nil
# For email previewing
gem 'letter_opener_web'
# To use google charts
gem 'googlecharts'
# To use geokit
gem 'geokit'
# To use jquery ui
gem 'jquery-ui-rails'
# To use rubyzip
gem 'rubyzip', '>= 1.2.1'
gem 'zip-zip'
# To use pry for debugging
gem 'pry'
gem 'pry-nav'
# To assist with pagination
gem 'kaminari'
gem 'bootstrap-kaminari-views'
# To determine binary files
gem 'ptools'
# java runtime lib
gem 'execjs'
# bootstrap
gem "less-rails"
gem 'bootstrap-sass'
# For uploading email attacments
gem 'carrierwave'
# For multiple attachments
gem 'nested_form'
# datatables
gem 'jquery-datatables-rails'
# d3 reports
gem 'd3-rails', '3.5.17'
# pdf creation
gem 'prawn', '~> 1.2.1'
gem 'prawn-table', '~> 0.1.0'
# email enumeration
gem 'searchbing'
gem 'open_uri_redirections'
# site cloning
gem 'mechanize'
# Gem for xlsx creation
gem 'acts_as_xlsx'
gem 'axlsx', git: 'https://github.com/randym/axlsx.git', ref: '776037c0fc799bb09da8c9ea47980bd3bf296874'
gem 'axlsx_rails'
# code syntax highlighter
gem 'codemirror-rails'
# our test suite
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_bot_rails"
gem "capybara"
gem "guard-rspec"
gem 'database_cleaner'
gem 'faker'
gem 'shoulda-matchers', '~> 3.1'
end
group :production do
gem 'unicorn'
end
# ruby code style checker
gem 'rubocop'
# optimize queries
gem "bullet", :group => "development"
gem 'public_activity'
# Used to tail log files
gem 'file-tail'
# decorators
gem 'draper', '~> 1.3'
# foreman helper
gem 'foreman'
# annotate models
gem 'annotate', require: false
# glone models with associations
gem 'amoeba'