-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (41 loc) · 1.96 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
source 'https://rubygems.org'
# Loads environment variables from `.env`. (https://github.com/bkeepers/dotenv)
gem 'dotenv'
# Ruby library for InfluxDB 2. (https://github.com/influxdata/influxdb-client-ruby)
gem 'influxdb-client'
# CSV Reading and Writing (https://github.com/ruby/csv)
gem 'csv'
# Class to build custom data structures, similar to a Hash. (https://github.com/ruby/ostruct)
gem 'ostruct'
# A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. (https://rubyonrails.org)
gem 'activesupport'
# A Ruby client library for Redis (https://github.com/redis/redis-rb)
gem 'redis'
group :development do
# Guard gem for RSpec (https://github.com/guard/guard-rspec)
gem 'guard-rspec', require: false
# Pretty print Ruby objects with proper indentation and colors (https://github.com/amazing-print/amazing_print)
gem 'amazing_print'
end
group :development, :test do
# rspec-3.13.0 (http://github.com/rspec)
gem 'rspec'
# Rake is a Make-like program implemented in Ruby (https://github.com/ruby/rake)
gem 'rake'
# Automatic Ruby code style checking tool. (https://github.com/rubocop/rubocop)
gem 'rubocop'
# A RuboCop plugin for Rake (https://github.com/rubocop/rubocop-rake)
gem 'rubocop-rake'
# Automatic performance checking tool for Ruby code. (https://github.com/rubocop/rubocop-performance)
gem 'rubocop-performance'
# Thread-safety checks via static analysis (https://github.com/rubocop/rubocop-thread_safety)
gem 'rubocop-thread_safety'
# Code style checking for RSpec files (https://github.com/rubocop/rubocop-rspec)
gem 'rubocop-rspec'
# Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests. (https://benoittgt.github.io/vcr)
gem 'vcr'
# Library for stubbing HTTP requests in Ruby. (https://github.com/bblimke/webmock)
gem 'webmock'
# Code coverage for Ruby (https://github.com/simplecov-ruby/simplecov)
gem 'simplecov'
end