Skip to content

Instantly share code, notes, and snippets.

@mh-mobile
Last active December 22, 2020 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mh-mobile/4f51889d53f132ca73a83357057eaad6 to your computer and use it in GitHub Desktop.
Save mh-mobile/4f51889d53f132ca73a83357057eaad6 to your computer and use it in GitHub Desktop.
日報自動投稿スクリプトの一部のコード
# frozen_string_literal: true
require "net/http"
require "uri"
require "json"
require "date"
LOGINNAME = ENV["loginname"]
PASSWORD = ENV["password"]
TITLE = "WIP"
DESCRIPTION = "## やったこと\r\n\r\n## つぎにやること"
def request_options(uri)
{ use_ssl: uri.scheme == "https" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment