forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (98 loc) · 2.59 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
source 'http://rubygems.org'
gem 'rails', '3.2.12'
gem 'mongoid', '~> 2.4.10'
gem 'mongoid_rails_migrations'
gem 'devise', '~> 1.5.4'
gem 'haml'
gem 'htmlentities', "~> 4.3.0"
gem 'rack-ssl', :require => 'rack/ssl' # force SSL
gem 'useragent', '~> 0.3.1'
gem 'inherited_resources'
gem 'SystemTimer', :platform => :ruby_18
gem 'actionmailer_inline_css', "~> 1.3.0"
gem 'kaminari', '>= 0.14.1'
gem 'rack-ssl-enforcer'
gem 'fabrication', "~> 1.3.0" # Used for both tests and demo data
gem 'rails_autolink', '~> 1.0.9'
# Please don't update hoptoad_notifier to airbrake.
# It's for internal use only, and we monkeypatch certain methods
gem 'hoptoad_notifier', "~> 2.4"
gem 'thin'
#gem 'rack', '1.4.1'
# 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', '~> 1.0.0'
# Gitlab
gem 'gitlab', :git => 'git://github.com/NARKOZ/gitlab'
# Bitbucket Issues
gem 'bitbucket_rest_api'
# Notification services
# ---------------------------------------
# Campfire
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'
# Authentication
# ---------------------------------------
# GitHub OAuth
gem 'omniauth-github'
platform :ruby do
gem 'mongo', '= 1.6.2'
gem 'bson', '= 1.6.2'
gem 'bson_ext', '= 1.6.2'
end
gem 'ri_cal'
gem 'yajl-ruby', :require => "yajl"
group :development, :test do
gem 'rspec-rails', '~> 2.6'
gem 'webmock', :require => false
unless ENV["CI"]
gem 'ruby-debug', :platform => :mri_18
gem 'debugger', :platform => :mri_19
gem 'pry-rails'
end
# gem 'rpm_contrib'
# gem 'newrelic_rpm'
gem 'capistrano'
end
gem 'foreman', :group => :development
group :test do
gem 'capybara'
gem 'launchy'
gem 'database_cleaner', '~> 0.6.0'
gem 'email_spec'
gem 'timecop'
end
group :heroku, :production do
gem 'unicorn'
end
# Use thin for development
gem 'thin', :group => :development, :platform => :ruby
# 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'
gem 'underscore-rails'
gem 'turbo-sprockets-rails3'
end