Sha256: 4d5cfff609eaaf9eb9db652b40147e603a0c187ac407ae72e8651bfa0c656274

Contents?: true

Size: 755 Bytes

Versions: 3

Compression:

Stored size: 755 Bytes

Contents

require 'almanack/server'

Almanack.config do |c|
  c.title = "My Calendar"
  c.theme = "<%= theme_name %>" # available: <%= available_themes.join(', ') %>

  # Your group's URL name is what you'd find at www.meetup.com/Your-Group-URL-Name/
  # You can get a Meetup API key from https://secure.meetup.com/meetup_api/key
  # c.add_meetup_group group_urlname: 'Christchurch-Ruby-Group', key: 'mysecretkey'

  # For a Google Calendar, find the "iCal" link under your Calendar's settings
  # c.add_ical_feed 'https://example.com/basic.ics'

  # Static events
  c.add_events [
    {
      title: "Edit my calendar's settings",
      description: "Edit the configuration at #{__FILE__}",
      start_date: Time.now + 30 * 60
    }
  ]
end

run Almanack::Server

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
almanack-1.0.0 templates/new/config.ru.tt
almanack-1.0.0.pre1 templates/new/config.ru.tt
almanack-1.0.0.pre templates/new/config.ru.tt