-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (49 loc) · 1.2 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
source 'https://rubygems.org'
gem 'rails', '~> 4.1.0'
gem 'unicorn'
gem 'mysql2'
gem 'sass-rails'
gem 'coffee-rails'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
gem 'jquery-rails'
gem 'rails_config'
gem 'omniauth-facebook', '1.4.0'
gem 'omniauth-dropbox-oauth2', git: 'https://github.com/tkengo/omniauth-dropbox-oauth2.git'
gem 'fb_graph'
gem 'pry-rails'
gem 'js-routes'
gem 'awesome_print'
gem 'dropbox-sdk'
gem 'capistrano', git: 'https://github.com/capistrano/capistrano.git'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
gem 'kaminari'
gem 'exception_notification'
gem 'slim-rails'
gem 'mobylette'
gem 'rails_admin'
gem 'whenever', require: false
gem 'dot_secrets', github: 'rono23/dot_secrets'
group :production do
gem 'rb-readline'
end
group :development, :test do
gem 'spring'
gem 'spring-commands-rspec'
end
group :development do
gem 'quiet_assets'
gem 'rails-erd'
end
group :test do
gem 'rspec-rails'
gem 'rack-test', git: 'https://github.com/brynary/rack-test.git'
gem 'factory_girl_rails'
gem 'poltergeist'
gem 'selenium-webdriver'
gem 'database_cleaner', git: 'https://github.com/bmabey/database_cleaner.git'
gem 'guard-rspec'
gem 'webmock'
end