forked from locomotivecms/wagon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (28 loc) · 1.26 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
source 'https://rubygems.org'
# Specify your gem's dependencies in locomotivecms_wagon.gemspec
gemspec
# Mac OS X
gem 'rb-fsevent', '~> 0.10.3', require: 'rb-fsevent' if RUBY_PLATFORM.include?('darwin')
# linux
gem 'rb-inotify', '~> 0.10.1', require: 'rb-inotify' if RUBY_PLATFORM.include?('linux')
# Windows
gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i
# Development
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '2f9ba59' , require: false
# gem 'locomotivecms_coal', github: 'locomotivecms/coal', ref: '3c5f8f8', require: false
# gem 'locomotivecms_steam', github: 'locomotivecms/steam', ref: 'e4be455', require: false
# gem 'duktape', github: 'judofyr/duktape.rb', ref: '20ef6a5'
# Local development
# gem 'locomotivecms_coal', path: '../coal', require: false
# gem 'locomotivecms_steam', path: '../steam', require: false
# gem 'locomotivecms_common', path: '../common', require: false
group :development, :test do
gem 'pry-byebug', '~> 3.9.0'
end
group :test do
gem 'rspec', '~> 3.7.0'
gem 'json_spec', '~> 1.1.5'
gem 'vcr', '~> 4.0.0'
gem 'codeclimate-test-reporter', '~> 1.0.7', require: false
gem 'coveralls', '~> 0.8.19', require: false
end