Skip to content

Commit

Permalink
Fixes an issue that caused installation to fail on some systems that …
Browse files Browse the repository at this point in the history
…can't require a Pathname. Only refinerycms and refinerycms-base are at 0.9.9.6, the others are at 0.9.9.5
  • Loading branch information
parndt committed Mar 8, 2011
1 parent 3dee550 commit 6fdff8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion base/lib/refinery/version.rb
Expand Up @@ -3,7 +3,7 @@ class Version
@major = 0
@minor = 9
@tiny = 9
@build = 5
@build = 6

class << self
attr_reader :major, :minor, :tiny, :build
Expand Down
2 changes: 1 addition & 1 deletion base/refinerycms-base.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{refinerycms-base}
s.version = %q{0.9.9.5}
s.version = %q{0.9.9.6}
s.summary = %q{Base engine for Refinery CMS}
s.description = %q{The basic base for Refinery CMS Refinery CMS}
s.date = %q{2011-03-08}
Expand Down
2 changes: 1 addition & 1 deletion bin/refinerycms
Expand Up @@ -14,7 +14,7 @@ end
REFINERYCMS_INSTALLER = true

# Load refinerycms
require Pathname.new(File.expand_path(File.dirname(__FILE__) << "/..")).join('lib', 'refinery')
require File.expand_path(File.dirname(__FILE__) << "/../lib/refinery")

# Load other required libraries
require 'pathname'
Expand Down
2 changes: 1 addition & 1 deletion refinerycms.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{refinerycms}
s.version = %q{0.9.9.5}
s.version = %q{0.9.9.6}
s.description = %q{A Ruby on Rails CMS that supports Rails 3. It's easy to extend and sticks to 'the Rails way' where possible.}
s.date = %q{2011-03-08}
s.summary = %q{A Ruby on Rails CMS that supports Rails 3}
Expand Down

0 comments on commit 6fdff8d

Please sign in to comment.