forked from NREL/api-umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
84 lines (57 loc) · 1.68 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
source "https://rubygems.org"
gem "rake", "~> 12.3.1"
# Tests
gem "minitest", "~> 5.11.3"
# CLI helper for running tests
gem "minitest-sprint", "~> 1.2.0"
# More test outputs
gem "minitest-reporters", "~> 1.3.0"
# For an "after_all" callback.
gem "minitest-hooks", "~> 1.5.0"
# Test metadata for CI environment.
gem "minitest-ci", "~> 3.4.0"
# Ruby lint/style checker
gem "rubocop", "~> 0.58.1", :require => false
# Running background processes
gem "childprocess", "~> 0.9.0"
# Making HTTP requests
gem "typhoeus", "~> 1.3.0"
# JSON parsing
gem "multi_json", "~> 1.13.1"
gem "oj", "~> 3.6.2"
# Database libraries
gem "mongoid", "~> 7.0.1"
gem "elasticsearch", "~> 6.1.0"
gem "active_attr", "~> 0.12.0"
# Factories for test database data
gem "factory_bot", "~> 4.11.0"
# Deleting database data between tests.
gem "database_cleaner", "~> 1.7.0"
# Programmatically generate Rails session cookies.
gem "rails_compatible_cookies_utils", "~> 0.1.0"
# URL parsing/generation
gem "addressable", "~> 2.5.2"
# Browser/JavaScript integration tests
gem "capybara", "~> 3.6.0"
# Webkit-based driver for capybara
gem "poltergeist", "~> 1.18.1"
# Take screenshots on capybara test failures
gem "capybara-screenshot", "~> 1.0.14"
# HTML or XML parsing
gem "nokogiri", "~> 1.8.1"
# Useful additions
gem "activesupport", "~> 5.2.0"
# Path-based setting of hashes
gem "lazyhash", "~> 0.1.1"
# Generating fake strings and data.
gem "faker", "~> 1.9.1"
# Concurrency helpers.
gem "concurrent-ruby", "~> 1.0.5"
# Time zone randomization for tests.
gem "zonebie", "~> 0.6.1"
# Encrypting admin passwords.
gem "bcrypt", "~> 3.1.12"
# Color output
gem "rainbow", "~> 3.0.0"
# Debug printing
gem "awesome_print", "~> 1.8.0"