One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # encoding: UTF-8 | |
| # pt-BR translations for Devise | |
| pt-BR: | |
| devise: | |
| confirmations: | |
| confirmed: "Sua conta foi confirmada com sucesso. Você está logado." | |
| send_instructions: "Dentro de minutos, você receberá um e-mail com instruções para a confirmação da sua conta." | |
| send_paranoid_instructions: "Se o seu endereço de e-mail estiver cadastrado, você receberá uma mensagem com instruções para confirmação da sua conta." | |
| failure: | |
| already_authenticated: "Você já está logado." |
| # encoding: utf-8 | |
| # Be sure to restart your server when you modify this file. | |
| # Add new inflection rules using the following format | |
| # (all these examples are active by default): | |
| # ActiveSupport::Inflector.inflections do |inflect| | |
| # inflect.plural /^(ox)$/i, '\1en' | |
| # inflect.singular /^(ox)en/i, '\1' | |
| # inflect.irregular 'person', 'people' | |
| # inflect.uncountable %w( fish sheep ) |
| # Be sure to restart your server when you modify this file. | |
| class JSONVerifier < ActiveSupport::MessageVerifier | |
| def verify(signed_message) | |
| raise InvalidSignature if signed_message.blank? | |
| data, digest = signed_message.split("--") | |
| if data.present? && digest.present? && secure_compare(digest, generate_digest(data)) | |
| ActiveSupport::JSON.decode(Base64.decode64(data.gsub('%3D','='))) |
| module ActionDispatch | |
| module Session | |
| class CustomFileStore < ActionDispatch::Session::AbstractStore | |
| def get_session(env, session_id) | |
| session_data = {} | |
| session_id ||= generate_sid | |
| File.open(tmp_file(session_id),'r') do |f| | |
| data = f.read | |
| session_data = ::Marshal.load(data) unless data.empty? | |
| end rescue nil |
| # lib/tasks/db.rake | |
| namespace :db do | |
| desc "Dumps the database to db/APP_NAME.dump" | |
| task :dump => :environment do | |
| cmd = nil | |
| with_config do |app, host, db, user| | |
| cmd = "pg_dump --host #{host} --username #{user} --verbose --clean --no-owner --no-acl --format=c #{db} > #{Rails.root}/db/#{app}.dump" | |
| end | |
| puts cmd |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
Here is a list of scopes to use in Sublime Text 2/3 snippets -
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
| ESTADOS_BRASILEIROS = [ | |
| ["Acre", "AC"], | |
| ["Alagoas", "AL"], | |
| ["Amapá", "AP"], | |
| ["Amazonas", "AM"], | |
| ["Bahia", "BA"], | |
| ["Ceará", "CE"], | |
| ["Distrito Federal", "DF"], | |
| ["Espírito Santo", "ES"], | |
| ["Goiás", "GO"], |
| $.rails.allowAction = function(element) { | |
| var message = element.attr('data-confirm'); | |
| if (!message) { return true; } | |
| var opts = { | |
| title: "Confirmação", | |
| message: message, | |
| buttons: { | |
| confirm: { | |
| label: 'Sim', |