Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
config.autoload_paths << Rails.root.join("lib") config.eager_load_paths << Rails.root.join("lib")
bundle exec rake db:create
['Brad', 'Pit'].compact.join(' ')
order(on_request: :asc, price: :asc)
throw(:abort)
TimeDifference.between(Time.parse('2018-05-10T19:24:31+0300'), Time.now).in_hours
<%= email_field_tag(:email, nil, class: 'sub_mail' %>
# config/application.rb config.middleware.use ActionDispatch::Cookies config.middleware.use ActionDispatch::Session::CookieStore, key: '_coookie_name', expire_after: 30.days
descendant_ids Returns a list of a descendant ids
ActiveModelSerializers::SerializableResource.new(Partnership.where(partner_id: current_user.id, accepted: true), { each_serializer: PartnershipSerializer })
category = ["Комплектующие для ПК", "ПО", "ОС"] ancestry = Category.find_or_create_by!(name: category.shift) category.each do |value| ancestry = Category.find_or_create_by!(name: value, ancestry: ancestry) end
Что касается использования AC и redis, то есть указание: # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 3.0'