forked from sanger/limber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
69 lines (58 loc) · 2.02 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails'
# Lets us easily inline our svg to allow styling. Supports the rails asset pipeline.
gem 'inline_svg'
gem 'exception_notification'
gem 'rake'
gem 'state_machines'
gem 'webpacker'
# Used in the setting object, allows access by object and hash notation.
gem 'hashie'
# Communications with JSON APIs, allows us to begin migration to the new Sequencescape API
gem 'json_api_client', github: 'sanger/json_api_client'
# Older Sequencescape API
gem 'sequencescape-client-api', require: 'sequencescape'
gem 'pmb-client', '0.1.0', github: 'sanger/pmb-client'
gem 'puma'
gem 'sanger_barcode_format', github: 'sanger/sanger_barcode_format', 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' # Interface for integration tests
gem 'capybara-selenium' # Browser driver for integration tests
gem 'factory_bot' # Generate models and json easily in tests
gem 'guard-rspec', require: false
gem 'launchy' # Used by capybara for eg. save_and_open_screenshot
gem 'rails-controller-testing'
gem 'rspec-json_expectations'
gem 'rspec-rails'
gem 'simplecov', require: false
gem 'simplecov-json', require: false
# Keep webdriver in sync with chrome to prevent frustrating CI failures
gem 'webdrivers', require: false
gem 'webmock'
end
group :development, :test do
gem 'uglifier'
# Bootstrap is a css framework
gem 'bootstrap'
gem 'coffee-rails', require: false
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'sass-rails'
gem 'select2-rails'
# We use the sortable component of jquery ui
gem 'jquery-ui-rails'
end
group :development do
gem 'pry'
gem 'pry-byebug'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'web-console'
# MiniProfiler allows you to see the speed of a request conveniently on the page.
gem 'rack-mini-profiler'
gem 'travis'
end