File: Gemfile

package info (click to toggle)
ruby-asana 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 384 kB
  • ctags: 289
  • sloc: ruby: 1,361; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 694 bytes parent folder | download
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
source 'https://rubygems.org'

# Specify your gem's dependencies in asana.gemspec
gemspec

group :tools do
  # Currently we need to pin the version of Rubocop, due to an incompatibility
  # with rubocop-rspec.  However, this also solves the problem that Rubocop
  # routinely adds new checks which can cause our build to "break" even when no
  # changes have been made. In this situation it's better to intentionally
  # upgrade Rubocop and fix issues at that time.
  gem 'rubocop', '~> 0.35.0'
  gem 'rubocop-rspec', '~> 1.2.0'

  gem 'guard'
  gem 'guard-rspec'
  gem 'guard-rubocop'
  gem 'guard-yard'

  gem 'yard'
  gem 'yard-tomdoc'

  gem 'byebug'

  gem 'simplecov', require: false
end