-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
100 lines (83 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
source 'http://rubygems.org'
gem 'rails', '4.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'eco'
gem 'simple_form', '~> 3.0.0'
gem 'client_side_validations', '~> 3.2.0'
gem 'client_side_validations-simple_form', '~> 2.0.0'
#gem 'table-for'
#gem 'table_cloth'
gem 'table_for_collection'
gem 'mobile-fu'
#gem 'rails3-jquery-autocomplete'
gem 'kaminari', '~> 0.14.1'
#gem 'friendly_id', '~> 4.0.9'
#gem 'socialization'
gem 'twitter-text'
#File uploading
#gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'
gem 'carrierwave'
gem 'mini_magick'
gem 'cloudinary'
#gem 'cancan'
#gem 'wicked'
gem 'resque', require: "resque/server"
gem 'savon'
gem 'whenever', require: false
gem 'tire'
#PDF
#gem 'prawn'
gem 'exception_notification'
gem 'jquery-rails'
gem 'execjs'
gem 'therubyracer'
gem 'select2-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
gem 'jbuilder'
# Use unicorn as the web server
gem 'unicorn'
#gem 'thin'
# Deploy with Capistrano
gem 'capistrano', '~> 3.0.0'
#gem 'capistrano-rbenv'
gem 'arsiv', path: "../arsiv"
#gem 'assetim', git: "https://github.com/farukca/assetim.git", ref: "899299ee88eb2af42e10ab5a4a0a7d78697d0ba8"
gem 'assetim', path: "../assetim"
#gem 'blogger', git: "https://github.com/farukca/blogger.git", ref: "ff08d3632e75889ca0399fb31c026d5f3ffaddf9"
gem 'blogger', path: "../blogger"
gem 'fleet', path: "../fleet"
#gem 'helpdesk', git: "https://github.com/farukca/helpdesk.git", ref: "2d73c704d9d02672288ec952b847a0dcc7762de1"
gem 'helpdesk', path: "../helpdesk"
gem 'logistics', path: "../logistics"
gem 'network', path: "../network"
#gem 'nimbos', git: "https://github.com/farukca/nimbos.git", ref: "2cadb6f041b4e9b8edb969f5f4e1a169c4501c06"
gem 'nimbos', path: "../nimbos"
gem 'personal', path: "../personal"
gem 'roster', path: "../roster"
gem 'surveyor', path: "../surveyor"
gem 'messenger', path: "../messenger"
group :test do
# Pretty printed test output
#gem 'mongoid-rspec'
#gem 'guard-rspec'
gem 'minitest'
gem 'turn', require: false
gem 'factory_girl_rails'
gem 'capybara'
gem 'fakeweb'
gem 'simplecov', require: false
end
group :development do
gem 'meta_request', '0.2.0'
gem 'ruby-debug19'
# gem 'bullet'
end
#gem 'rack-mini-profiler'