This file contains hidden or 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
| set :test_log, "logs/capistrano.test.log" | |
| namespace :deploy do | |
| before 'deploy:update_code' do | |
| puts "--> Running tests, please wait ..." | |
| unless system "bundle exec rake > #{test_log} 2>&1" #' > /dev/null' | |
| puts "--> Tests failed. Run `cat #{test_log}` to see what went wrong." | |
| exit | |
| else | |
| puts "--> Tests passed" |
This file contains hidden or 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
| openapi: 3.0.0 | |
| servers: | |
| - url: https://api.vipps.no/epayment | |
| description: >- | |
| Production environment (uses the production API keys, the official app and | |
| live data) | |
| - url: https://apitest.vipps.no/epayment | |
| description: Test environment (uses the test API keys, the test app and test data) | |
| info: | |
| description: >- |
This file contains hidden or 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
| es: | |
| errors: | |
| messages: | |
| expired: "ha expirado, por favor pide una nueva" | |
| not_found: "no encontrado" | |
| already_confirmed: "ya fue confirmada. Intenta ingresar." | |
| not_locked: "no ha sido bloqueada" | |
| not_saved: | |
| one: "Ha habido 1 error:" | |
| other: "Han habido %{count} errores:" |
This file contains hidden or 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
| { | |
| "type": "warning", | |
| "html": true, | |
| "message": "<i class=\"fa fa-warning\"></i> The message to display in <br><br> <strong>bold!!!</strong>", | |
| "expires_at": 1526374267080 | |
| } |
This file contains hidden or 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
| ;;; fill-column-indicator.el --- Graphically indicate the fill column | |
| ;; Copyright (c) 2011-2014 Alp Aker | |
| ;; Author: Alp Aker <alp.tekin.aker@gmail.com> | |
| ;; Version: 1.89 | |
| ;; Keywords: convenience | |
| ;; This program is free software; you can redistribute it and/or | |
| ;; modify it under the terms of the GNU General Public License as |
This file contains hidden or 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
| # ## Backbone model caching | |
| # This is a simple solution to the problem "how do I make less requests to | |
| # my server?". | |
| # | |
| # Whenever you need a model instance, this will check first if the same thing | |
| # has been fetched before, and gives you the same instance instead of fetching | |
| # the same data from the server again. | |
| # | |
| # Reusing the same instance also has the great side-effect of making your | |
| # model changeable from one part of your code, with your changes being available |
This file contains hidden or 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
| # Run with: rackup faye.ru -s thin -E production | |
| require "yaml" | |
| require "faye" | |
| begin | |
| require "private_pub" | |
| rescue LoadError | |
| require "bundler/setup" | |
| require "private_pub" | |
| end |
This file contains hidden or 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
| 6c71ff4d app/views/sections/show_excel.html.haml (Gonzalo S 2011-10-12 18:48:22 -0300 14) .table-container | |
| c69c56a5 app/views/sections/show_excel.html.haml (Gonzalo S 2011-11-10 20:31:52 -0300 15) 97198046 |
This file contains hidden or 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
| NameVirtualHost 127.0.0.1:8080 | |
| <VirtualHost 127.0.0.1:8080> | |
| ServerAdmin webmaster@example.org | |
| ServerName domain.example.org | |
| ServerAlias www.domain.example.org | |
| DocumentRoot /path/to/docroot | |
| ErrorLog /path/to/docroot/logs/error.log # Optional | |
| CustomLog /path/to/docroot/logs/access.log combined # Optional | |
| RPAFenable On | |
| RPAFsethostname On |
This file contains hidden or 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
| [color] | |
| ui = true | |
| [alias] | |
| st = status | |
| ci = commit | |
| br = branch | |
| co = checkout | |
| df = diff | |
| lg = log -p |
NewerOlder