This repository was archived by the owner on Oct 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (49 loc) · 1.29 KB
/
Gemfile
File metadata and controls
52 lines (49 loc) · 1.29 KB
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
source 'https://rubygems.org'
gem 'rails'
gem 'sqlite3'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'sdoc', group: :doc
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'devise'
gem 'nokogiri'
gem 'httparty'
gem 'figaro'
gem 'redic' # gem to connect ohm to redis
gem 'ohm' # gem to use redis to store objects
gem 'active_model_serializers'
gem 'redis-throttle', git: 'git://github.com/andreareginato/redis-throttle.git'
group :production do
gem 'pg'
end
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'quiet_assets' # Turns off the Rails asset pipeline log
gem 'bullet' # help reduce sql query speeds
gem 'lol_dba' # helps scan for better indexing
gem 'pry' # debugging from console anywhere
gem 'better_errors' # neat error pages
gem 'binding_of_caller' # turns debugging at error page
gem 'annotate' # annotates the fields on the models to remove the need to remember the schema
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'timecop'
gem 'regressor', git: 'https://github.com/ndea/regressor.git', branch: 'master'
gem 'shoulda-matchers'
end
group :test do
gem 'active_mocker'
gem 'database_cleaner'
gem 'webmock'
gem 'vcr'
gem 'fuubar'
gem 'capybara'
end