- Methods should be sorted alphabeticaly
class Plop| [advice] | |
| # Hides command hints in basic `git status`. | |
| statusHints = false | |
| # Hides any warning when checking out a commit by hash instead of branch. | |
| detachedHead = false | |
| [alias] | |
| # Shows the commit hash on 6 chars to match `git log`. | |
| # -s suppresses the author name and timestamp from the output. | |
| blame = blame --abbrev=6 -s |
| group :production do | |
| gem 'unicorn' | |
| end |
| options = { | |
| option_1: a, | |
| option_2: blabla, | |
| option_3: blablablablablabla, | |
| option_4: bblablablablablablablabla, | |
| option_5: bblablablabla | |
| } | |
| local_var.method_with_hash_and_block(mandatory_param, options) do |v| | |
| d = v.bla |
| # Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
| fr: | |
| devise: | |
| confirmations: | |
| confirmed: 'Votre compte a été validé.' | |
| send_instructions: 'Vous allez recevoir les instructions nécessaires à la confirmation de votre compte dans quelques minutes.' | |
| send_paranoid_instructions: 'Si votre e-mail existe dans notre base de données, vous allez bientôt recevoir un e-mail contenant les instructions de confirmation de votre compte.' | |
| failure: | |
| already_authenticated: "Vous êtes déjà connecté !" |
| class Human | |
| attr_reader :smart | |
| def initialize | |
| @smart = (rand == rand) | |
| end | |
| end |
| #!/usr/bin/env ruby | |
| file = ARGV.first | |
| branch = `git br --no-color | grep '^*' | cut -d' ' -f2`.gsub(/ref-(\d+)-.*/, '\1').strip | |
| open('/tmp/git_debug', 'a') { |f| f.puts branch } | |
| msg = '' | |
| if branch =~ /^\d+$/s |
| diff --git a/subversion/libsvn_subr/path.c b/subversion/libsvn_subr/path.c | |
| =================================================================== | |
| --- a/subversion/libsvn_subr/path.c | |
| +++ b/subversion/libsvn_subr/path.c | |
| @@ -35,6 +35,10 @@ | |
| #include "private_uri.h" | |
| +#if defined(DARWIN) | |
| +#include <CoreFoundation/CoreFoundation.h> |
| *.swp | |
| .DS_Store | |
| .sass-cache | |
| config/database.yml | |
| db/schema.rb | |
| log/* | |
| public/stylesheets/*.css | |
| tmp/* |