Displaying 8 results from an estimated 8 matches for "my_rails_app".
2006 Apr 09
2
Substruct v0.6
...RMagick
Updated:
- Better shopping cart experience with AJAX cart
- Faceted navigation of product categories
- Fixed bug where product images would auto-delete when updating
something else about a product.
Upgrade steps:
0. Update the source
tar -xzvf substruct.tar.gz my_rails_app/vendor/plugins/
1. Update the DB
rake engine_migrate
2. Add blank loading html file for modal. This page gets swapped into
the modal dialog (as seen when editing tags) when it''s not visible.
touch public/loading.html
3. Install RMagick...
2006 May 29
1
ANN: Fossilize Plugin - Create Gems of your Applications.
..../script/plugin source
http://opensvn.csie.org/mmediasys/trunk/rails/plugins/
./script/plugin install fossilize
* Then use generate to create the default script and configuration for
your application
Example:
./script/generate fossilize MyRailsApp
This will:
Create my_rails_app script (executable) under /bin.
Add application.yml to /config directory
Please edit the later with your own information (version, package
name, author, etc.)
* When you''re done, use rake package to generate the gem of your
application
* The end user could execute '&...
2005 Dec 29
2
Login plugin
...two following steps - Both
these does not work for me. :
$ script/plugin install login_engine
==I am getting "script/plugin is not a internal or external
command, operable program or batch file"
% svn co https://opensvn.csie.org/rails_engines/plugins/login_engine
<MY_RAILS_APP>/vendor/plugins/login_engine
==== I am using Windows, how can I get the svn stuff?
Any help will be appreciated. I am on Windows XP with Ruby and Rails
succssfully installed.
Thanks
--
Posted via http://www.ruby-forum.com/.
2007 Jan 30
0
No reaction from memcached
...on the console says anything
about caching.
I guess that I have a config error somewhere or a version mismatch.
Here''s what I have at the end of environment.rb
require
''cached_model''
CACHE = MemCache.new ''localhost:11211'', :namespace => ''my_rails_app''
I''ve also tried these settings with the same result:
require ''cached_model''
memcache_options = {
:c_threshold => 10_000,
:compression => true,
:debug => false,
:namespace => ''my_rails_app'',
:readonly => false,
:url...
2006 Apr 11
15
Migrating rails 1.0 app to 1.1 - Noob question
Hi all, I''ve upgraded my system to Rails 1.1.1 successfully.
After much looking I haven''t found out how to migrate an existing
application to a new rails version though. What is the procedure, if
any, for upgrading the application I''ve developed in 1.0? Is there a
script I need to run?
--
Posted via http://www.ruby-forum.com/.
2006 Jan 17
10
ActiveRecord + memcache = cached_model
...First, install the cached_model gem:
$ sudo gem install cached_model
Then set up memcache-client:
$ tail -n 20 config/environments/production.rb
memcache_options = {
:c_threshold => 10_000,
:compression => true,
:debug => false,
:namespace => ''my_rails_app'',
:readonly => false,
:urlencode => false
}
CACHE = MemCache.new memcache_options
CACHE.servers = ''localhost:11211''
session_options = {
:database_manager => CGI::Session::MemCacheStore,
:cache => CACHE,
:session_domain =&...
2006 May 24
1
Working with css
How do you work with css in Rails? Do I use it in the view-pages, the
normal way? Or can a modify the predefined methods, like text_field()?
--
Posted via http://www.ruby-forum.com/.
2006 Jan 30
0
cached_model-1.0.1 ActiveRecords + memcache
...First, install the cached_model gem:
$ sudo gem install cached_model
Then set up memcache-client:
$ tail -n 20 config/environments/production.rb
memcache_options = {
:c_threshold => 10_000,
:compression => true,
:debug => false,
:namespace => ''my_rails_app'',
:readonly => false,
:urlencode => false
}
CACHE = MemCache.new memcache_options
CACHE.servers = ''localhost:11211''
session_options = {
:database_manager => CGI::Session::MemCacheStore,
:cache => CACHE,
:session_domain =&...