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
# gem install rest-client | |
require 'json' | |
require 'rest_client' | |
require 'csv' | |
require 'cgi' | |
require 'uri' | |
# To use, get an access token here, by clicking "get access token" | |
# and checking user.groups in the dialog box | |
# https://developers.facebook.com/tools/explorer?method=GET&path=209024949216061%2Ffeed |
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
Name | Description | Due | |
---|---|---|---|
A task | The desscrption of the task | dd/mm/yy | |
More tasks | More descriptions of tasks | dd/mm/yy |
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 | |
class Go | |
attr_accessor :branch_input, :branch_list | |
def initialize | |
@branch_input = ARGV[0] | |
end | |
def initialize_branch_name(&block) | |
@branch_input ||= begin |