forked from vekelly09/metaboflo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (47 loc) · 1.11 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
source 'http://rubygems.org'
# Core gems:
gem 'rails', '3.2.8'
gem 'thin', '1.3.1'
gem 'sqlite3'
gem 'roo'
gem "prawn", "~> 0.12.0"
gem "barby", "~> 0.5.1"
# Gems used only for assets and not required in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'execjs'
gem 'therubyracer', :require => 'v8', :platform => :ruby
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-ui-themes'
gem 'highcharts-rails'
gem 'jquery-tablesorter'
gem 'yui-rails'
gem 'jstree-rails', :git => 'git://github.com/tristanm/jstree-rails.git'
gem 'jquery-cookie-rails'
end
group :production do
gem 'execjs'
gem 'therubyracer', :require => 'v8', :platform => :ruby
end
# Testing gems
group :test do
gem 'shoulda'
gem 'minitest'
gem 'turn'
end
group :development do
gem 'quiet_assets' # Don't show full asset pipeline logging in dev
end
# Deploy with Capistrano
#gem 'capistrano'
#gem 'capistrano-ext'
# Extra gems:
gem 'country-select'
gem 'devise'
gem 'paperclip'
gem 'meta_search'
gem 'will_paginate'
gem 'rabl'