{"id":843,"date":"2011-11-10T15:37:04","date_gmt":"2011-11-10T13:37:04","guid":{"rendered":"http:\/\/blog.railsware.com\/?p=843"},"modified":"2021-08-16T11:42:00","modified_gmt":"2021-08-16T08:42:00","slug":"posting-delivery-events-to-google-calendar","status":"publish","type":"post","link":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/","title":{"rendered":"Posting delivery events to Google Calendar"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>hard to filter notification emails<\/li><li>hard to track deploment history<\/li><li>newly added person can&#8217;t observe old events<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">So we &#8220;thinked differently&#8221;\u00a9 and made next simple solution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Google Calendar<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">What&#8217;s about using Google Calendar as event storage? It has many useful features:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>stores any event history<\/li><li>provides chronological event representation for free<\/li><li>we can easily subscribe\/unsubscribe to\/from notification feed<\/li><li>calendar can be easily customized in different ways(e.g. colors, size)<\/li><li>you can embed calendar directly into any html-page via iframe<\/li><li>you can access your calendar on any android\/iphone device<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Capistrano Calendar<\/h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"232\" height=\"300\" src=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2011\/11\/google-calendar-event-232x300.png\" alt=\"\" class=\"wp-image-1002\" title=\"google-calendar-event\" srcset=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2011\/11\/google-calendar-event-232x300.png 232w, https:\/\/railsware.com\/blog\/wp-content\/uploads\/2011\/11\/google-calendar-event.png 433w\" sizes=\"auto, (max-width: 232px) 100vw, 232px\" \/><\/figure><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">We extracted our calendar recipes and released as<br><a href=\"https:\/\/github.com\/railsware\/capistrano-calendar\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">capistrano-calendar<\/a> gem.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h3 class=\"wp-block-heading\">Features<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Posting events to <strong>multiple<\/strong> google calendars<\/li><li>Automatic calendar creation if it does not exist<\/li><li>Ability to dynamically choose calendar name according to your needs (e.g. production\/staging calendar)<\/li><li>Ability to customize host for calendar event creation<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">How does it work<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Event creation takes some time so we decided to run it in background. And it&#8217;s better to spawn it on some server. By default this is first application server. But you can set special host for calendar event creation using <strong>calendar_runner<\/strong> option. So you need to install <strong>capistrano-calendar<\/strong> on that server too.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Recipe <strong>calendar:create_event<\/strong> is pretty simple. It collects all calendar information from Capistrano configuration and pass them to <strong>capistrano-calendar<\/strong> binary(from our gem):<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">  * == Currently executing `calendar:create_event'\n  * executing \"capistrano-calendar _0.1.0_ create_event UnVkb2xwaCBDYXJ0aWVyICgxOTA04oCTMTk5NCkgd2FzIGFuIEF1c3RyaWFuIHRlbGV2aXNpb24gZGlyZWN0b3Igd2hvIHdvcmtlZCBwcmVkb21pbmFudGx5IGluIEJyaXRpc2ggdGVsZXZpc2lvbiwgZXhjbHVzaXZlbHkgZm9yIHRoZSBCQkMu\"<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Installation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Install gem:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">gem install capistrano-calendar<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To activate <strong>capistrano-calendar<\/strong> recipes, add next line into your project <em>Capfile<\/em>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">require 'capistrano\/calendar\/recipes'<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Add at least minimal calendar configuration to <em>config\/deploy.rb<\/em>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">set(:calendar_username, 'vasya.pupkin@gmail.com')\nset(:calendar_password, 'qwery123456')\nset(:calendar_name) do\n  \"Blog [#{stage}]\"\nend\nset(:calendar_event_name) do\n  \"Deployed #{real_revision}\"\nend \n\nafter 'deploy', 'calendar:create_event'<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Take a look into <a href=\"https:\/\/github.com\/railsware\/capistrano-calendar\/blob\/master\/README.md\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">README<\/a> file to get more advanced configuration sample and a full list of options.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Mobile<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Your customer will be happy to have actual deployment information in his calendar on the phone, and it&#8217;s quite simple. Just share this calendar to your customer. Then he should add and sync this calendar on his phone.<br>Enjoy!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can&#8217;t observe old events So we &#8220;thinked differently&#8221;\u00a9 and made next simple solution&#8230;.<\/p>\n","protected":false},"author":19,"featured_media":1741,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[3],"tags":[],"coauthors":["Andriy Yanko"],"class_list":["post-843","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can&#039;t observe old events So we &quot;thinked differently&quot;\u00a9 and made next simple solution.\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"Andriy Yanko\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"| Blog on Engineering, Product Management, Transparency, Culture and many more...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Posting delivery events to Google Calendar | Railsware Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can&#039;t observe old events So we &quot;thinked differently&quot;\u00a9 and made next simple solution.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"256\" \/>\n\t\t<meta property=\"og:image:height\" content=\"256\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-11-10T13:37:04+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-08-16T08:42:00+00:00\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#article\",\"name\":\"Posting delivery events to Google Calendar | Railsware Blog\",\"headline\":\"Posting delivery events to Google Calendar\",\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/ayanko\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/04\\\/google-calendar.png\",\"width\":256,\"height\":256},\"datePublished\":\"2011-11-10T15:37:04+03:00\",\"dateModified\":\"2021-08-16T11:42:00+03:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#webpage\"},\"articleSection\":\"Engineering\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"position\":2,\"name\":\"Engineering\",\"item\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#listItem\",\"name\":\"Posting delivery events to Google Calendar\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#listItem\",\"position\":3,\"name\":\"Posting delivery events to Google Calendar\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/category\\\/development\\\/#listItem\",\"name\":\"Engineering\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/Logo-circle.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#organizationLogo\",\"width\":3137,\"height\":1054,\"caption\":\"Railsware logo\"},\"image\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/ayanko\\\/#author\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/ayanko\\\/\",\"name\":\"Andriy Yanko\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#authorImage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/andriy-yanko-96x96.jpg\",\"width\":96,\"height\":96,\"caption\":\"Andriy Yanko\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#webpage\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/\",\"name\":\"Posting delivery events to Google Calendar | Railsware Blog\",\"description\":\"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can't observe old events So we \\\"thinked differently\\\"\\u00a9 and made next simple solution.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/ayanko\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/author\\\/ayanko\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/wp-content\\\/uploads\\\/2012\\\/04\\\/google-calendar.png\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#mainImage\",\"width\":256,\"height\":256},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/posting-delivery-events-to-google-calendar\\\/#mainImage\"},\"datePublished\":\"2011-11-10T15:37:04+03:00\",\"dateModified\":\"2021-08-16T11:42:00+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/railsware.com\\\/blog\\\/\",\"description\":\"Blog on Engineering, Product Management, Transparency, Culture and many more...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/railsware.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Posting delivery events to Google Calendar | Railsware Blog","description":"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can't observe old events So we \"thinked differently\"\u00a9 and made next simple solution.","canonical_url":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#article","name":"Posting delivery events to Google Calendar | Railsware Blog","headline":"Posting delivery events to Google Calendar","author":{"@id":"https:\/\/railsware.com\/blog\/author\/ayanko\/#author"},"publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png","width":256,"height":256},"datePublished":"2011-11-10T15:37:04+03:00","dateModified":"2021-08-16T11:42:00+03:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#webpage"},"isPartOf":{"@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#webpage"},"articleSection":"Engineering"},{"@type":"BreadcrumbList","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/railsware.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","position":2,"name":"Engineering","item":"https:\/\/railsware.com\/blog\/category\/development\/","nextItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#listItem","name":"Posting delivery events to Google Calendar"},"previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#listItem","position":3,"name":"Posting delivery events to Google Calendar","previousItem":{"@type":"ListItem","@id":"https:\/\/railsware.com\/blog\/category\/development\/#listItem","name":"Engineering"}}]},{"@type":"Organization","@id":"https:\/\/railsware.com\/blog\/#organization","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","url":"https:\/\/railsware.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2020\/11\/Logo-circle.png","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#organizationLogo","width":3137,"height":1054,"caption":"Railsware logo"},"image":{"@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/railsware.com\/blog\/author\/ayanko\/#author","url":"https:\/\/railsware.com\/blog\/author\/ayanko\/","name":"Andriy Yanko","image":{"@type":"ImageObject","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#authorImage","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2021\/06\/andriy-yanko-96x96.jpg","width":96,"height":96,"caption":"Andriy Yanko"}},{"@type":"WebPage","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#webpage","url":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/","name":"Posting delivery events to Google Calendar | Railsware Blog","description":"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can't observe old events So we \"thinked differently\"\u00a9 and made next simple solution.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/railsware.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#breadcrumblist"},"author":{"@id":"https:\/\/railsware.com\/blog\/author\/ayanko\/#author"},"creator":{"@id":"https:\/\/railsware.com\/blog\/author\/ayanko\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png","@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#mainImage","width":256,"height":256},"primaryImageOfPage":{"@id":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/#mainImage"},"datePublished":"2011-11-10T15:37:04+03:00","dateModified":"2021-08-16T11:42:00+03:00"},{"@type":"WebSite","@id":"https:\/\/railsware.com\/blog\/#website","url":"https:\/\/railsware.com\/blog\/","description":"Blog on Engineering, Product Management, Transparency, Culture and many more...","inLanguage":"en-US","publisher":{"@id":"https:\/\/railsware.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"| Blog on Engineering, Product Management, Transparency, Culture and many more...","og:type":"article","og:title":"Posting delivery events to Google Calendar | Railsware Blog","og:description":"Introduction One day our client asked us about product deployment notification. Initially we wanted to use mail-list or create special skype chat, but it turned out to be unreliable and inconvenient: hard to filter notification emailshard to track deploment historynewly added person can't observe old events So we &quot;thinked differently&quot;\u00a9 and made next simple solution.","og:url":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/","og:image":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png","og:image:secure_url":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png","og:image:width":256,"og:image:height":256,"article:published_time":"2011-11-10T13:37:04+00:00","article:modified_time":"2021-08-16T08:42:00+00:00"},"aioseo_meta_data":{"post_id":"843","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"aioseo-article-6385f5b00332e","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":{"locations":{"business":{"name":"","businessType":"","image":"","areaServed":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"streetLine1":"","streetLine2":"","zipCode":"","city":"","state":"","country":"","addressFormat":"#streetLineOne\n#streetLineTwo\n#city, #state #zipCode"},"contact":{"email":"","phone":"","phoneFormatted":"","fax":"","faxFormatted":""},"ids":{"vat":"","tax":"","chamberOfCommerce":""},"payment":{"priceRange":"","currenciesAccepted":"","methods":""}}},"openingHours":{"useDefaults":true,"show":true,"alwaysOpen":false,"use24hFormat":false,"timezone":"","labels":{"closed":"","alwaysOpen":""},"days":{"monday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"tuesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"wednesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"thursday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"friday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"saturday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"sunday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"}}}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-04 12:44:08","updated":"2025-09-26 11:13:39","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/railsware.com\/blog\/category\/development\/\" title=\"Engineering\">Engineering<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPosting delivery events to Google Calendar\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/railsware.com\/blog"},{"label":"Engineering","link":"https:\/\/railsware.com\/blog\/category\/development\/"},{"label":"Posting delivery events to Google Calendar","link":"https:\/\/railsware.com\/blog\/posting-delivery-events-to-google-calendar\/"}],"categories_data":[{"name":"Engineering","link":"https:\/\/railsware.com\/blog?category=development"}],"post_thumbnails":"https:\/\/railsware.com\/blog\/wp-content\/uploads\/2012\/04\/google-calendar.png","article_background":"","amp_enabled":true,"_links":{"self":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/843","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/users\/19"}],"replies":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/comments?post=843"}],"version-history":[{"count":56,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/843\/revisions"}],"predecessor-version":[{"id":14088,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/posts\/843\/revisions\/14088"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media\/1741"}],"wp:attachment":[{"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/media?parent=843"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/categories?post=843"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/tags?post=843"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/railsware.com\/blog\/wp-json\/wp\/v2\/coauthors?post=843"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}