-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
21 lines (14 loc) · 751 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in sidekiq-aws-sqs.gemspec
gemspec
# Rake is a Make-like program implemented in Ruby [https://github.com/ruby/rake]
gem 'rake', '~> 13.0'
# Behaviour Driven Development for Ruby [https://github.com/rspec/rspec-metagem]
gem 'rspec', '~> 3.0'
# RuboCop is a Ruby code style checking and code formatting tool [https://github.com/rubocop/rubocop]
gem 'rubocop', '~> 1.21'
# Pretty print Ruby objects with proper indentation and colors [https://github.com/awesome-print/awesome_print]
gem 'awesome_print'
# Pry is a runtime developer console and IRB alternative with powerful introspection capabilities [https://github.com/pry/pry]
gem 'pry', '~> 0.14.1'