forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
129 lines (107 loc) · 2.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
source 'https://rubygems.org'
RAILS_VERSION = '~> 3.2.18'
gem 'actionmailer', RAILS_VERSION
gem 'actionpack', RAILS_VERSION
gem 'railties', RAILS_VERSION
gem 'mongoid'
gem 'mongoid_rails_migrations'
gem 'devise'
gem 'haml'
gem 'htmlentities'
gem 'rack-ssl', :require => 'rack/ssl' # force SSL
gem 'useragent'
gem 'decent_exposure'
gem 'strong_parameters'
gem 'actionmailer_inline_css'
gem 'kaminari', '>= 0.14.1'
gem 'rack-ssl-enforcer', :require => false
gem 'fabrication'
gem 'rails_autolink'
# Please don't update hoptoad_notifier to airbrake.
# It's for internal use only, and we monkeypatch certain methods
gem 'hoptoad_notifier', "~> 2.4"
# Remove / comment out any of the gems below if you want to disable
# a given issue tracker, notification service, or authentication.
# Issue Trackers
# ---------------------------------------
# Lighthouse
gem 'lighthouse-api'
# Redmine
gem 'oruen_redmine_client', :require => 'redmine_client'
# Pivotal Tracker
gem 'pivotal-tracker'
# Fogbugz
gem 'ruby-fogbugz', :require => 'fogbugz'
# Github Issues
gem 'octokit', '~> 2.0'
# Gitlab
gem 'gitlab', '~> 3.0.0'
# Bitbucket Issues
gem 'bitbucket_rest_api', :require => false
# Jira
gem 'jira-ruby', :require => 'jira'
# Notification services
# ---------------------------------------
gem 'campy'
# Hipchat
gem 'hipchat'
# Google Talk
gem 'xmpp4r', :require => ["xmpp4r", "xmpp4r/muc"]
# Hoiio (SMS)
gem 'hoi'
# Pushover (iOS Push notifications)
gem 'rushover'
# Hubot
gem 'httparty'
# Flowdock
gem 'flowdock'
# Authentication
# ---------------------------------------
# GitHub OAuth
gem 'omniauth-github'
gem 'ri_cal'
gem 'yajl-ruby', :require => "yajl"
group :development, :test do
gem 'rspec-rails'
gem 'webmock', :require => false
gem 'airbrake', :require => false
gem 'pry-rails'
# gem 'rpm_contrib'
# gem 'newrelic_rpm'
gem 'quiet_assets'
end
group :development do
gem 'capistrano', '~> 2.0', :require => false
# better errors
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'foreman', :require => false
# Use puma for development
gem 'puma', :require => false
end
group :test do
gem 'capybara'
gem 'launchy'
gem 'database_cleaner'
gem 'email_spec'
gem 'timecop'
gem 'coveralls', :require => false
gem 'mongoid-rspec', :require => false
end
group :heroku, :production do
gem 'unicorn', :require => false
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'execjs'
gem 'therubyracer', :platform => :ruby # C Ruby (MRI) or Rubinius, but NOT Windows
gem 'uglifier', '>= 1.0.3'
# We can't upgrade because not compatible to jquery >= 1.9.
# To do that, we need fix the rails.js
gem 'jquery-rails', '~> 2.1.4'
gem 'pjax_rails'
gem 'underscore-rails'
gem 'turbo-sprockets-rails3'
end