|
|\_ app
|...
|\_ docker
| |
If you have any sort of administrative interface on your web site, you can easily imagine an intruder gaining access and mucking about. How do you know the extent of the damage? Adding an audit log to your app is one quick solution. An audit log should record a few things:
- controller entry points with parameter values
- permanent information about the user, like user_id
- transient information about the user, like IP and user_agent
Using the Rails framework, this is as simple as adding a before_action
to your admin controllers. Here’s a basic version that I’m using in production.
Due to a considerable lack of rails integration testing tutorials/guides, here are my notes.
Much better to have a separate environment for integration tests. Follow the Rails guide to create one. Be careful to edit the session domain in the integration.rb file if necessary:
config.session_store :cookie_store, key: '_workable_session', domain: 'test.host'
If the domain is different from what your app expects, you will be losing your session across your requests.
page.execute_script("$('.selectize-input input').val('ber')") | |
sleep 0.5 | |
page.execute_script("$('.selectize-input input').keyup()") | |
sleep 0.5 | |
page.execute_script("$('.full-name').mousedown()") | |
# https://github.com/brianreavis/selectize.js/blob/master/src/selectize.js |
This is a collection of links, examples and rants about Presenters/Decorators in Rails.
The "Decorator" pattern slowly started gaining popularity in Rails several years ago. It is not part of core Rails, and there's many different interpretations about how it should work in practice.
Jay Fields wrote about it in 2007 (before he switched back to Java and then Clojure): http://blog.jayfields.com/2007/03/rails-presenter-pattern.html
#=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
#=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click_on('Button Value') |
A Dashing widget for displaying the number of current visitors (in real time) to your website, as reported by Google Analytics.
This widget is a fork of https://gist.github.com/mtowers/5986576
class Email < ActiveRecord::Base | |
# Nope, it's not RFC compliant. F*** that regex. | |
# http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html | |
EmailRegex = /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i.freeze | |
before_validation :strip_spaces | |
# Public: The email address. | |
# column :address |
# Italian translation for Devise 3.2 | |
# Date: 2013-20-12 | |
# Author: xpepper | |
# Note: Thanks to fuzziness (https://gist.github.com/fuzziness/5262777) | |
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
it: | |
devise: | |
confirmations: | |
confirmed: "Il tuo account è stato correttamente confermato. Ora sei collegato." |
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
de: | |
devise: | |
confirmations: | |
confirmed: "Vielen Dank für Deine Registrierung. Bitte melde dich jetzt an." | |
confirmed_and_signed_in: "Vielen Dank für Deine Registrierung. Du bist jetzt angemeldet." | |
send_instructions: "Du erhältst in wenigen Minuten eine E-Mail, mit der Du Deine Registrierung bestätigen kannst." | |
send_paranoid_instructions: "Falls Deine E-Mail-Adresse in unserer Datenbank existiert erhältst Du in wenigen Minuten eine E-Mail mit der Du Deine Registrierung bestätigen kannst." | |
failure: |