forked from OWASP/railsgoat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
102 lines (76 loc) · 1.79 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
source 'https://rubygems.org'
#don't upgrade
gem 'rails', '5.1.4'
ruby '2.3.5'
gem 'rake'
gem 'rails-perftest'
gem 'ruby-prof'
# Bundle edge Rails instead:
# gem 'rails', git: 'https://github.com/rails/rails'
gem 'sqlite3'
gem 'foreman'
gem 'crack', '0.3.1'
# Pry for Rails, not in dev group in case running via prod/staging @ a training
gem 'pry-rails'
group :development, :mysql do
gem 'brakeman'
gem 'bundler-audit'
gem 'guard-brakeman'
gem 'guard-livereload'
gem 'guard-rspec'
gem 'guard-shell'
gem 'pry'
gem 'rack-livereload'
gem 'rb-fsevent'
gem 'travis-lint'
gem 'better_errors'
gem 'binding_of_caller'
end
gem 'simplecov', :require => false, :group => :test
group :development, :test, :mysql do
gem 'launchy'
gem 'capybara'
gem 'database_cleaner'
gem 'poltergeist'
gem 'rspec-rails'
gem 'test-unit'
end
group :mysql do
gem 'mysql2'
end
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
gem 'coffee-rails'
gem 'jquery-fileupload-rails'
gem 'uglifier'
gem 'turbolinks'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'jquery-rails'
# To use ActiveModel has_secure_password
gem 'bcrypt'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
# Pow related gem
gem 'powder'
gem 'aruba'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
gem 'execjs'
gem 'therubyracer'
# Add SMTP server support using MailCatcher
# NOTE: https://github.com/sj26/mailcatcher#bundler
# gem 'mailcatcher'
#For Rails 4.0
#group :doc do
# # bundle exec rails doc:rails generates the API under doc/api.
# gem 'sdoc', require: false
#end
#For Rails 4.2
gem 'responders'
gem "minitest"