An open API service indexing awesome lists of open source software.

https://github.com/seanlilmateus/carendar

OSX status bar Calendar written in Rubymotion
https://github.com/seanlilmateus/carendar

collectionview macos nsstackview ruby rubymotion rubymotion-applications

Last synced: 2 months ago
JSON representation

OSX status bar Calendar written in Rubymotion

Awesome Lists containing this project

README

          

# Carendar

Is your status menu Calendar App done right,

![Current Date](https://raw.githubusercontent.com/seanlilmateus/carendar/master/about/current_month.PNG)
![Skip to another month](https://raw.githubusercontent.com/seanlilmateus/carendar/master/about/other_months.PNG)
![Popup for settings](https://raw.githubusercontent.com/seanlilmateus/carendar/master/about/settings.png)
![About Carendar Window](https://raw.githubusercontent.com/seanlilmateus/carendar/master/about/Screen_Shot_2015_10_16.PNG)

## Fixes Needed
This Project uses [promise.rb](https://github.com/lgierth/promise.rb), unfortunately it is not completely supported by Rubymotion. In order to make it running patch has to be applied.

1. Download the promise.rb gem
2. Apply the patch that can be found within this project `rubymotion_private_module.patch`

```sh
# First you should check the changes that might get applied.
git apply --stat rubymotion_private_module.patch

# check how troublesome the patch will be
git apply --check rubymotion_private_module.patch

# Let us just apply it
git am --signoff < rubymotion_private_module.patch

```