gissmog

gissmog

gissmog  //  Rails, Mac, Tech, CSS/Design, Fun, Hackfressen.

Sep 23 / 9:54pm

Generating XML-Sitemaps 4 Google

Loading mentions Retweet
Filed under  //  Dev   quamm   Rails  

Comments (0)

Sep 9 / 8:20am

Simplifying your Ruby on Rails code: Presenter pattern, cells plugin

Today we will talk about code organization in Ruby on Rails projects. As everybody knows, Ruby on Rails is a conventional framework, which means you should follow framework architects’ decisions (put your controllers inside app/controllers, move all your logic into models, etc.) But there are many open questions around those conventions. In this write-up I will try to summarize my personal experience and show how I usually solve these problems.

Quelle: http://feedproxy.google.com/~r/kpumuk/~3/cQi-1uJhFqg/

Loading mentions Retweet
Filed under  //  Rails  

Comments (0)

Sep 9 / 7:52am

Ruby on Rails production log statistics generator. by Kazuyoshi Tlacaelel.

Plog

Ruby on Rails production log statistics generator by Kazuyoshi Tlacaelel.

Dependancies:

  * FileUtils
* MD5
* File
* Dir
* URI
* rubygems 1.3.3

Installation

    $ gem sources -a http://gems.github.com
$ gem install ktlacaelel-plog

 

Loading mentions Retweet
Filed under  //  Rails  

Comments (0)

Sep 6 / 4:19pm

MetaSkills.net The Ultimate OS X Snow Leopard Stack For Rails Development - x86_64, MacPorts, Ruby 1.8/1.9, SQL Server & More

Loading mentions Retweet
Filed under  //  OS X   Rails   Snow Leopard  

Comments (0)

Sep 6 / 2:35pm

Why Ruby on Rails is a game changer

Ruby adds speed and boost developer productivity

Loading mentions Retweet
Filed under  //  rails  

Comments (0)

Sep 6 / 2:31pm

Riding Rails: What's New in Edge Rails: The Security Edition

Loading mentions Retweet
Filed under  //  rails  

Comments (0)

Sep 3 / 12:58am

wincent.com: Installing memcached 1.4.1 on Mac OS X 10.6 Snow Leopard

Installing libevent

libevent is a prerequisite for memcached:

$ curl -O http://www.monkey.org/~provos/libevent-1.4.12-stable.tar.gz
$ tar xzvf libevent-1.4.12-stable.tar.gz 
$ cd libevent-1.4.12-stable
$ ./configure
$ make
$ make verify
$ sudo make install

Installing memcached

$ curl -O http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
$ tar xzvf memcached-1.4.1.tar.gz 
$  cd memcached-1.4.1
$ ./configure
$ make
$ make test
$ sudo make install

Testing

In my case I have a script in the script dir of a Rails application that I call whenever I want to start or stop memcached, so I just used that:

$ script/memcached 
memcached not running: starting
$ script/memcached 
memcached running: stopping

(The script basically just does memcached -d -P pidfile -l 127.0.0.1 to start memcached.)

See also

Loading mentions Retweet
Filed under  //  Dev   OS X   Rails   Snow Leopard  

Comments (0)

Aug 29 / 3:07am

.@malagant Ich hab eins! #railsmagazin

Loading mentions Retweet
Filed under  //  Rails  

Posted from Eislingen, Germany

Comments (0)

Aug 27 / 12:42am

rvm: Ruby Version Manager

You want to try out all of the different ruby interpreters and versions including different patchlevels, but you don't want to break what's working for you now. No time to waste?

Use rvm. Easy installation and switching between available Ruby versions and runtimes, without messing up your current Ruby install! rvm also allows you to use multiple versions of ruby in separate terminals concurrently!

Loading mentions Retweet
Filed under  //  Rails  

Comments (0)