forked from andrewhao/mailbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (57 loc) · 1.26 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
source 'https://rubygems.org'
ruby '2.1.0'
gem 'rails', '4.1.1'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'bootstrap-sass'
gem 'haml-rails'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem "omnicontacts", :git => 'https://github.com/Diego81/omnicontacts.git'
gem 'puma'
gem "therubyracer"
gem "psych"
gem "rest-client"
gem "hashie"
gem 'bootstrap-wysihtml5-rails'
gem 'bootstrap_form'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19]
gem 'capistrano', '~> 3.0.1'
gem 'capistrano-bundler'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-rails-console'
gem 'capistrano-rvm', '~> 0.1.1'
gem 'foreman'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'html2haml'
gem 'rails_layout'
gem 'rb-fchange', :require=>false
gem 'rb-fsevent', :require=>false
gem 'rb-inotify', :require=>false
gem 'dotenv'
end
group :production do
gem 'rails_12factor'
gem "pg"
end
group :development, :test do
gem "sqlite3"
gem 'factory_girl_rails'
gem 'pry-rails'
gem 'pry-rescue'
gem 'rspec-rails'
end
group :test do
gem "webmock"
gem 'capybara'
gem 'database_cleaner', '1.0.1'
gem 'email_spec'
end