forked from rapid7/metasploit_data_models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·44 lines (37 loc) · 1.54 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
source "https://rubygems.org"
# Specify your gem's dependencies in metasploit_data_models.gemspec
gemspec
group :development do
#gem 'metasploit-erd'
# embed ERDs on index, namespace Module and Class<ApplicationRecord> pages
#gem 'yard-metasploit-erd'
end
# used by dummy application
group :development, :test do
# Upload coverage reports to coveralls.io
gem 'coveralls', require: false
# supplies factories for producing model instance for specs
# Version 4.1.0 or newer is needed to support generate calls without the 'FactoryBot.' in factory definitions syntax.
gem 'factory_bot'
# auto-load factories from spec/factories
gem 'factory_bot_rails'
gem 'rails'
# Used to create fake data
gem "faker"
# bound to 0.20 for Activerecord 4.2.8 deprecation warnings:
# https://github.com/ged/ruby-pg/commit/c90ac644e861857ae75638eb6954b1cb49617090
gem 'pg'
end
group :test do
# In a full rails project, factory_girl_rails would be in both the :development, and :test group, but since we only
# want rails in :test, factory_girl_rails must also only be in :test.
# add matchers from shoulda, such as validates_presence_of, which are useful for testing validations
gem 'shoulda-matchers'
# code coverage of tests
gem 'simplecov', :require => false
# need rspec-rails >= 2.12.0 as 2.12.0 adds support for redefining named subject in nested context that uses the
# named subject from the outer context without causing a stack overflow.
gem 'rspec-rails'
# used for building markup for webpage factories
gem 'builder'
end