Sha256: 2a39fbdfb7ebb01b28e7487973f5a43fb0fde218e77f6ac9afc85bfb17eb2395

Contents?: true

Size: 720 Bytes

Versions: 1

Compression:

Stored size: 720 Bytes

Contents

# pebbles-citlunch - CIT lunch menu API wrapper for Ruby

Gets menus of Chiba Institute of Technology's student cafeteria from
the CIT Lunch API.

See https://udon.upsilo.net/citlunch/ for more API doumentation.

## SYNOPSIS
    require 'pebbles/citlunch'
    
    # get today's menu
    CITLunch.get_today(:tsuda_dining).each do |menu|
      puts menu.name
      puts menu.price
      puts menu.details
    end

    CITLunch.get(:tsuda_dining, Date.today - 1) # => get yesterday's menu

## How to install
    $ gem install pebbles-citlunch

## How to build
    $ git clone https://github.com/st63jun/pebbles-citlunch.git
    $ cd pebbles-citlunch
    $ rake build
    $ rake install

## License

* GPL v3

See LICENSE

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pebbles-citlunch-0.0.3 README.md