forked from wvandevanter-r7/ear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·116 lines (93 loc) · 2.34 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
source 'http://rubygems.org'
# Require recent Rails:
gem 'rails' # Latest gem
# Use edge Rails instead:
#gem 'rails', :git => 'git://github.com/rails/rails.git'
# Rails / Database
gem 'therubyracer'
gem 'formtastic', :git => 'git://github.com/justinfrench/formtastic.git', :branch => '2.1-stable'
gem 'formtastic-bootstrap', :git => 'https://github.com/cgunther/formtastic-bootstrap.git', :branch => 'bootstrap2-rails3-2-formtastic-2-1'
gem 'tabulous', "~> 1.3.2"
# Mongo Database
gem "mongoid", "~> 3.0.0"
gem 'mongoid-multitenancy'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass', '~> 2.0.0'
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-datatables-rails', :git => 'https://github.com/pentestify/jquery-datatables-rails'
#gem 'will_paginate'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
#gem 'unicorn'
gem 'guard'
gem 'thin'
# Use devise for authentication
gem 'devise'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
######################
# Data manipulation #
######################
gem 'fastercsv'
gem 'librex'
gem 'nmap-parser'
gem 'json'
# Data Formats
gem 'exifr'
# Network Services
gem 'dnsruby'
gem 'geoip'
gem 'whois'
#gem 'packetfu'
#gem 'pcaprub'
# Web Services
gem 'linkedin'
gem 'flickr'
# Debugging
gem 'pry'
gem 'pry-rails'
gem 'pry-nav'
gem 'pry-stack_explorer'
# Network Spider
gem 'anemone'
# Scraping
gem 'mechanize'
gem 'nokogiri'
gem 'googleajax'
gem 'open_uri_redirections'
# Heavy-duty javascript scraping
gem 'selenium-webdriver' # browser based scraping with capybara
gem 'capybara'
# Infrastructure
gem 'fog'
group :pain do
#
# Capybara-Webkit requires QT-webkit
#
# The reason this gem is useful is for simple scraping of google. Several tasks
# use it to hit google.
#
# https://github.com/thoughtbot/capybara-webkit#readme
#
# If you're on ubuntu, you'll need to run:
# apt-get install libqt4-dev
# Assuming you're on homebrew:
# brew update
# brew install qt
gem 'capybara-webkit'
end
group :test do
# Pretty printed test output
gem 'turn', '0.8.2', :require => false
gem 'rspec'
end