0.0
No commit activity in last 3 years
No release in over 3 years
This gem provides a function to generate calendars and calendar entries.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0
>= 0

Runtime

~> 1.2.1
 Project Readme

PrawnCalendar

This gem provides a class to generate calendars with schedules using prawn.

  • Weekly overview
  • Specifiy hours of a day to show
  • Handle schedules out of the limits of a day
  • Indicate recurring schedules

see Sample output

Installation

Add this line to your application's Gemfile:

gem 'prawn_calendar'

And then execute:

$ bundle

Or install it yourself as:

$ gem install prawn_calendar

Usage

PrawnCalendar is a ruby library. See the spec how to use it.

For the impatient ...

  it "implicit creates a calendar" do
    Prawn::Document.generate("calendar.pdf") do
      calendar=PrawnCalendar::WeeklyCalendar.new(self)
      calendar.mk_calendar([20,700], width:500,height:250) do
                cal_entry("2013-05-04T08:00:00+01:00", "2013-05-04T19:00:00", "cc 7as ist ein test, der laufen muss")

      end
    end
  end

History

  • 1.0.0 2014-08-14

    Released as 1.0.0 after testing with Prawn 1.2.1

Limitations

  • It does not handle schedules over multiple days
  • Only generates week calendars
  • cannot colorize calendars
  • no exception handling

Contributing

  1. Fork it
  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 new Pull Request