forked from Katello/katello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
78 lines (65 loc) · 2.17 KB
/
Gemfile
File metadata and controls
78 lines (65 loc) · 2.17 KB
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
# load Katello configuration
path = File.expand_path('../lib', __FILE__)
$LOAD_PATH << path unless $LOAD_PATH.include? path
require 'katello/load_configuration'
# When adding new version requirement check out EPEL6 repository first
# and use this version if possible. Also check Fedora version (usually higher).
# With a pull request, send also link to our (or Fedora) koji with RPMs.
source 'http://rubygems.org'
gem 'rails', '~> 3.2.8'
gem 'json'
gem 'rabl'
gem 'rest-client', :require => 'rest_client'
gem 'rails_warden', '>= 0.5.2'
gem 'rack-openid'
gem 'net-ldap'
gem 'oauth'
gem 'ldap_fluff', '>= 0.2.2'
if defined? JRUBY_VERSION
gem 'jruby-openssl'
gem 'activerecord-jdbc-adapter'
gem 'jdbc-postgres', :require => false
gem 'activerecord-jdbcpostgresql-adapter', :require => false
gem 'tire', '>= 0.3.0'
else
gem 'thin', '>= 1.2.8'
gem 'tire', '>= 0.3.0', '< 0.4'
gem 'pg'
end
gem 'delayed_job', '~> 3.0.2'
gem 'delayed_job_active_record', '~> 0.3.3'
gem 'daemons', '>= 1.1.4'
gem 'uuidtools'
# Stuff for view/display/frontend
gem 'haml', '~> 3.1.2'
gem 'haml-rails', "= 0.3.4"
gem 'sass-rails'
gem 'compass-rails'
gem 'compass'
gem 'compass-960-plugin', '>= 0.10.4', :require => 'ninesixty'
gem 'simple-navigation', '>= 3.3.4'
gem 'ui_alchemy-rails', '1.0.9'
# Stuff for i18n
gem 'gettext_i18n_rails'
gem 'i18n_data', '>= 0.2.6', :require => 'i18n_data'
# Reports - TODO this is hack that needs to be removed once ruport is officially released
if (`rpm -q rubygem-ruport` rescue "") =~ /^rubygem-ruport-1.7.0\S+/ && ! defined? JRUBY_VERSION
gem 'ruport', '>=1.7.0'
else
gem 'ruport', '>=1.7.0', :git => 'git://github.com/ruport/ruport.git'
end
#not an actual katello dependency, but
#Does not pull in hashery, matches RPM
gem 'pdf-reader', '<= 1.1.1'
gem 'prawn'
gem 'acts_as_reportable', '>=1.1.1', :require => 'ruport/acts_as_reportable'
# Documentation
gem "apipie-rails", '>= 0.0.13'
gem 'hooks'
# Better logging (syslog/rolling/trace)
gem 'logging', '>= 1.8.0'
# Load all sub-gemfiles from bundler.d directory
Dir[File.expand_path('bundler.d/*.rb', File.dirname(__FILE__))].each do |bundle|
self.instance_eval(Bundler.read_file(bundle), bundle)
end
gem 'dynflow', '>= 0.1.0'