-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
55 lines (38 loc) · 825 Bytes
/
Gemfile
File metadata and controls
55 lines (38 loc) · 825 Bytes
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
source 'https://rubygems.org'
# ruby
ruby '2.1.2'
gem 'puma'
# rails
gem 'rails', '4.1.6'
gem 'sinatra', '>= 1.3.0', :require => nil
gem 'dotenv-rails'
gem 'active_model_serializers'
gem 'sidekiq'
# db
gem 'pg'
gem 'redis'
# front end
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'slim-rails'
gem 'premailer-rails', '1.7.0'
gem 'nokogiri'
gem 'seed_dump'
gem 'paperclip'
gem 'aws-sdk', '~> 1.34'
gem 'foreman'
gem 'devise'
gem 'omniauth-salesforce', git: "https://github.com/sb8244/omniauth-salesforce"
gem 'restforce', git: "https://github.com/crisply/restforce"
group :development do
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem 'factory_girl_rails'
gem 'faker'
end
group :production do
gem 'rails_12factor'
end