forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
125 lines (104 loc) · 2.93 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
source 'http://rubygems.org'
gem 'rails', '3.2.13'
gem 'mongoid', '~> 2.7.1'
gem 'mongoid_rails_migrations'
gem 'devise', '~> 1.5.4'
gem 'haml'
gem 'htmlentities', "~> 4.3.0"
gem 'rack-ssl', :require => 'rack/ssl' # force SSL
# Remove this when tilt 1.3.7 is released.
gem 'tilt', :git => 'https://github.com/rtomayko/tilt.git'
gem 'useragent', '~> 0.4.16'
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"
# 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.git'
# 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'
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
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'
# better errors
gem 'better_errors', :platform => :ruby_19
gem 'binding_of_caller', :platform => :ruby_19
gem 'meta_request', :platform => :ruby_19
gem 'deploy_bunny', :git => '[email protected]:rebbix/deploy-bunny.git', :require => false
end
gem 'foreman', :group => :development
group :test do
gem 'capybara'
gem 'launchy'
gem 'database_cleaner', '~> 0.6.0'
gem 'email_spec'
gem 'timecop'
gem 'coveralls', :require => false
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', '0.10.2', :platform => :ruby # C Ruby (MRI) or Rubinius, but NOT Windows
gem 'uglifier', '>= 1.0.3'
gem 'underscore-rails'
gem 'turbo-sprockets-rails3'
end