forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
142 lines (119 loc) · 3.5 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
130
131
132
133
134
135
136
137
138
139
140
141
142
source 'http://rubygems.org'
gem 'rails', '3.2.13'
gem 'mongoid', '~> 2.7.1'
# Mongoid rails migration > 0.0.14 is not compatible to Mongoid 2.x
gem 'mongoid_rails_migrations', '~> 0.0.14'
gem 'devise', '~> 2.2.6' # Last version supporting ruby 1.8.7
gem 'haml'
gem 'htmlentities'
gem 'rack-ssl', :require => 'rack/ssl' # force SSL
gem 'useragent'
gem 'decent_exposure'
gem 'strong_parameters'
gem 'SystemTimer', :platform => :ruby_18
gem 'actionmailer_inline_css'
gem 'kaminari', '>= 0.14.1'
gem 'rack-ssl-enforcer', :require => false
# fabrication 1.3.0 is last supporting ruby 1.8. Update when stop supporting this version too
gem 'fabrication', "~> 1.3.0" # Used for both tests and demo data
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'
# Gitlab
gem 'gitlab', :git => 'https://github.com/NARKOZ/gitlab.git'
# Bitbucket Issues
gem 'bitbucket_rest_api', :require => false
# Unfuddle
gem "taskmapper", "~> 0.8.0"
gem "taskmapper-unfuddle", "~> 0.7.0"
# Jira
gem 'jira-ruby', :require => 'jira'
# Notification services
# ---------------------------------------
# Campfire ( We can't upgrade to 1.0 because drop support of ruby 1.8
gem 'campy', '0.1.3'
# 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'
platform :ruby do
gem 'mongo'
gem 'bson'
gem 'bson_ext'
end
gem 'ri_cal'
gem 'yajl-ruby', :require => "yajl"
group :development, :test do
gem 'rspec-rails', '~> 2.6'
gem 'webmock', :require => false
gem 'airbrake', :require => false
gem 'ruby-debug', :platform => :mri_18
gem 'debugger', :platform => :mri_19
gem 'pry-rails'
# gem 'rpm_contrib'
# gem 'newrelic_rpm'
gem 'quiet_assets'
end
group :development do
gem 'capistrano'
# better errors
gem 'better_errors' , :platform => :ruby_19
gem 'binding_of_caller', :platform => :ruby_19
gem 'meta_request' , :platform => :ruby_19
gem 'foreman'
# Use thin for development
gem 'thin', :group => :development, :platform => :ruby
end
group :test do
# Capybara 2.1.0 no more support 1.8.7 ruby version
gem 'capybara', "~> 2.0.1"
gem 'launchy'
# DatabaseCleaner 1.0.0 drop the support of ruby 1.8.7
gem 'database_cleaner', '~> 0.9.0'
gem 'email_spec'
gem 'timecop', '0.6.1' # last version compatible to ruby 1.8
gem 'coveralls', :require => false
end
group :heroku, :production do
gem 'unicorn'
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