Covid19Radarのシーケンス図
ソースコードから書き起こしたシーケンス図です。間違っている可能性があります。
| use std::cell::{Cell, RefCell}; | |
| use std::collections::HashMap; | |
| use std::fmt::Debug; | |
| use std::rc::Rc; | |
| #[derive(Debug)] | |
| pub struct Error; | |
| pub trait Event: Debug { | |
| fn code(&self) -> &str; |
ソースコードから書き起こしたシーケンス図です。間違っている可能性があります。
| # $ rails r ./replace-from-cybozu-to-redmine.rb | |
| # | |
| # RailsのGemfileで以下が必要 | |
| # require "rest-client" | |
| # require "oauth" | |
| consumer_key = "" # cybozuliveの開発者登録 | |
| consumer_secret = "" | |
| consumer = OAuth::Consumer.new( |
| /* | |
| * Copyright (C) 2017 Alberts Muktupāvels | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
The following is a list of public Docker images Travis uses for our container based builds. You can grab them with docker pull quay.io/travisci/travis-$lang.
Images:
| // = Requirements: freetype 2.5, libpng, libicu, libz, libzip2 | |
| // = How to compile: | |
| // % export CXXFLAGS=`pkg-config --cflags freetype2 libpng` | |
| // % export LDFLAGS=`pkg-config --libs freetype2 libpng` | |
| // % clang++ -o clfontpng -static $(CXXFLAGS) clfontpng.cc $(LDFLAGS) \ | |
| // -licuuc -lz -lbz2 | |
| #include <cassert> | |
| #include <cctype> | |
| #include <iostream> | |
| #include <memory> |