Skip to content

Commit

Permalink
merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsherrill committed Jan 25, 2013
2 parents e66f324 + 5729fd6 commit 4aa18e8
Show file tree
Hide file tree
Showing 315 changed files with 16,623 additions and 48,456 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ vendor/ruby
coverage
public/assets
.rvmrc
config/katello.yml
.DS_Store
bundler.d/local*.rb
20 changes: 10 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@ if ENV['BUNDLER_ENABLE_RPM_PREFERRING'] == 'true'
require File.join(File.dirname(__FILE__), 'lib', 'bundler_patch_rpm-gems_preferred')
end

require './lib/util/boot_util'
# load Katello configuration
path = File.expand_path('../lib', __FILE__)
$LOAD_PATH << path unless $LOAD_PATH.include? path
require 'katello_config'

# 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.0.10'
version = `uname -a` rescue ""
if version =~ /fc18/
gem 'rails', '~> 3.2.8'
else
gem 'rails', '3.0.10'
end
gem 'json'
gem 'rest-client', :require => 'rest_client'
gem 'jammit', '>= 0.5.4'
Expand All @@ -34,13 +42,6 @@ gem 'delayed_job', '~> 2.1.4'
gem 'daemons', '>= 1.1.4'
gem 'uuidtools'

# Stuff for view/display/frontend
gem 'haml', '>= 3.1.2'
gem 'haml-rails', "= 0.3.4"
gem 'compass', '>= 0.11.5', '< 0.12'
gem 'compass-960-plugin', '>= 0.10.4', :require => 'ninesixty'
gem 'simple-navigation', '>= 3.3.4'

# Stuff for i18n
gem 'gettext_i18n_rails'
gem 'i18n_data', '>= 0.2.6', :require => 'i18n_data'
Expand All @@ -64,7 +65,6 @@ gem "apipie-rails", '>= 0.0.13'
# Pulp API bindings
gem 'hooks'
gem 'runcible', '~> 0.3.1'

gem 'anemone'

# Load all sub-gemfiles from bundler.d directory
Expand Down
256 changes: 0 additions & 256 deletions README

This file was deleted.

Loading

0 comments on commit 4aa18e8

Please sign in to comment.