Sha256: 905bcaea82bddada23203d3573bc4af9d99120f5766ad807e51cc7aae5db12e8
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
This is a tool for importing meeting information from Indico. #### Setup: config Your `_config.yaml` file should contain the categories you want to download: ```yaml indico: data: indico # Optional, folder name in _data to use ids: topical: 10570 blueprint: 11329 ``` This plugin will automatically sign your requests if your environment contains `INDICO_API` and `INDICO_SECRET_KEY`. #### Usage: installing You should add this gem to your Gemfile: ```ruby group :jekyll_plugins do gem "jekyll-indico" end ``` Jekyll will use any plugin listed in this Gemfile group. #### Usage: caching If you want to cache for local website development, you can run: ```bash bundle exec jekyll-indico-cache --config _config.yaml ``` <!-- Feature not added yet Or, if you use rake, you can add the provided task: ```ruby require 'jekyll-indico/rake_task' JekyllIndico::RakeTask.new(:cache) ``` Now the "cache" task will cache your Indico reads. --> #### Setting up for development: ```bash # Install a local bundle bundle install --path vendor/bundle # Test style and unit tests bundle exec rake ``` To release, make sure the version is new then: ```bash bundle exec rake publish ``` This tags, pushes the tag, and publishes.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-indico-0.1.0 | README.md |