forked from OLA-Simple/OLASimple-Aquarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
81 lines (61 loc) · 1.59 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
70
71
72
73
74
75
76
77
78
79
80
81
# frozen_string_literal: true
source 'https://rubygems.org'
# Rails version
gem 'rails', '4.2.11.1'
gem 'mimemagic', '> 0.3.5'
# SQL adapter
gem 'mysql2', '~> 0.5.2'
# Needed for rails 3.2 => 4.0 upgrade
gem 'protected_attributes_continued'
gem 'tzinfo-data'
# Json helpers
gem 'oj'
gem 'rails-patch-json-encode'
# Authentication and cross origin
gem 'angular_rails_csrf', '2.1.1'
gem 'rack-cors', '~> 1.0.5', require: 'rack/cors'
# Style enforcer and linter
gem 'rubocop'
gem 'rubocop-rails'
# For documentation
gem 'yard', '>= 0.9.20'
gem 'yard-activerecord'
# Various style related gems
gem 'github-markup'
gem 'redcarpet'
gem 'sassc-rails'
gem 'will_paginate'
gem 'alphabetical_paginate'
# For uploads and cloud storage
gem 'aws-sdk', '< 2.0'
gem 'aws-sdk-s3'
gem 'paperclip', '~> 6.1'
# For email
gem 'aws-sdk-ses'
# For bulk inserts (e.g. for loading a collection from a matrix)
gem 'activerecord-import'
# Factories for testing of aquarium and protocols
gem 'factory_bot_rails'
# allows rails 5 style where().or() queries
gem 'where-or'
group :test do
gem 'sqlite3'
end
group :development do
gem 'rspec-rails'
gem 'web-console', '~> 3.0'
# used to determine subnet for docker containers for web-console
gem 'ipaddress'
end
group :production do
gem 'puma'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'bcrypt', '~> 3.1'
gem 'closure-compiler'
end
# Klavins lab gems
gem 'anemone', git: 'https://github.com/klavinslab/anemone', tag: 'v1.0.1'
gem 'aquadoc', git: 'https://github.com/klavinslab/aquadoc', tag: 'v1.0.2'