forked from sanger/limber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (54 loc) · 1.62 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
source 'https://rubygems.org'
gem 'formtastic'
gem 'rails'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
# Provides some css helpers
# Deprecate!
gem 'compass-rails'
# Required for bootstrap tooltips
gem 'rails-assets-tether', '>= 1.1.0'
gem 'bootstrap'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', require: false
# Use jquery as the JavaScript library
gem 'jquery-rails'
# We use the sortable component of jquery ui
gem 'jquery-ui-rails'
gem 'rake'
gem 'state_machines'
gem 'hashie'
gem 'exception_notification'
gem 'sequencescape-client-api', '>= 0.3.0',
# Should be switched back to sanger + production for deployment
# github: 'JamesGlover/sequencescape-client-api',
# branch: 'add_limber_needs',
path: '../sequencescape-client-api',
require: 'sequencescape'
gem 'pmb-client', '0.1.0', :github => 'sanger/pmb-client'
gem 'sanger_barcode', '>= 0.2.1',
git: 'git+ssh://[email protected]/sanger/sanger_barcode.git'
gem 'sanger_barcode_format', git: '[email protected]:sanger/sanger_barcode_format.git', branch: 'development'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :test do
gem 'capybara'
gem 'poltergeist'
gem 'rspec-rails'
gem 'rspec-json_expectations'
gem 'launchy'
gem 'factory_girl'
gem 'webmock'
gem 'rails-controller-testing'
end
group :development do
gem 'pry'
gem 'rubocop', require: false
gem 'web-console'
end
group :deployment do
gem 'thin'
gem "psd_logger", git: 'git+ssh://[email protected]/sanger/psd_logger.git'
end