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
| # this rakefile is designed to be run alone. rails needs to be explicitly loaded if needed | |
| require 'digest/sha1' | |
| require 'fileutils' | |
| require 'yaml' | |
| namespace :db do | |
| namespace :cached do | |
| desc 'load the cached dump or regenerate if necessary' | |
| task :setup_all do |
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
| #!/usr/bin/env ruby | |
| require 'net/https' | |
| require 'json' | |
| LAST_MESSAGE_FILE = "#{File.dirname(__FILE__)}/last_github_status.json" | |
| HIPCHAT_API_KEY = 'secret' | |
| HIPCHAT_ROOM = 'Notifications' | |
| class GithubStatus |
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
| #!/usr/bin/env ruby | |
| require 'octokit' | |
| require 'git' | |
| require 'optparse' | |
| require 'io/console' | |
| default_options = { | |
| :owner => 'coupa', | |
| :github_repo => 'coupa_development', |
NewerOlder