- Главный шаблон Rails приложения
- Обратные вызовы в контроллерах (callbacks)
- Размещение JavaScript и CSS файлов (The Asset Pipeline)
- Работа с сессиями и cookie
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 'faker' | |
module BelongsToAssociation | |
def self.included(receiver) | |
receiver.extend ClassMethods | |
end | |
module ClassMethods | |
def belongs_to(attribute) | |
class_eval do |
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
class NLPProcessor | |
STOP_WORDS = %w[ | |
is | |
a | |
of | |
the | |
] | |
attr_reader :invert_index |
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
class SpaceCraft | |
%i[ | |
LowFuelError | |
LowEnergyError | |
].each { |exception| self.const_set(exception, Class.new(StandardError)) } | |
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
class Station | |
# Принято делать отступы в 2 пробела | |
attr_accessor :name | |
# Это должна быть переменная экземпляра. Мы ведь список поездов храним для каждого объекта станции отдельно | |
trains = [] | |
def initialize(name) | |
@name = name | |
end |
Начал следовать пути Ruby и Rails
в 2010 году. Принимал участие в разработке многих проектов, самые интересные из них:
-
CRM система для французской компании Motul
-
Проект правительства Москвы
В настоящем участвую в разработке калифорнийского стартапа Instamotor.
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
def procedure | |
procedure | |
end | |
def test_evaluation_strategy(x, y) | |
x == 0 ? 0 : y | |
end | |
test_evaluation_strategy(0, procedure) |
- 002.996.46: [Коврик для ванной]: 399 руб.
- 402.100.20: [Прихватка]: 169 руб.
- 502.427.42: [Лоток для столовых приборов]: 399 руб.
- 002.388.65: [Коврик в ящик] 2 шт.: 2 * 199 руб.
- 003.133.98: [Придверный коврик]: 299 руб.
- 302.589.13: [Тарелка] 2 шт.: 2 * 59 руб.
- 702.783.63: [Бокал] 2 шт.: 2 * 99 руб.
Total: 1980 руб.