forked from activeadmin/activeadmin-mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (27 loc) · 824 Bytes
/
Gemfile
File metadata and controls
36 lines (27 loc) · 824 Bytes
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
source 'https://rubygems.org'
# Declare your gem's dependencies in activeadmin-mongoid.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# Test app stuff
gem 'rails', '~> 4.0.0'
# Waiting for the release
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'mongoid', github: 'mongoid/mongoid'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
# Bundler hacks
gem 'railties', '~> 4.0.0' # forced to overcome coffee-rails
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
group :doc do
gem 'sdoc', require: false
end
group :test do
gem 'capybara'
gem 'poltergeist'
gem 'launchy'
gem 'simplecov', require: false
end