This repository has been archived by the owner on Dec 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
42 lines (36 loc) · 1.58 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
source 'http://rubygems.org'
# Specify your gem's dependencies in lims-laboratory-app.gemspec
gemspec
gem 'sinatra', :git => 'http://github.com/sinatra/sinatra.git', :branch => '459369eb66224836f72e21bbece58c007f3422fa'
gem 'lims-core', '~>3.2.2', :git => 'http://github.com/sanger/lims-core.git' , :branch => 'development'
#gem 'lims-core', :path => '../lims-core'
gem 'lims-api', '~>3.2.2', :git => 'http://github.com/sanger/lims-api.git' , :branch => 'development'
#gem 'lims-api', :path => '../lims-api'
gem 'lims-exception-notifier-app', '~>0.1', :git => 'http://github.com/sanger/lims-exception-notifier-app.git', :branch => 'master'
#gem 'lims-exception-notifier-app', :path => '../lims-exception-notifier-app'
group :debugging do
gem 'debugger', :platforms => :mri
gem 'debugger-completion', :platforms => :mri
gem 'ruby-debug', :platforms => :jruby
end
group :development do
gem 'sqlite3', :platforms => :mri
gem 'mysql2', :platforms => :mri
gem 'ruby-prof', :platforms => :mri
gem 'jdbc-sqlite3', :platforms => :jruby
gem 'jdbc-mysql', :platforms => :jruby
end
group :yard do
gem 'yard', '= 0.7.3', :platforms => :mri
gem 'yard-rspec', '0.1', :platforms => :mri
gem 'yard-state_machine', :platforms => :mri
gem 'redcarpet', :platforms => :mri
gem 'ruby-graphviz', :platforms => :mri
end
group :deployment do
gem "psd_logger", :git => "http://github.com/sanger/psd_logger.git"
gem 'trinidad', :platforms => :jruby
gem "trinidad_daemon_extension", :platforms => :jruby
gem 'activesupport', '~> 3.0.0', :platforms => :jruby
gem 'jdbc-mysql', :platforms => :jruby
end