This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
128 lines (104 loc) · 2.22 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
source 'https://rubygems.org'
gem 'rails', '~> 4.1'
# Environment vars and configs
gem 'dotenv-rails'
gem 'dotenv-deployment'
# db
gem 'pg'
# Queuing
gem 'sinatra'
gem 'sidekiq'
# Layout and view
gem 'bootstrap-sass'
gem 'font-awesome-rails'
gem 'bootstrap-glyphicons'
gem 'haml-rails'
gem 'simple_form'
gem 'kaminari'
gem 'redcarpet', '~> 3.0.0'
# State
gem 'finite_machine'
# Voting
gem 'acts_as_votable', '~> 0.10.0'
# Tags
gem 'acts-as-taggable-on'
# Search
gem 'chewy'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
# AM Interfaces
gem 'virtus'
# I18n
gem 'rails-i18n', '~> 4.0.0' # For 4.0.x
# CSS
gem 'sass-rails', '~> 4.0.0'
# JS
gem 'momentjs-rails', '>= 2.8.1'
gem 'bootstrap3-datetimepicker-rails', '~> 3.1.2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'sprockets-coffee-react'
gem 'therubyracer'
gem 'jquery-rails'
gem 'react-rails', '~> 0.11'
gem 'jquery-minicolors-rails'
gem 'tagmanager-rails'
gem 'twitter-typeahead-rails'
gem 'showdown-rails'
gem 'rails-bootstrap-markdown'
# Data formatting
gem "active_model_serializers", '0.8.1'
gem 'draper'
# Use ActiveModel has_secure_password
gem 'bcrypt'
# Auth
gem 'clearance'
gem 'doorkeeper'
gem 'rack-cors', :require => 'rack/cors'
group :development do
gem 'transpec'
gem 'quiet_assets'
# Deploy
gem 'capistrano'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-ssh-doctor'
# Profile
gem 'rack-mini-profiler'
# Better error messages
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
# Data
gem 'ffaker'
# Specs
gem 'rspec-rails', '~> 3'
gem 'fuubar' # Pretty spec formatting
gem 'letter_opener' # Opens sent emails in browser
# Automation
gem "guard"
gem "guard-bundler"
gem "guard-livereload"
gem "guard-migrate"
gem "guard-rails"
gem "guard-spring"
gem "guard-pow"
gem "rb-fchange", require: false
gem "rb-fsevent", require: false
gem "rb-inotify", require: false
gem "spring"
gem "spring-commands-rspec"
end
group :test do
gem 'shoulda'
gem 'factory_girl_rails'
gem 'timecop'
gem 'webmock'
gem 'selenium-webdriver'
gem 'capybara-email'
gem 'database_cleaner'
gem 'guard-rspec'
gem 'guard-brakeman'
gem 'vcr'
gem 'oauth2'
end