Gemfile - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
HTML git clone git://jay.scot/warvox
DIR Log
DIR Files
DIR Refs
DIR README
---
Gemfile (1432B)
---
1 source 'https://rubygems.org'
2
3 gem 'puma'
4 gem 'rails', '~> 5.0', '>= 5.0.0.1'
5 gem 'pg', '~> 0.18'
6
7 gem 'jquery-rails'
8 gem 'jquery-datatables-rails', git: 'https://github.com/rweng/jquery-datatables-rails.git'
9
10 gem 'kissfft'
11 gem 'rex', '~> 2.0.10'
12
13 gem 'bootstrap-sass', '>= 3.2.0'
14 gem 'sass-rails', '~> 5.0'
15 gem 'coffee-rails', '~> 4.2'
16 gem 'uglifier', '>= 1.3.0'
17 gem 'autoprefixer-rails'
18
19 gem 'authlogic', git: 'https://github.com/binarylogic/authlogic.git'
20 gem 'rails-settings-cached', '>= 0.4.1'
21 gem 'breadcrumbs_on_rails'
22
23 gem 'formtastic', '>= 3.0.0'
24 gem 'formtastic-bootstrap', '>= 3.0.0'
25 gem 'therubyracer'
26
27 gem 'font-awesome-rails'
28
29 gem 'reportable', git: 'https://github.com/hdm/reportable.git',
30 require: 'saulabs/reportable'
31
32 gem 'will_paginate', '~> 3.0'
33 gem 'will_paginate-bootstrap'
34 gem 'dynamic_form', '>= 1.1.4'
35 gem 'psych_shield'
36 gem 'scrypt'
37
38 group :development do
39 gem 'guard-bundler'
40 gem 'guard-rails'
41 gem 'guard-rspec'
42 gem 'rails_layout'
43 gem 'guard-livereload', '~> 2.4', require: false
44 gem 'annotate'
45 gem 'web-console'
46 end
47 group :development, :test do
48 gem 'factory_girl_rails'
49 gem 'faker'
50 gem 'rspec-rails', '~> 3.5'
51 gem 'byebug', platform: :mri
52 end
53 group :test do
54 gem 'capybara'
55 gem 'pry'
56 gem 'database_cleaner'
57 gem 'launchy'
58 gem 'selenium-webdriver'
59 gem 'shoulda-matchers', '2.8'
60 end
61
62 gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]