Sha256: 0a9b3f06fed9a3061531b6535aab6d7fd478bd2a23623ef51b19c5af73809c0f
Contents?: true
Size: 913 Bytes
Versions: 11
Compression:
Stored size: 913 Bytes
Contents
require 'almanack/server' Almanack.config do |c| c.title = <%= title.inspect %> c.theme = "<%= theme_name %>" # available: <%= available_themes.join(', ') %> c.days_lookahead = 30 # Don't fetch event information more than once every 15 minutes c.cache_responses = true c.cache_expiry = 900 # seconds # 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_time: Time.now + 30 * 60 } ] end run Almanack::Server
Version data entries
11 entries across 11 versions & 1 rubygems