This file contains 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
==> You have uncommitted modifications to Homebrew's core. | |
Unless you know what you are doing, you should: git reset --hard |
This file contains 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
Warning: Building with LLVM, but this formula is reported to not work with LLVM: | |
Dies during compilation of motionpixels_tablegen | |
We are continuing anyway so if the build succeeds, please open a ticket with | |
the following information: 2336-10.7. So | |
that we can update the formula accordingly. Thanks! | |
If it doesn't work you can try: brew install --use-clang |
This file contains 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
// This is a manifest file that'll be compiled into application.js, which will include all the files | |
// listed below. | |
// | |
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, | |
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. | |
// | |
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the | |
// the compiled file. | |
// | |
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD |
This file contains 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
#!/usr/bin/env ruby | |
require 'net/http' | |
require 'json' | |
gitlab_token = "YOUR TOKEN" | |
gitlab_uri = "URL GITLAB" | |
# number of repositories to display in the list | |
# order the list by the numbers | |
ordered = true |
This file contains 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
require 'hipchat' | |
set :hipchat_user, "Capistrano" | |
set :hipchat_token, "mettre le token" | |
set :hipchat_client, HipChat::Client.new(fetch(:hipchat_token)) | |
set :hipchat_room_name, "Nom de la salle" # If you pass an array such as ["room_a", "room_b"] you can send announcements to multiple rooms. | |
# Optional | |
set :hipchat_announce, false # notify users | |
set :hipchat_message_format, 'html' # Sets the deployment message format, see https://www.hipchat.com/docs/api/method/rooms/message | |
set :hipchat_options, { | |
:api_version => "v2" # Set "v2" to send messages with API v2 |