Skip to content

Commit

Permalink
fix install bug where it couldn't find a file we didn't bundle with t…
Browse files Browse the repository at this point in the history
…he gem (oops). (ht: mchung)
  • Loading branch information
parndt committed Aug 28, 2010
1 parent 3ec1010 commit 1f0f21d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bin/refinerycms
Expand Up @@ -147,8 +147,8 @@ module Refinery
end

# Change from development to production
find_and_replace('Gemfile', "gem 'refinerycms', :path => '.'",
"gem 'refinerycms', '~> #{Refinery.version}'")
find_and_replace('Gemfile', "gem 'refinerycms', :path => '.'",
"gem 'refinerycms', '~> #{Refinery.version}'")

# Add in AWS-S3 for Heroku
find_and_replace('Gemfile', "# gem 'aws-s3', :require => 'aws/s3'",
Expand Down
2 changes: 1 addition & 1 deletion lib/gemspec.rb
Expand Up @@ -7,7 +7,7 @@
rejection_patterns = [
"public\/system",
"^config\/(application|boot|environment).rb$",
"^config\/environments",
#"^config\/environments",
"^config\/initializers\/(backtrace_silencers|inflections|mime_types|secret_token|session_store).rb$",
"^config\/(cucumber|database|i18n\-js).yml$",
"^public\/",
Expand Down
8 changes: 6 additions & 2 deletions refinerycms.gemspec
Expand Up @@ -2,9 +2,9 @@

Gem::Specification.new do |s|
s.name = %q{refinerycms}
s.version = %q{0.9.8.0.beta4.pre}
s.version = %q{0.9.8.0.beta5.pre}
s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.}
s.date = %q{2010-08-27}
s.date = %q{2010-08-28}
s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
Expand Down Expand Up @@ -42,6 +42,10 @@ Gem::Specification.new do |s|
'config/database.yml.mysql',
'config/database.yml.postgresql',
'config/database.yml.sqlite3',
'config/environments',
'config/environments/development.rb',
'config/environments/production.rb',
'config/environments/test.rb',
'config/initializers',
'config/initializers/acts_as_indexed_config.rb',
'config/initializers/field_with_error_fix.rb',
Expand Down
2 changes: 1 addition & 1 deletion vendor/refinerycms/refinery.rb
Expand Up @@ -27,7 +27,7 @@ class Version
@major = 0
@minor = 9
@tiny = 8
@build = '0.beta4.pre'
@build = '0.beta5.pre'

class << self
attr_reader :major, :minor, :tiny, :build
Expand Down

0 comments on commit 1f0f21d

Please sign in to comment.