-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
53 lines (45 loc) · 1.29 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'bitmask_attributes', '~> 1.0'
gem 'bootstrap-sass', '~> 3.3.4.1'
gem 'carrierwave', '~> 1.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'devise'
gem 'fog'
gem 'font-awesome-sass'
gem 'haml'
gem 'html2haml'
gem 'httparty'
gem 'jquery-rails'
gem 'mini_magick'
gem 'mysql2'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-oauth2'
gem 'paper_trail'
gem 'rails', '4.0.1'
gem 'sass-rails', '~> 4.0.0'
gem 'therubyracer'
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'rubocop', require: false
gem 'whenever', require: false
# Use Capistrano for deploymentgem 'net-ssh', '2.7.0'
gem 'capistrano', '2.14.2', group: :development
gem 'rvm-capistrano', '1.2.7', require: false
# Use debugger
gem 'activeadmin', github: 'activeadmin'
group :test, :development do
gem 'factory_girl_rails', '~> 4.7.0'
gem 'letter_opener'
gem 'rspec-rails', '~> 3.5.1'
gem 'simplecov'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end