-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
25 lines (20 loc) · 1.01 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
#!/usr/bin/env bundle
# encoding: utf-8
source 'https://rubygems.org'
group :development, :test do
gem 'cucumber', require: false
gem 'rspec', require: false
gem 'rubocop', require: false
gem 'guard', require: false
gem 'guard-cucumber', require: false
gem 'guard-rspec', require: false
gem 'guard-rubocop', require: false, path: "/Users/aeberlin/Projects/Repositories/guard-rubocop/"
gem 'guard-shell', require: false
gem 'terminal-notifier-guard', require: false
gem 'intus', require: false, git: 'https://github.com/arkbot/intus.git'
gem 'perscribo', require: false, git: 'https://github.com/arkbot/perscribo.git'
gem 'guard-perscribo', require: false, git: 'https://github.com/arkbot/guard-perscribo.git'
gem 'perscribo-cucumber', require: false, git: 'https://github.com/arkbot/perscribo-cucumber.git'
gem 'perscribo-rspec', require: false, git: 'https://github.com/arkbot/perscribo-rspec.git'
gem 'perscribo-rubocop', require: false, git: 'https://github.com/arkbot/perscribo-rubocop.git'
end