This repository has been archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
142 lines (103 loc) · 2.43 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
source 'https://rubygems.org'
ruby '2.3.1'
# Auto prefixer scss
gem 'autoprefixer-rails'
# Delay job to active record
gem 'delayed_job_active_record'
# Rails view helpers
gem 'flutie'
# Paid service
# gem 'honeybadger'
# jQuery
gem 'jquery-rails'
# CSS Reset
gem 'normalize-rails', '~> 3.0.0'
# Rack middleware that lets you define a single host name as the canonical host
# for your application.
gem 'rack-canonical-host'
# Intercept recipients when delivering email with the Mail gem.
# used in staging
gem 'recipient_interceptor'
# A Sprockets transformer that converts ES6 code into vanilla ES5 with Babel JS.
gem 'sprockets-es6'
# SKYLIGHT IS A SMART PROFILER CODE WHISPERER DATA DETECTIVE TRENDSPOTTER FLAG
# RAISER FOR RAILS APPS
gem 'skylight'
# UI to locales file
gem 'tolk'
gem 'kaminari'
gem 'pg'
gem 'puma'
gem 'rails', '~> 5.0.0'
gem 'sass-rails', '~> 5.0'
gem 'simple_form'
gem 'sprockets', '>= 3.0.0'
gem 'uglifier'
gem 'suspenders'
gem 'title'
gem 'turbolinks', '~> 5.0.0'
gem 'devise'
group :development do
gem 'listen'
gem 'spring'
gem 'spring-commands-rspec'
gem 'web-console'
end
group :development, :test do
gem 'awesome_print'
gem 'bullet'
gem 'bundler-audit', '>= 0.5.0', require: false
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails', '~> 3.5.0.beta4'
end
group :test do
gem 'database_cleaner'
gem 'launchy'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end
group :staging, :production do
gem 'rack-timeout'
gem 'rails_stdout_logging'
end
# Easily include static pages in your Rails app.
gem 'high_voltage'
gem 'bourbon', '~> 4.2' # '5.0.0.beta.6'
gem 'neat', '~> 1.8.0'
gem 'refills', group: [:development, :test]
gem 'carrierwave'
source 'https://rails-assets.org' do
gem 'rails-assets-es6-shim'
gem 'rails-assets-loaders.css'
gem 'rails-assets-player.js'
end
# Audio infomration
# Report errors
gem 'sentry-raven'
# Help with css in mailer
gem 'roadie-rails'
# Admnistration
gem 'administrate', '~> 0.3.0'
# Graphs
gem 'chartkick'
gem 'groupdate'
gem 'active_median'
# image manipulation
# detect user timezone
gem 'browser-timezone-rails'
# Email subscriptions made easy
gem 'mailkick'
gem 'rails_12factor'
# feature flipping for ANYTHING
gem 'flipper'
gem 'flipper-active_record'
gem 'flipper-ui'
gem 'postmark-rails'
gem 'streamio-ffmpeg'
gem 'delayed_job_web'
gem 'sinatra', '~> 2.0.0.rc2'