-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
63 lines (50 loc) · 1.69 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
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.0.20'
gem 'sendgrid', '1.1.0'
# extension for arel where
#gem "meta_where"
gem 'squeel', '1.0.14'
gem 'pg', '0.14.1'
gem 'postgres-pr', '0.6.3', :require => 'pg'
gem 'responders', '0.6.5'
gem 'acts_as_list', '0.1.9'
gem 'gemcutter'
gem 'state_machine', '1.1.2'
gem 'ruby-graphviz', '1.0.8', :require => 'graphviz' # for visualizing state machines
gem 'haml', '3.1.7'
gem 'sass', '3.2.5'
gem 'devise', '1.5.2' #, :git => 'http://github.com/plataformatec/devise.git', :branch => 'master'
gem 'koala', '~> 2.2'
gem 'omniauth'
gem 'omniauth-odnoklassniki'
group :production do
gem 'exceptional', '2.0.33'
gem 'newrelic_rpm', '~> 3.7.1'
gem 'god', '0.13.3'
gem 'unicorn', '4.8.0'
end
group :development do
# gem "debugger"
# gem "debugger-xml"
gem 'better_errors', '1.1.0'
gem 'binding_of_caller', '0.7.2'
gem 'mongrel', '>= 1.2.0.pre2' #for ruby v1.9.2
gem 'thin', '1.6.1'
end
# CKEditor + Paperclip
gem 'ckeditor', :git => '[email protected]:Bnei-Baruch/rails-ckeditor.git', :branch => 'rails3'
gem 'paperclip', '4.2.0'
gem 'btucker-google_visualization', git: 'git://github.com/btucker/google_visualization.git'
gem 'feedzirra', '0.1.2'
gem 'will_paginate', '~> 3.0.pre'
gem 'acts-as-taggable-on', :git => 'https://github.com/mbleigh/acts-as-taggable-on.git', ref: '9563d799110ee8d798f2b5cfe21d8fdb3ca534fb'
gem 'excel_exporter', :git => 'https://github.com/gshilin/excel_exporter.git'
gem 'rubyzip', '0.9.9'
gem 'onfire', '~>0.1.1'
gem 'yajl-ruby', :require => 'yajl'
# Cells/Apotomo
gem 'apotomo', '1.0.4', :git => 'git://github.com/ramigg/apotomo.git', :branch => '1-0-stable'#, :require => 'apotomo'
# Cache store:
gem 'dalli'
gem 'rack'