forked from eadz/typus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
80 lines (62 loc) · 2.28 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0.beta1'
gem 'coffee-rails', '~> 4.0.0.beta1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '~> 1.3.0'
end
# Database adapters
platforms :jruby do
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
end
platforms :ruby do
gem 'mysql2', '~> 0.3.11'
gem 'pg', '~> 0.15.0'
gem 'sqlite3', '~> 1.3.7'
gem 'bson_ext'
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', '~> 2.0.0'
gem 'rails-trash', :git => 'git://github.com/fesplugas/rails-trash.git'
# gem 'rails-trash', :path => "~/Development/rails-trash"
# We want to be able to use Factory Girl for seeding data.
gem 'factory_girl_rails', '~> 4.2.1'
# For some reason I also need to define the `jquery-rails` gem here.
gem 'jquery-rails'
# Rich Text Editor
# gem "ckeditor-rails", "~> 0.0.5"
gem "ckeditor-rails", :git => "git://github.com/fesplugas/rails-ckeditor.git"
# Alternative authentication
# gem 'devise', '~> 2.0.5'
gem 'devise', :git => 'git://github.com/plataformatec/devise.git', :branch => 'rails4'
# Asset Management with Dragonfly
gem 'dragonfly', '~> 0.9.14'
gem 'rack-cache', :require => 'rack/cache'
# Asset Management with Paperclip
gem 'paperclip', '~> 3.4.1'
# MongoDB
# gem 'mongoid', '~> 2.4.6'
gem 'mongoid', :git => 'git://github.com/mongoid/mongoid.git'
group :test do
gem 'mocha', '~> 0.13.3', :require => false
end
gem 'kaminari'
# gem 'will_paginate'
# 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.0'
gem 'figaro'