ComikeCatalogParser

コミックマーケットカタログ(ROM版)のパーサーです

Installation

Add this line to your application's Gemfile:

gem 'comike_catalog_parser'

And then execute:

$ bundle

Or install it yourself as:

$ gem install comike_catalog_parser

Usage

コミックマーケットのサークルカットページから1サークルのみのカットを切り出す (例は1093Pの32番目)

CircleCut.new("/Users/cocoa/PDATA/1093.PNG").individual_cut("32")'

サークルの位置を特定する、東M->東2と特定する(Mは全角であることに注意)

CircleMap.new("","").position_detail()

カタログチェックリスト(CSV)を引数に渡し、Trello登録用のハッシュを作成する

CatalogChecklist.new(comike_catalog_checklist_file_path).csv2trello_data()

カタログチェックリスト(CSV)とサークル画像カットのパスを引数に渡し、Trello登録用のハッシュを作成しチェックしたサークルカット画像を抽出する

CatalogChecklist.new(comike_catalog_checklist_file_path, circle_cut_path).csv2trello_data()

Contributing

  1. Fork it ( https://github.com/[my-github-username]/comike_catalog_parser/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request