-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (49 loc) · 1.13 KB
/
Gemfile
File metadata and controls
53 lines (49 loc) · 1.13 KB
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'
gem 'rake', '10.1.1'
gem 'rails', '4.0.0'
gem 'mysql2'
gem 'unicorn'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'carrierwave'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'devise', '~> 3.1.0'
gem 'the_role', '~> 2.1.0'
gem 'bootstrap-sass', '~> 2.3.2.2'
gem 'omniauth'
gem 'omniauth-facebook', '~> 1.4.1'
gem 'kaminari'
gem 'koala'
gem 'simple_form'
gem 'guard-rails'
# for Rails 4.0
# gem 'simple_form', github: 'plataformatec/simple_form', tag: 'v3.0.0.beta1'
# You'll need to include the following dependencies of Summernote
gem 'font-awesome-rails'
# This is the right gem to use summernote editor in Rails projects.
# gem 'summernote-rails'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'sqlite3'
gem 'pry'
gem 'capistrano', '~> 2.15.4'
gem 'quiet_assets'
end
group :production do
# gem 'rb-readline', '~> 0.5.1'
end
group :test do
gem 'capybara'
gem 'guard-rspec'
gem "database_cleaner", '~> 1.2.0'
gem "email_spec"
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
end