-
Build tools:
sudo yum groupinstall "Development Tools" -
Dependencies:
yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel \
libyaml-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison iconv-devel
| sudo useradd -m -U -s /bin/bash -G admin hectoregm |
| gem 'pg' | |
| group :development do | |
| gem 'ruby-debug' | |
| end | |
| gem 'rake', '~> 0.8.7' | |
| gem 'devise' | |
| gem 'oa-oauth', :require => 'omniauth/oauth' | |
| gem 'omniauth' | |
| gem 'haml' | |
| gem 'dynamic_form' |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| - http://www.coffeepowered.net/2009/06/13/fine-tuning-your-garbage-collector/ | |
| - http://snaprails.tumblr.com/post/241746095/rubys-gc-configuration | |
| article’s settings: ("spec spec" took 17-23!sec) | |
| export RUBY_HEAP_MIN_SLOTS=1250000 | |
| export RUBY_HEAP_SLOTS_INCREMENT=100000 | |
| export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 | |
| export RUBY_GC_MALLOC_LIMIT=30000000 | |
| export RUBY_HEAP_FREE_MIN=12500 |
| user nginx; | |
| worker_processes 5; | |
| error_log /var/log/nginx.error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| } | |
| - http://www.coffeepowered.net/2009/06/13/fine-tuning-your-garbage-collector/ | |
| - http://snaprails.tumblr.com/post/241746095/rubys-gc-configuration | |
| article’s settings: ("spec spec" took 17-23!sec) | |
| export RUBY_HEAP_MIN_SLOTS=1250000 | |
| export RUBY_HEAP_SLOTS_INCREMENT=100000 | |
| export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 | |
| export RUBY_GC_MALLOC_LIMIT=30000000 | |
| export RUBY_HEAP_FREE_MIN=12500 |
| MyView = Backbone.View.extend({ | |
| events: { | |
| "click #someButton": "doThat", | |
| "change #someInput": "changeIt" | |
| }, | |
| doThat: function(){ ... }, | |
| changeIt: function(){ ... } | |
| }); |
Below are steps I followed to get ruby debugger ruby-debug running with Pow. Based on info from this thread basecamp/pow#43 and this blog post http://flochip.com/2011/04/13/running-pow-with-rdebug/
Assuming you're writing your app in Ruby 1.9 and using Bundler, just add the dependency to your development gems:
So what are regular expressions?, Wikipedia has a nice [definition][1]:
Regular expressions provides a concise and flexible means for "matching" (specifying and recognizing) strings of text, such as particular characters, words, or patterns of characters. Abbreviations for "regular expression" include "regex" and "regexp".