forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
60 lines (45 loc) · 1.73 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'
# 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', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.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', '~> 1.2'
platforms :jruby do
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
end
platforms :ruby do
gem 'mysql2', '~> 0.3.14'
gem 'pg', '~> 0.17.0'
gem 'sqlite3', '~> 1.3.8'
end
# Typus can manage lists, trees, trashes, so we want to enable this stuff
# on the demo.
gem 'acts_as_list', :git => 'git://github.com/typus/acts_as_list.git'
gem 'acts_as_tree'
gem 'rails-permalink', '~> 1.0.0'
gem 'rails-trash', :git => 'git://github.com/fesplugas/rails-trash.git'
# We want to be able to use Factory Girl for seeding data.
gem 'factory_girl_rails', '~> 4.2.1'
# Rich Text Editor
gem 'ckeditor-rails', :git => 'git://github.com/fesplugas/rails-ckeditor.git'
# Alternative authentication
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
# Asset Management
gem 'dragonfly', '~> 0.9.14'
gem 'rack-cache', :require => 'rack/cache'
gem 'paperclip', '~> 3.4.1'
# MongoDB
gem 'mongoid', :git => 'git://github.com/mongoid/mongoid.git'