forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
83 lines (63 loc) · 1.68 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
source 'https://rubygems.org'
# Use dependencies from gemspec
gemspec
# Load local Gemfile
load File.expand_path('../Gemfile.local', __FILE__) if File.file? File.expand_path('../Gemfile.local', __FILE__)
# Debug aruba
group :debug do
if RUBY_VERSION >= '2' && !RUBY_PLATFORM.include?('java')
gem 'byebug', '~> 9.0'
gem 'pry-byebug', '~> 3.4'
end
if RUBY_VERSION < '2' && !RUBY_PLATFORM.include?('java')
gem 'debugger', '~> 1.6.8'
gem 'pry-debugger', '~> 0.2.3'
end
gem 'pry-doc', '~> 0.8.0'
end
group :development do
# Needed for lint:yard:junk task
if RUBY_VERSION >= '2.3.0'
gem 'yard-junk', '~> 0'
end
end
group :development, :test do
# we use this to demonstrate interactive debugging within our feature tests
if RUBY_VERSION >= '2'
gem 'pry', '~> 0.10.1'
else
gem 'pry', '~>0.9.12'
end
# Run development and test tasks
gem 'rake', '~> 10.4.2'
if RUBY_VERSION >= '2.0.0'
# Lint travis yaml
gem 'travis-yaml'
# Reporting
gem 'bcat', '~> 0.6.2'
gem 'kramdown', '~> 1.14'
end
# Code Coverage
gem 'simplecov', '~> 0.10'
# API docs generation
gem 'yard', '~>0.9.9'
# Test api
gem 'rspec', '~> 3.4'
gem 'fuubar', '~> 2.2.0'
# using platform for this makes bundler complain about the same gem given
# twice
gem 'cucumber', '~> 2.0'
# Make aruba compliant to ruby community guide
gem 'rubocop', '~> 0.32', '< 0.41.1'
# gem 'cucumber-pro', '~> 0.0'
# License compliance
if RUBY_VERSION < '2.3'
gem 'license_finder', '~> 2.0'
else
gem 'license_finder', '~> 3.0', '>= 3.0.2'
end
# Upload documentation
# gem 'relish', '~> 0.7.1'
gem 'minitest', '~> 5.8.0'
gem 'json', '~>2.1'
end