This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
78 lines (62 loc) · 1.78 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
source 'https://rubygems.org'
require File.join(File.dirname(__FILE__), 'lib', 'bundler_help.rb')
# ############################################################
# Rails
gem 'mysql2', '~> 0.4'
gem 'rails', '4.2.11'
# ############################################################
# Local engines
path '../stash' do
gem 'stash_api'
gem 'stash_datacite'
gem 'stash_discovery'
gem 'stash_engine'
# needs engines to load first
gem 'stash-merritt'
end
# ############################################################
# Deployment
gem 'capistrano', '~> 3.4.1'
gem 'capistrano-passenger'
gem 'capistrano-rails', '~> 1.1'
gem 'passenger'
gem 'rubocop', '~> 0.52.1'
# ############################################################
# UI
# TODO: why do we have uglifier AND yui-compressor?
# asset pipeline problems with Joel's pre-minified CSS/JS caused errors with uglifier and had to revert to yui-compressor
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0'
gem 'therubyracer', platforms: :ruby
gem 'turbolinks'
gem 'uglifier', '~> 3.0.4'
gem 'yui-compressor'
# ############################################################
# Misc
gem 'exception_notification'
gem 'httparty'
gem 'jbuilder', '~> 2.0'
# ############################################################
# Development and testing
group :development do
gem 'colorize', '~> 0.8'
gem 'web-console', '~> 2.0'
end
group :test do
gem 'capybara', '~> 2.16'
gem 'chromedriver-helper', '~> 1.1'
gem 'database_cleaner', '~> 1.5'
gem 'selenium-webdriver', '~> 3.7'
gem 'simplecov', '~> 0.14'
gem 'simplecov-console', '~> 0.4'
gem 'solr_wrapper', '~> 1.1'
end
group :development, :test do
gem 'binding_of_caller'
gem 'byebug'
gem 'pry'
gem 'pry-rails'
gem 'pry-remote'
gem 'rspec-rails', '~> 3.0'
end