This file contains 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
I, [2016-05-16T10:13:19.132312 #2779] INFO -- : Completed 500 Internal Server Error in 31767ms (ActiveRecord: 81.2ms) | |
F, [2016-05-16T10:13:19.139410 #2779] FATAL -- : | |
Net::OpenTimeout (execution expired): | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/net/smtp.rb:541:in `initialize' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/net/smtp.rb:541:in `open' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/net/smtp.rb:541:in `tcp_socket' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/net/smtp.rb:551:in `block in do_start' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/timeout.rb:89:in `block in timeout' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/timeout.rb:99:in `call' | |
/home/deploy/.rbenv/versions/2.2.2/lib/ruby/2.2.0/timeout.rb:99:in `timeout' |
This file contains 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
ActionView::Template::Error (Missing partial spree/checkout/_complete, spree/store/_complete, spree/base/_complete, application/_complete with {:locale=>[:pl], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :jbuilder, :rabl], :versions=>[:v1]}. Searched in: |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>is.katas</groupId> | |
<artifactId>MonkeyDrivers</artifactId> | |
<version>1.0</version> |
This file contains 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
// destroy select2 before caching | |
$(document).on("turbolinks:before-cache", function () { | |
if ($('.select-class').first().data('select2') != undefined) $('.select-class').select2('destroy'); | |
}); | |
// initialize select2 on turbolinks:load | |
$(document).on("turbolinks:load", function () { | |
$('.select-class').select2(); | |
}); |