├── .gitignore ├── .travis.yml ├── Build.PL ├── Changes ├── LICENSE ├── META.json ├── README.md ├── cpanfile ├── cpanfile.snapshot ├── example ├── list_saisoku_programs.pl ├── search.pl └── syoboirepl ├── lib └── WebService │ ├── SyoboiCalendar.pm │ └── SyoboiCalendar │ ├── API.pm │ ├── API │ ├── Result.pm │ └── Search.pm │ ├── Error.pm │ ├── Program.pm │ └── Title.pm ├── minil.toml └── t ├── 00_compile.t ├── 01_syoboi_calendar.t └── lib └── SyobocalMock.pm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/.travis.yml -------------------------------------------------------------------------------- /Build.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/Build.PL -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/META.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/cpanfile -------------------------------------------------------------------------------- /cpanfile.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/cpanfile.snapshot -------------------------------------------------------------------------------- /example/list_saisoku_programs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/example/list_saisoku_programs.pl -------------------------------------------------------------------------------- /example/search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/example/search.pl -------------------------------------------------------------------------------- /example/syoboirepl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/example/syoboirepl -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/API.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/API/Result.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/API/Result.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/API/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/API/Search.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/Error.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/Error.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/Program.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/Program.pm -------------------------------------------------------------------------------- /lib/WebService/SyoboiCalendar/Title.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/lib/WebService/SyoboiCalendar/Title.pm -------------------------------------------------------------------------------- /minil.toml: -------------------------------------------------------------------------------- 1 | badges = ['travis'] 2 | -------------------------------------------------------------------------------- /t/00_compile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/t/00_compile.t -------------------------------------------------------------------------------- /t/01_syoboi_calendar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/t/01_syoboi_calendar.t -------------------------------------------------------------------------------- /t/lib/SyobocalMock.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobe/WebService-SyoboiCalendar/HEAD/t/lib/SyobocalMock.pm --------------------------------------------------------------------------------