forked from joshsoftware/office_automation_employee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (47 loc) · 1.3 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
source 'https://rubygems.org'
# Declare your gem's dependencies in office_automation_employee.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
gem 'devise'
gem 'devise_invitable'
gem 'devise-async'
gem 'sidekiq'
gem 'mongoid', github: 'mongoid/mongoid'
gem 'mongoid_slug'
gem 'mongoid_search'
gem 'cancan'
gem 'carrierwave-mongoid', '~> 0.6.3', :require => 'carrierwave/mongoid'
gem 'rmagick'
gem 'kaminari'
gem 'therubyracer'
gem 'nested_form'
gem 'simple_form'
gem 'country_select'
gem 'jquery-rails'
gem 'haml-rails'
gem 'sass-rails', '~> 4.0.2'
gem 'bootstrap-sass'
gem 'coffee-rails'
gem 'bootstrap-datepicker-rails'
gem 'colorbox-rails'
gem 'remotipart', '~> 1.2'
gem 'turbolinks'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry-rails'
end
group :test do
gem 'rspec-rails'
gem 'mongoid-rspec'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'simplecov', '~> 0.7.1'
end
# Declare any dependencies that are still in development here instead of in
# your gemspec. These might include edge Rails or gems from your path or
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.
# To use debugger
# gem 'debugger'