forked from pentestgeek/phishing-frenzy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
112 lines (80 loc) · 1.92 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
source 'https://rubygems.org'
gem 'rails', '4.1.7'
gem 'mysql2'
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
# 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.0.0"
# 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" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git', :branch => 'bootstrap3'
# For uploading email attacments
gem 'carrierwave'
# For multiple attachments
gem 'nested_form'
# datatables
gem 'jquery-datatables-rails'
# d3 reports
gem 'd3-rails'
# 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'
# code syntax highlighter
gem 'codemirror-rails'
# our test suite
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
gem 'database_cleaner'
gem 'faker'
end
# ruby code style checker
gem 'rubocop'
# optimize queries
gem "bullet", :group => "development"
gem 'public_activity'
# decorators
gem 'draper', '~> 1.3'
# foreman helper
gem 'foreman'