-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
51 lines (46 loc) · 856 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'activemodel'
gem 'aws-sdk-cloudformation'
gem 'aws-sdk-ec2'
gem 'azure_mgmt_compute'
gem 'azure_mgmt_resources'
gem 'colorize'
gem 'commander-openflighthpc'
gem 'flight_manifest', '~>0.1.3'
gem 'hashie'
gem 'ipaddr'
gem 'memoist'
gem 'parallel'
gem 'rake'
gem 'require_all'
gem 'rubyzip'
gem 'tty-editor'
gem 'tty-markdown'
gem 'tty-spinner'
gem 'tty-table'
gem 'tty-prompt'
group :config do
gem 'activesupport'
gem 'flight_config'
end
group :server do
gem 'json'
gem 'jwt'
gem 'sinatra'
gem 'sinatra-namespace'
gem 'sinatra-param'
gem 'webrick'
end
group :development do
gem 'factory_bot'
gem 'fakefs'
gem 'pilfer'
gem 'pry'
gem 'pry-byebug'
gem 'rake'
gem 'rspec'
gem 'rspec-wait'
gem 'rubocop', '~> 0.52.1', require: false
gem 'rubocop-rspec'
end