Skip to content

Instantly share code, notes, and snippets.

View alxekb's full-sized avatar
🏠
Working from home

disassembler alxekb

🏠
Working from home
  • Global
  • 03:37 (UTC +02:00)
View GitHub Profile
@alxekb
alxekb / registration.rb
Last active March 16, 2020 05:49
Rails ActiveRecord transaction child errors handling
# app/forms/users/registration.rb
# frozen_string_literal: true
module Users
class Registration
include ActiveModel::Model
attr_accessor :email, :password, :user, :space, :user_space
@alxekb
alxekb / .vimrc
Last active March 16, 2020 15:18
# https://medium.com/@todariasova/rails-vim-101-essential-vim-plugins-for-ruby-on-rails-development-d74e808d186d
set nocompatible " be iMproved, required
set number
syntax enable
set shell=bash
syntax on
filetype plugin indent on
filetype on
filetype indent on
class User < ActiveRecord::Base
def save(*args)
super
rescue ActiveRecord::RecordNotUnique => error
errors[:base] << error.message
false
end
end
@alxekb
alxekb / ruby_on_rails_deployment.md
Created February 13, 2020 13:41 — forked from zentetsukenz/ruby_on_rails_deployment.md
Deploy Ruby on Rails application with Docker Compose and Capistrano with ease

Docker

Files and Folders.

|
|\_ app
|...
|\_ docker
| |
module ApplicationHelper
def present(model)
klass = "#{model.class}Presenter".constantize
presenter = klass.new(model, self)
yield(presenter) if block_given?
end
end
- present(@post) do |post|
%h2= post.title
%p= post.author
@alxekb
alxekb / routes.rb
Created February 7, 2020 09:00 — forked from bitkidd/routes.rb
Интеграция Яндекс.Кассы с Rails
# config/routes.rb
YandexKassaIntegration::Application.routes.draw do
# ...
scope '/yandex_kassa' do
controller 'yandex_kassa', constraints: { subdomain: 'ssl' } do
post :check
post :aviso
get :success
get :fail
@alxekb
alxekb / reverse.rb
Created January 29, 2020 12:50
Add custom reverse method to Array
# cd into directory with this file
# open irb session: $ irb
# require this lib: $ require './reverse.rb'
# try the metod #reverse_v2 on any Array! $ (['one', 'two', 'three']).reverse_v2
# ["three", "two", "one"]
class Array
def reverse_v2
position, rev = count - 1, []
@alxekb
alxekb / application_service.rb
Created January 15, 2020 13:28
AbstractService
class ApplicationService
def self.call(*args, &block)
new(*args, &block).call
end
end
ARG RUBY_VERSION
# See explanation below
FROM ruby:$RUBY_VERSION-slim-buster
ARG PG_MAJOR
ARG NODE_MAJOR
ARG BUNDLER_VERSION
ARG YARN_VERSION
# Common dependencies
FROM ruby:2.6.1
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
ENV RAILS_ROOT /var/www/astecas
RUN mkdir -p $RAILS_ROOT
WORKDIR $RAILS_ROOT