Sometimes in a newly created server you can get this error when starting a ruby app:
`encode': "\xC3" on US-ASCII (Encoding::InvalidByteSequenceError)
To fix simple export this variables or add to your ~/.bash_profile
export LANG=en_US.UTF-8
# Use this setup block to configure all options available in SimpleForm. | |
# https://github.com/patricklindsay/simple_form-materialize/blob/master/lib/generators/simple_form/materialize/templates/config/initializers/simple_form_materialize.rb | |
# contribute here: https://github.com/mkhairi/materialize-sass/issues/16 | |
SimpleForm.setup do |config| | |
config.wrappers :default, class: :input, | |
hint_class: :field_with_hint, error_class: :field_with_errors do |b| | |
## Extensions enabled by default | |
# Any of these extensions can be disabled for a | |
# given input by passing: `f.input EXTENSION_NAME => false`. |
function historySupport() { | |
return !!(window.history && window.history.pushState !== undefined); | |
} | |
function pushPageState(state, title, href) { | |
if (historySupport()) { | |
history.pushState(state, title, href); | |
} | |
} |
# Generate sitemap.xml in Rails app | |
This post shows how to make sitemap.xml for your web site. | |
The sitemap will be accessible by URL http://mysite.com/sitemap.xml | |
# Routes | |
```ruby | |
Myrails::Application.routes.draw do |
Sometimes in a newly created server you can get this error when starting a ruby app:
`encode': "\xC3" on US-ASCII (Encoding::InvalidByteSequenceError)
To fix simple export this variables or add to your ~/.bash_profile
export LANG=en_US.UTF-8
lastActionTime = new Date() | |
syncInterval = 30000 | |
$('*').on 'blur change click dblclick error focus focusin focusout hover keydown keypress keyup load mousedown mouseenter mouseleave mousemove mouseout mouseover mouseup resize scroll select submit', -> | |
lastActionTime = new Date() | |
setInterval (-> | |
currentTime = new Date() | |
timeLimit = currentTime - lastActionTime |
convertPostGisToYandex = (point) -> | |
coords = /POINT\s*\(\s*([0-9\.]+)\s*([0-9.]+)\s*\)/.exec point | |
if coords.length != 2 | |
console.error 'Bad parse PostGIS point data', point | |
return [] | |
return [parseFloat(coords[1]), parseFloat(coords[2])] |
source 'https://rubygems.org' | |
gem 'rails', '~>4.0.2' | |
gem 'activerecord-session_store' | |
gem 'pg' | |
gem 'foreigner' | |
gem 'airbrake' | |
gem 'redcarpet' |
#app/inputs/collection_check_boxes_input.rb | |
class CollectionCheckBoxesInput < SimpleForm::Inputs::CollectionCheckBoxesInput | |
def item_wrapper_class | |
"checkbox-inline" | |
end | |
end |
group :production do | |
gem 'unicorn' | |
# Enable gzip compression on heroku, but don't compress images. | |
gem 'heroku-deflater' | |
# Heroku injects it if it's not in there already | |
gem 'rails_12factor' | |
end |
gem 'koala' | |
gem 'bitly', '~> 0.8.0' | |
gem 'twitter' |