-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
31 lines (22 loc) · 855 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
# frozen_string_literal: true
source('https://rubygems.org')
# Specify your gem's dependencies in oxide.gemspec
gemspec
# A runtime developer console and IRB alternative with powerful introspection
# capabilities.
gem('pry')
# A make-like build utility for Ruby.
gem('rake', '>= 12.3.3')
# Provide a standard and simplified way to build and package Ruby C and Java
# extensions using Rake as glue.
gem('rake-compiler')
# RSpec meta-gem that depends on the other components
gem('rspec', '~> 3.0')
# A Ruby static code analyzer and formatter, based on the community Ruby style
# guide.
gem('rubocop', require: false)
# Code style checking for RSpec files
gem('rubocop-rspec', require: false)
# Code coverage for Ruby 1.9+ with a powerful configuration library and
# automatic merging of coverage across test suites
gem('simplecov', require: false)