forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (42 loc) · 1.52 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
source 'https://rubygems.org'
# Declare your gem's dependencies in typus.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.4'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Database Adapters
gem 'pg', '~> 0.18.4'
# Typus can manage lists, trees, trashes, so we want to enable this stuff
# on the demo.
gem 'acts_as_list', github: 'typus/acts_as_list'
gem 'acts_as_tree'
gem 'rails-permalink', '~> 1.0.0'
gem 'rails-trash', github: 'fesplugas/rails-trash'
# Rich Text Editor
gem 'ckeditor-rails', github: 'fesplugas/rails-ckeditor'
# Alternative authentication
gem 'devise', '~> 3.5.6'
# Asset Management
gem 'dragonfly', '~> 1.0.12'
gem 'rack-cache', require: 'rack/cache'
gem 'paperclip', '~> 4.3.6'
gem 'carrierwave', '~> 0.10.0'
# MongoDB
# gem 'mongoid', github: 'mongoid/mongoid'
# Testing stuff
group :test do
gem 'minitest-rails-capybara' # makes capybara's DSL methods available in Rails minitests
gem 'poltergeist' # a headless browser (webkit) as capybara driver
end
gem 'puma'