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
#!/usr/bin/dumb-init /bin/sh | |
set -e | |
# Note above that we run dumb-init as PID 1 in order to reap zombie processes | |
# as well as forward signals to all processes in its session. Normally, sh | |
# wouldn't do either of these functions so we'd leak zombies as well as do | |
# unclean termination of all our sub-processes. | |
# Prevent core dumps | |
ulimit -c 0 |
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
#Model | |
@user.should have(1).error_on(:username) # Checks whether there is an error in username | |
@user.errors[:username].should include("can't be blank") # check for the error message | |
#Rendering | |
response.should render_template(:index) | |
#Redirecting | |
response.should redirect_to(movies_path) |
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
# Russian. Updated 2014-04-01 | |
ru: | |
admin: | |
js: | |
true: 'True' | |
false: 'False' | |
is_present: 'Не пустое' | |
is_blank: 'Пустое' | |
date: 'Дата ...' |
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
unless Rails.env.production? | |
connection = ActiveRecord::Base.connection | |
connection.tables.each do |table| | |
connection.execute("TRUNCATE #{table}") unless table == "schema_migrations" | |
end | |
sql = File.read('db/import.sql') | |
statements = sql.split(/;$/) | |
statements.pop |
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
<div class="navbar navbar-fixed-top"> | |
<div class="navbar-inner"> | |
<div class="container-fluid"> | |
<a data-target=".nav-collapse" data-toggle="collapse" class="btn btn-navbar"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</a> | |
<a href="#" class="brand">Project name</a> | |
<div class="nav-collapse"> |
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
1. to Gemfile: | |
gem "rails3-jquery-autocomplete" | |
gem "jquery-ui-rails" | |
2. to active_admin.css.scss | |
@import "active_admin/mixins"; | |
@import "active_admin/base"; | |
@import "jquery.ui.all"; |
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
module LiquorTemplateLoader | |
def self.namespace_to_params(pack, namespace) | |
if namespace == :html | |
scope = pack.html_templates | |
externals = [ :site, :request ] | |
elsif namespace == :email | |
scope = pack.email_templates | |
externals = [ :site, :subscription ] | |
end |
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
class ActionView::Template::Handlers::Liquid | |
def self.call(template) | |
"ActionView::Template::Handlers::Liquid.new(self).render(#{template.source.inspect}, local_assigns)" | |
end | |
def initialize(view) | |
@view = view | |
end | |
def render(template, local_assigns = {}) |
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
class LiquidHandler | |
PROTECTED_ASSIGNS = %w( template_root response _session template_class action_name request_origin session template | |
_response url _request _cookies variables_added _flash params _headers request cookies | |
ignore_missing_templates flash _params logger before_filter_chain_aborted headers ) | |
def self.call(template) | |
new.compile(template) | |
end | |
def compile(template) |
NewerOlder