[Logilogi-svn] SF.net SVN: logilogi:[1676] trunk
Status: Beta
Brought to you by:
wybow
|
From: <wy...@us...> - 2010-01-29 20:38:29
|
Revision: 1676
http://logilogi.svn.sourceforge.net/logilogi/?rev=1676&view=rev
Author: wybow
Date: 2010-01-29 20:38:12 +0000 (Fri, 29 Jan 2010)
Log Message:
-----------
Fixed rack problem, spd Rails pplz
Modified Paths:
--------------
trunk/config/environment.rb
trunk/doc/README_FOR_APP
trunk/lib/tasks/dev.rake
Modified: trunk/config/environment.rb
===================================================================
--- trunk/config/environment.rb 2010-01-29 17:36:23 UTC (rev 1675)
+++ trunk/config/environment.rb 2010-01-29 20:38:12 UTC (rev 1676)
@@ -37,8 +37,8 @@
config.gem "textweaver"
config.gem 'mislav-will_paginate', :lib => 'will_paginate',
:source => 'http://gems.github.com'
+ config.gem "rack", :lib => "rack"
config.gem "ya2yaml"
- config.gem "mysql"
if INSTALLED_RMAGICK
config.gem 'rmagick', :lib => 'rvg/rvg'
Modified: trunk/doc/README_FOR_APP
===================================================================
--- trunk/doc/README_FOR_APP 2010-01-29 17:36:23 UTC (rev 1675)
+++ trunk/doc/README_FOR_APP 2010-01-29 20:38:12 UTC (rev 1676)
@@ -90,8 +90,14 @@
It contains LogiLogi, Ruby on Rails and all gems that LogiLogi needs.
-Skip to step 2.
+All gems, except rack. It could not because the Rails people decided
+to make it into a separate gem, that cannot be included in snapshot
+(what were they thinking, if at all?). Anyway, you can install it in
+the following way:
+ gem install rack
+All done. Skip to step 2.
+
As a side-note, note that it does not include RMagick, which is
used to generate new images for the user interface. This is not
a problem, unless you want to change things in the UI (and you
@@ -106,12 +112,14 @@
LogiLogi Manta requires Rails[http://www.rubyonrails.org].
-You can install Rails with:
+You can install Rails with (gem1.8, or gem<version number> on some
+OSses):
gem install rails
(as root, if gem command is not found you might have to type gem1.8
instead)
-And it requires the daemons[http://svn.kylemaxwell.com/rails_plugins/daemon_generator],
+And it requires the rack[http://rack.rubyforge.org/],
+daemons[http://svn.kylemaxwell.com/rails_plugins/daemon_generator],
rubyzip[http://rubyzip.sourceforge.net],
ruby-openid[http://www.openidenabled.com/openid/libraries/ruby],
binarylogic-authlogic[http://rdoc.info/projects/binarylogic/authlogic],
@@ -136,7 +144,7 @@
Then You can install them with:
- gem install daemons rubyzip ruby-openid binarylogic-authlogic \
+ gem install rack daemons rubyzip ruby-openid binarylogic-authlogic \
authlogic-oid quantipay-authlogic_haapi ratom json \
mislav-will_paginate positionrange difflcs textweaver mysql \
rmagick ya2yaml
@@ -231,8 +239,9 @@
And to get MySQL, Subversion, libopenssl, Xapian and libxml2
sudo apt-get install make mysql-server mysql-client \
- libmysqlclient15-dev subversion libopenssl-ruby1.8 \
- libxapian15 libxapian-ruby1.8 libxml2
+ libmysqlclient15-dev libmysql-ruby subversion \
+ libopenssl-ruby1.8 libxapian15 libxapian-ruby1.8 \
+ libxml2
If you do the manual install, and want to use ImageMagick, you get
it and libxml2:
Modified: trunk/lib/tasks/dev.rake
===================================================================
--- trunk/lib/tasks/dev.rake 2010-01-29 17:36:23 UTC (rev 1675)
+++ trunk/lib/tasks/dev.rake 2010-01-29 20:38:12 UTC (rev 1676)
@@ -46,7 +46,8 @@
"rm -rf vendor/gems",
"rm -rf vendor/rails",
"cd ..; scp logilogi" + time + ".tgz wybow,log...@fr...:" +
- "/home/frs/project/l/lo/logilogi/logilogi"]
+ "/home/frs/project/l/lo/logilogi/logilogi"
+ ]
runs.each do |run|
ErrorNotifier.run_and_report_if_erred(run, 'Build')
end
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|