forked from oauth-xx/oauth-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (33 loc) · 1.16 KB
/
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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Curb has trouble building native extentions on Windows platform
curb = !Gem.win_platform?
gem "pry", platforms: %i[mri]
platforms :mri do
gem "codecov", "~> 0.6" # For CodeCov
gem "overcommit", "~> 0.58"
# See: https://github.com/rubocop/rubocop-md/issues/14
# gem "rubocop-md"
gem "rubocop-minitest"
gem "rubocop-packaging"
gem "rubocop-performance"
gem "rubocop-rake"
gem "rubocop-thread_safety"
gem "simplecov", "~> 0.21", require: false
gem "simplecov-cobertura" # XML for Jenkins
gem "simplecov-json" # For CodeClimate
gem "simplecov-lcov", "~> 0.8", require: false
# Add `byebug` to your code where you want to drop to REPL, and add DEBUG=true when running tests
gem "byebug"
# WebMock is known to work with Curb >= 0.7.16, < 1.1, except versions 0.8.7
gem "curb", ">= 0.7.16", "!= 0.8.7", "< 1.1" if curb
gem "pry-byebug"
end
### deps for documentation and rdoc.info
group :documentation do
gem "github-markup", platform: :mri
gem "redcarpet", platform: :mri
gem "yard", require: false
end