-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
27 lines (24 loc) · 825 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's production dependencies in [aemo.gemspec](./aemo.gemspec).
gemspec
# Specify the development/test gems here.
group :development, :test do
gem 'addressable', '~> 2.8', '>= 2.8.0'
gem 'awesome_print', '~> 1.8', '>= 1.8.0'
gem 'coveralls_reborn', '~> 0.28', '>= 0.28.0'
gem 'ffi', '~> 1.16', '> 1.9.18'
gem 'guard-yard', '~> 2.2', '>= 2.2.0'
gem 'listen', '~> 3.1', '>= 3.5.0'
gem 'minitest', '~> 5.14', '>= 5.14.2'
gem 'rack', '~> 3.0'
gem 'rdoc', '~> 6.6'
gem 'rspec', '~> 3.7', '>= 3.7.0'
gem 'rubocop', '~> 1.59', '>= 0.52.1'
gem 'rubocop-minitest'
gem 'rubocop-rspec'
gem 'simplecov', '~> 0.14', '>= 0.14.1'
gem 'timecop', '~> 0.9', '>= 0.9.1'
gem 'webmock', '~> 3.1', '>= 3.1.0'
gem 'yard', '~> 0.9'
end