forked from sanger-archive/lims-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (36 loc) · 768 Bytes
/
Copy pathGemfile
File metadata and controls
44 lines (36 loc) · 768 Bytes
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
# vim:ft=ruby:ts=2:et:sw=2:sts=2
source "http://rubygems.org"
# Specify your gem's dependencies in lims-core.gemspec
gemspec
gem 'oj', :platforms => :mri
gem 'jrjackson', :platforms => :jruby
group :debugging do
gem 'debugger'
gem 'debugger-completion'
end
group :pry do
gem 'debugger-pry', :require => 'debugger/pry'
end
group :autotest do
gem 'autotest'
gem 'autotest-growl'
gem 'autotest-fsevent'
end
group :guard do
gem "guard", '>= 1.3.0'
gem "guard-rspec"
gem "guard-bundler"
gem "guard-yard"
gem "terminal-notifier-guard"
gem "rb-fsevent", '~> 0.9.1'
end
group :yard do
gem 'yard', '= 0.7.3'
gem 'yard-rspec', '0.1'
gem 'yard-state_machine'
gem 'redcarpet'
gem 'ruby-graphviz'
end
group :showoff do
gem 'showoff'
end