Command Line
pry -r ./config/app_init_file.rb
- load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb
- load your rails into a pry session
Debugger
module RequestBuilder | |
DEBUG = false | |
require 'net/http' | |
require 'json' | |
require 'uri' | |
require 'mime-types' | |
require 'openssl' | |
require 'response_handler' | |
#uri_string - URI | |
#req_type - Post/Put/Get/Delete etc |
# The class takes an array of files and can calculate | |
# their differences using LCS algorithm (diff-lcs gem required) | |
# Author:: svkmax | |
class Differ | |
require 'diff-lcs' | |
## | |
# Create new differ instance | |
# | |
# At least two files should be specified as arguments |
Command Line
pry -r ./config/app_init_file.rb
- load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb
- load your rails into a pry sessionDebugger
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
# Модели | |
class PromoMessage < ActiveRecord::Base | |
end | |
class User < ActiveRecord::Base | |
has_many :ads | |
scope :recent, -> { order("created_at DESC") } | |
end | |
class Ad < ActiveRecord::Base |
While on a branch with a couple of commits, you can edit a commit with interactive rebase. This should be used sparingly and only on branches and never on master.
$ git checkout my-branch
$ git log
This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).
This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"