-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (48 loc) · 1.02 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
source 'https://rubygems.org'
source 'https://8dezqz7z7HWea9vtaFwg:@gem.fury.io/me/' # [email protected] account
ruby '2.1.2'
gem 'rails', '4.0.8'
gem 'sublime_video_layout', '~> 2.6' # hosted on gemfury
gem 'sublime_video_private_api', '~> 1.5' # hosted on gemfury
gem 'pg'
gem 'textacular'
gem 'sidekiq'
gem 'video_info'
gem 'addressable'
gem 'http_content_type'
gem 'fog'
gem 'unf'
gem 'oj'
gem 'faraday', '~> 0.8.9'
gem 'honeybadger'
gem 'librato-rails'
gem 'librato-sidekiq'
gem 'rack-status'
gem 'has_scope'
gem 'newrelic_rpm'
group :staging, :production do
gem 'unicorn'
gem 'lograge'
gem 'dalli'
gem 'memcachier'
gem 'rack-cache'
gem 'rails_12factor'
end
group :development, :test do
gem 'dotenv-rails'
gem 'rspec-rails'
end
group :development do
gem 'annotate', require: false
# Guard
gem 'ruby_gntp', require: false
gem 'guard-pow', require: false
gem 'guard-rspec', require: false
end
group :test do
gem 'rspec'
gem 'shoulda-matchers'
gem 'webmock'
gem 'vcr'
gem 'factory_girl_rails'
end