-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGemfile
57 lines (48 loc) · 1.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
source 'https://rubygems.org'
gem 'rails', '~> 3.2'
gem "jquery-rails", "~> 2.2"
gem 'haml-rails', '~> 0.4'
gem 'uglifier'
gem 'newrelic_rpm'
#Search
gem 'sunspot_mongoid2'
gem 'sunspot_solr'
gem 'sunspot_cell', :git => 'git://github.com/zheileman/sunspot_cell.git'
gem 'sunspot_cell_jars'
gem 'progress_bar'
#Representers
# gem 'roar', '~> 0.11.19'
gem 'roar-rails', "0.1.0"
gem 'billit_representers', '0.9.7'
gem 'will_paginate', '~> 3.0'
#Dates
gem 'business_time'
#ActiveAdmin
gem 'activeadmin-mongoid'
gem 'coffee-script', '~> 2.2.0'
# Clean ruby syntax for writing and deploying cron jobs (for rvm)
gem 'whenever', :git => 'https://github.com/Insomniware/whenever.git', :require => false
#gem 'whenever', :require => false #for non rvm
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'awesome_print'
end
group :development do
gem 'thin'
# Replaces default rails error page with a much better and more useful error page
gem 'better_errors'
gem 'binding_of_caller'
# Turns off the rails asset pipeline log
gem 'quiet_assets'
end
group :test do
gem 'database_cleaner'
gem 'faker'
gem 'webmock'
end
#Javascript Runtime, If you have nodejs you can comment this line
gem 'therubyracer'