-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
88 lines (81 loc) · 2.35 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
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem 'rails', '3.2.22.5'
gem 'mysql2', '~> 0.3.17'
gem "mail"
gem 'will_paginate', '~> 3.0'
gem "guid"
gem 'multi_json', '~> 1.3'
gem 'twitter'
gem 'twitter_oauth'
gem 'ruby-smpp', :git => 'https://github.com/instedd/ruby-smpp.git', :branch => 'array_pack', :require => 'smpp'
gem "eventmachine"
gem 'bunny', '>= 1.6.2'
gem 'memcache-client'
gem 'xmpp4r'
gem 'rest-client', :require => 'rest_client'
gem 'qst_client'
gem 'nokogiri', '>= 1.5.5'
gem 'daemon_controller'
gem 'ruby-cache', :require => 'cache'
gem 'json'
gem 'rgviz'
gem 'rgviz-rails', :require => 'rgviz_rails'
gem 'smart_asset'
gem 'blather'
gem 'dynamic_form'
gem 'ci_reporter'
gem 'daemons'
gem 'decent_exposure'
gem 'jquery-rails', '>= 1.0.12'
gem 'jquery-ui-rails'
gem 'twilio-ruby'
gem 'em-msn', '>= 0.7'
gem 'devise'
gem 'omniauth'
gem 'omniauth-openid'
gem 'omniauth-google-oauth2'
gem 'alto_guisso', github: "instedd/alto_guisso", branch: 'master'
gem 'alto_guisso_rails', github: "instedd/alto_guisso_rails", branch: 'master'
gem 'dalli', '2.7.9' # required by `alto_guisso_rails`, fixed to avoid auto-upgrade - but by all means update if/when needed
gem 'slim'
gem 'lodash-rails'
gem 'knockoutjs-rails'
gem 'newrelic_rpm'
gem 'foreman'
gem 'instedd_telemetry', git: "https://github.com/instedd/telemetry_rails", branch: 'master'
gem 'poirot_rails', git: 'https://github.com/instedd/poirot_rails.git', branch: 'master'
gem 'instedd-pigeon', git: "https://bitbucket.org/instedd/pigeon.git", branch: 'master', :require => 'pigeon'
gem 'rails-assets-material-components-web', source: 'https://rails-assets.org'
gem 'intercom-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.2.0"
gem 'coffee-rails', "~> 3.2.0"
gem 'uglifier'
end
group :development do
gem 'licit'
gem 'capistrano', "~> 2.15"
gem 'rails-dev-tweaks'
end
group :debug do
end
group :test do
gem 'pry'
gem 'pry-debugger'
gem "rake"
gem 'test-unit', '~> 3.1.8', :require => 'test/unit'
gem "mocha"
gem "thoughtbot-shoulda", :require => "shoulda"
gem 'ffaker'
gem 'machinist'
gem 'test_after_commit'
gem 'timecop'
gem 'addressable', '~> 2.4.0' # Fixing version available for Ruby 1.9
gem 'webmock', '~> 1.8.0'
end
group :webserver do
gem 'puma'
end