This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set :application, "example.com" | |
| set :deploy_to, "/var/www/#{application}" | |
| role :app, "example.com" | |
| role :web, "example.com" | |
| role :db, "example.com", :primary => true | |
| set :scm, :git | |
| set :repository, "ssh://shay@example.com/git/example.com" | |
| set :branch, "origin/master" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fastcgi_param QUERY_STRING $query_string; | |
| fastcgi_param REQUEST_METHOD $request_method; | |
| fastcgi_param CONTENT_TYPE $content_type; | |
| fastcgi_param CONTENT_LENGTH $content_length; | |
| fastcgi_param SCRIPT_NAME $fastcgi_script_name; | |
| fastcgi_param REQUEST_URI $request_uri; | |
| fastcgi_param DOCUMENT_URI $document_uri; | |
| fastcgi_param DOCUMENT_ROOT $document_root; | |
| fastcgi_param SERVER_PROTOCOL $server_protocol; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: php-fastcgi | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start and stop php-cgi in external FASTCGI mode | |
| # Description: Start and stop php-cgi in external FASTCGI mode | |
| ### END INIT INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| START=yes | |
| # Which user runs PHP? (default: www-data) | |
| EXEC_AS_USER=www-data | |
| # Host and TCP port for FASTCGI-Listener (default: localhost:9000) | |
| FCGI_HOST=localhost | |
| FCGI_PORT=9000 | |
| # Environment variables, which are processed by PHP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # You must run as root!!! (or sudo) | |
| ##################### | |
| ##### IMPORTANT ##### | |
| ##################### | |
| # Add the following entry to /etc/yum.repos.d/rubyworks.repo: | |
| # | |
| # [rubyworks] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # prefix validation message with ^ to display it without attribute name | |
| # original idea: http://speakmy.name/2009/01/custom-validation-errors-in-rails-and-activerecord/ | |
| class ActiveRecord::Error | |
| CUSTOM_PREFIX = '^' | |
| def full_message_with_custom_prefix | |
| if @message.is_a?(String) && @message.mb_chars[0..(CUSTOM_PREFIX.size-1)] == CUSTOM_PREFIX | |
| @message.mb_chars[(CUSTOM_PREFIX.size)..-1] | |
| else | |
| full_message_without_custom_prefix | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ways to execute a shell script in Ruby | |
| # Example Script - Joseph Pecoraro | |
| cmd = "echo 'hi'" # Sample string that can be used | |
| # 1. Kernel#` - commonly called backticks - `cmd` | |
| # This is like many other languages, including bash, PHP, and Perl | |
| # Returns the result of the shell command | |
| # Docs: http://ruby-doc.org/core/classes/Kernel.html#M001111 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The basic idea is that we take the existing data via ActiveRecord | |
| # and create new documents in MongoDB using MongoMapper. | |
| # This method is necessary as we want to keep all the associations of existing dataset | |
| # and by the way, clean up empty columns | |
| # We rely on models still being ActiveRecord::Base, I bet you can figure out how the look like. | |
| # And have the newer MongoDB ones here in a module, painful as we have to set the collection_name | |
| # Don't put a +timestamps!+ into your MongoMapper models yet because this would change the updated_at if existing | |
| # As you see in the MongoDB models, a few loose their indepence, e.g. Source as I | |
| # plan to add other sources besides flickr, or Page and Album which only make sense in | |
| # their parent Website |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'net/http' | |
| require 'uri' | |
| require 'timeout' | |
| class CorreiosException < Exception | |
| end | |
| class Correios | |
| # Código dos serviços e urls | |
| SEDEX = 40096 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'mongo_mapper' | |
| require 'spec' | |
| require 'log4r' | |
| require 'versionomy' | |
| # Logger used for logging MongoDB database commands | |
| Log4r::Logger.new('TMP') | |
| Log4r::Logger['TMP'].outputters = Log4r::StdoutOutputter.new(:console) | |
| Log4r::Outputter[:console].formatter = Log4r::PatternFormatter.new(:pattern => "%m") | |
| Log4r::Logger['TMP'].level = Log4r::DEBUG |
NewerOlder