Skip to content

Commit

Permalink
updated to newest rails version (2.1.1). if you don't have it yet,
Browse files Browse the repository at this point in the history
you should install it via rubygems: sudo gem install rails --version 2.1.1
  • Loading branch information
bakkdoor committed Sep 6, 2008
1 parent d83b086 commit e26bd5a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ YARPS was started by Christopher Bertels (bakkdoor) and Denis Meyer (CallToPower
Check out the src/ folder and play around with it. It's just another rails app, so you should get going pretty fast.
Just make sure to change the yarps-configuration (src/config/yarps_config.yml) accordingly to your host & mail settings,
since you'll want to make sure, your mailer works correctly (and some other stuff as well).

You'll also need the latest version of rails, which was released Sep. 05 2008.
Get it via rubygems: sudo gem install rails --version 2.1.1


It was started as a german-documented project but there has been done some work to make it all in english, including comments etc.
If you find any stuff that's still in german, let me know or change it yourself (if you understand german). It should all be in english
Expand Down
4 changes: 2 additions & 2 deletions src/app/views/layouts/application.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<% end %>
</div>
<div id="menu" class="menu">
<%= render :file => "layouts/_menu" %>
<%= render :partial => "layouts/menu" %>
</div>
</div>
<div class="search">
Expand Down Expand Up @@ -61,7 +61,7 @@
</div>
<% if logged_in? %>
<div id="right" class="menu-right">
<%= render :file => "layouts/_submenu" %>
<%= render :partial => "layouts/submenu" %>
</div>
<% end %>

Expand Down
2 changes: 1 addition & 1 deletion src/config/environment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# ENV['RAILS_ENV'] ||= 'production'

# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.1.0' unless defined? RAILS_GEM_VERSION
RAILS_GEM_VERSION = '2.1.1' unless defined? RAILS_GEM_VERSION

# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Expand Down

0 comments on commit e26bd5a

Please sign in to comment.