-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (37 loc) · 1.91 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
source 'https://rubygems.org'
# GraphQL Client (https://github.com/github-community-projects/graphql-client)
gem 'graphql-client'
# A GraphQL language and runtime for Ruby (https://github.com/rmosolgo/graphql-ruby)
gem 'graphql'
# 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'
group :development, :test do
# Rake is a Make-like program implemented in Ruby (https://github.com/ruby/rake)
gem 'rake'
# minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking (https://github.com/minitest/minitest)
gem 'minitest'
# Minitest plugin to suppress output from tests. (https://github.com/Shopify/minitest-silence)
gem 'minitest-silence', require: false
# 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'
# Automatic Minitest code style checking tool.
gem 'rubocop-minitest'
# Automatic performance checking tool for Ruby code. (https://github.com/DmitryTsepelev/rubocop-graphql)
gem 'rubocop-graphql'
# 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'
# Modify your ENV easily with ClimateControl (https://github.com/thoughtbot/climate_control)
gem 'climate_control'
# Code coverage for Ruby (https://github.com/simplecov-ruby/simplecov)
gem 'simplecov'
end