-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
32 lines (29 loc) · 873 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
28
29
30
31
32
source 'https://rubygems.org'
# Specify your gem's dependencies in nucleus.gemspec
gemspec
group :test do
gem 'airborne', '~> 0.2'
gem 'factory_bot'
gem 'faker'
gem 'memfs'
# includes required fix for empty arrays as param value, see issue #122 and pull request #125,
gem 'rack-test', git: 'https://github.com/stefan-kolb/rack-test.git', branch: 'empty-array-param'
# Used to build a streaming API for the log tail action
gem 'rack-stream', git: 'https://github.com/stefan-kolb/rack-stream.git'
gem 'rspec-wait'
gem 'simplecov', require: false
end
group :development do
gem 'bundler'
gem 'guard', '~> 2.13'
gem 'guard-bundler'
gem 'guard-rack'
gem 'guard-rubocop'
gem 'guard-yard'
gem 'inch', '~> 0.8.0.rc1'
gem 'rake', '~> 11.1'
gem 'rubocop', '~> 0.49.0'
gem 'vcr', '~> 3.0'
gem 'webmock', '~> 2.0'
gem 'yard', '~> 0.9'
end