-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
87 lines (70 loc) · 2.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
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
source "http://rubygems.org"
# rails
RAILS_VERSION = "~> 3.2"
gem "rails", RAILS_VERSION
gem "mysql2"
# jquery
gem "jquery-rails"
# development
group(:development) do
gem "magic_encoding"
end
# assets
group(:assets) do
gem "coffee-rails"
gem "haml-rails"
gem "sass-rails"
gem "compass-rails"
gem "uglifier"
end
# test
group :test do
gem "rspec-rails"
gem "factory_girl_rails"
gem "database_cleaner"
gem "shoulda-matchers"
end
# deploy
gem "execjs"
# BLAH: https://github.com/cowboyd/therubyracer/issues/215
gem "libv8", "~> 3.3.10"
gem "therubyracer", "0.10.2"
gem "capistrano", ">= 2.9.0"
gem "capistrano_colors"
gem "unicorn"
gem "thin"
# monitoring
gem "god"
gem "tlsmail", :require => false
gem "certified"
# application
gem "enumerated_attribute"
gem "recursive-open-struct"
gem "exception_notification"
gem "whenever", :require => false
gem "delayed_job"
gem "delayed_job_active_record"
gem "delayed_mail", :git => "https://github.com/verticallabs/delayed_mail.git"
gem "will_paginate"
gem "active_link_to"
gem "squeel"
HOME_PATH = File.expand_path("~/mambo/gems")
DEV_GIT = "https://github.com/verticallabs"
#gem "mambo-authentication", :path => "#{HOME_PATH}/authentication" #MAMBO_LOCAL
gem "mambo-authentication", :git => "#{DEV_GIT}/mambo-authentication.git", :branch => 'ar' #MAMBO_DEV
#gem "mambo-authentication", ">= 0.0.10" #MAMBO_PUBLIC
#gem "mambo-adapters", :path => "#{HOME_PATH}/adapters" #MAMBO_LOCAL
gem "mambo-adapters", :git => "#{DEV_GIT}/mambo-adapters.git", :branch => 'ar' #MAMBO_DEV
#gem "mambo-adapters", ">= 0.0.13" #MAMBO_PUBLIC
#gem "mambo-sms", :path => "#{HOME_PATH}/sms" #MAMBO_LOCAL
gem "mambo-sms", :git => "#{DEV_GIT}/mambo-sms.git", :branch => 'ar' #MAMBO_DEV
#gem "mambo-sms", ">= 0.0.15" #MAMBO_PUBLIC
# gem "mambo-sms", :git => "https://github.com/garbles/mambo-sms.git",
# :branch => 'export-to-csv'
# #TESTING FOR WORKING MESSAGE-TEMPLATE TO CSV
#gem "mambo-messaging", :path => "#{HOME_PATH}/messaging" #MAMBO_LOCAL
gem "mambo-messaging", :git => "#{DEV_GIT}/mambo-messaging.git", :branch => 'ar' #MAMBO_DEV
#gem "mambo-messaging", ">= 0.0.7" #MAMBO_PUBLIC
#gem "mambo-support", :path => "#{HOME_PATH}/support" #MAMBO_LOCAL
gem "mambo-support", :git => "#{DEV_GIT}/mambo-support.git", :branch => 'ar' #MAMBO_DEV
#gem "mambo-support", ">= 0.0.9" #MAMBO_PUBLIC