This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
forked from CDLUC3/dashv2
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
114 lines (97 loc) · 3.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
source 'https://rubygems.org'
require File.join(File.dirname(__FILE__), 'lib', 'bundler_help.rb')
# ############################################################
# Rails
gem 'mysql2', '~> 0.4.10'
gem 'rails', '4.2.11'
gem 'rb-readline'
# ############################################################
# 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', '~> 6.0.4'
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'
gem 'stripe'
# #########################
# Testing download examples
gem 'down'
gem 'http'
# ############################################################
# Development and testing
group :development, :local_dev do
gem 'colorize', '~> 0.8'
gem 'web-console', '~> 2.0'
# gem 'httplog', not needed always, but good for troubleshooting HTTP requests to outside http services from the app
end
group :test do
# Capybara aims to simplify the process of integration testing Rack applications, such as Rails, Sinatra or Merb (https://github.com/teamcapybara/capybara)
gem 'capybara'
# Automatically create snapshots when Cucumber steps fail with Capybara and Rails (http://github.com/mattheworiordan/capybara-screenshot)
gem 'capybara-screenshot'
# chromedriver-helper is now deprecated, use webdrivers instead
gem 'webdrivers'
# Strategies for cleaning databases. Can be used to ensure a clean state for testing. (http://github.com/DatabaseCleaner/database_cleaner)
gem 'database_cleaner', require: false
# factory_bot_rails provides integration between factory_bot and rails 3 or newer (http://github.com/thoughtbot/factory_bot_rails)
gem 'factory_bot_rails'
# Easily generate fake data (https://github.com/stympy/faker)
gem 'faker'
# RSpec progress bar formatter (https://github.com/thekompanee/fuubar)
gem 'fuubar'
# Guard keeps an eye on your file modifications (http://guardgem.org)
gem 'guard'
# Guard gem for RSpec (https://github.com/guard/guard-rspec)
gem 'guard-rspec'
# Mocking and stubbing library (http://gofreerange.com/mocha/docs)
gem 'mocha', require: false
# RSpec for Rails (https://github.com/rspec/rspec-rails)
gem 'rspec-collection_matchers'
gem 'rspec-rails'
# The next generation developer focused tool for automated testing of webapps (https://github.com/SeleniumHQ/selenium)
gem 'selenium-webdriver', '~> 3.142.0'
# Making tests easy on the fingers and eyes (https://github.com/thoughtbot/shoulda)
gem 'shoulda'
# Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites (http://github.com/colszowka/simplecov)
gem 'simplecov', require: false
# Rails application preloader (https://github.com/rails/spring)
gem 'spring'
# rspec command for spring (https://github.com/jonleighton/spring-commands-rspec)
gem 'spring-commands-rspec'
# Library for stubbing HTTP requests in Ruby. (http://github.com/bblimke/webmock)
gem 'webmock'
end
group :development, :test, :local_dev do
gem 'binding_of_caller'
# Ruby fast debugger - base + CLI (http://github.com/deivid-rodriguez/byebug)
gem 'byebug'
gem 'pry'
gem 'pry-rails'
gem 'pry-remote', require: 'pry-remote'
end