Gemfile in cobbler-2.0.1 vs Gemfile in cobbler-2.0.2

- old
+ new

@@ -1,10 +1,16 @@ source "http://rubygems.org" # Add dependencies required to use your gem here. # Example: # gem "activesupport", ">= 2.3.5" -gem 'activesupport' +if RUBY_VERSION < "1.9" + gem 'activesupport', '~> 3.1.12' + gem 'nokogiri', '~> 1.5.0' +else + gem 'activesupport' +end +gem 'i18n' # Add dependencies to develop your gem here. # Include everything needed to run rake, tests, features, etc. group :development do gem "rspec", "~> 2.5.0"