-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (49 loc) · 1.24 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
source 'https://rubygems.org'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'semantic-ui-sass', github: 'doabit/semantic-ui-sass'
gem 'bootstrap-sass'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'typescript-rails'
gem 'jquery-rails'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'simple_form'
gem 'simple_form_fancy_uploads'
gem 'pg_search'
gem 'cocoon'
gem 'devise'
#editor gems
gem 'react-rails'
gem 'browserify-rails'
gem 'cloudinary'
gem 'mini_magick'
gem 'carrierwave'
gem 'ckeditor', github: 'kaanoo2904/ckeditor'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'counter_culture'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :test do
gem 'sqlite3'
end
group :development do
gem 'web-console'
gem 'listen', '~> 3.0.5'
gem "better_errors"
end
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec-rails', '~> 3.5'
gem 'factory_girl_rails'
gem 'rails-controller-testing'
gem 'faker'
gem 'shoulda-matchers'
end
group :production, :development do
gem 'pg'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]