badslava2csv 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -2
  3. data/VERSION +1 -1
  4. data/badslava2csv.gemspec +2 -2
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 167b8964a4c6108b3192e77eef39b606a99baa7e
4
- data.tar.gz: e7fae52606b5637a730a1120920de74e14c70d00
3
+ metadata.gz: 012dd30465c04e0ed662a11bc9295e671edc4fb2
4
+ data.tar.gz: 87b9b83b136cb38a2ef205f533acf3caba0fe14f
5
5
  SHA512:
6
- metadata.gz: 79d646f9485e8ecc5acee2be843050893542426db3f91383bdd74f8ea5f369b87f03dba4da17bd588d69b80ffaa75188ece65f3277fad9f2d0b73effca9a8412
7
- data.tar.gz: 4390d2f01f0858278aa85f0e59146ed1bc93a730ceeba8e3cc0fed6ac5a98b4f19abd84729a3a9c593161c51646d27678df2c592278bc68654c37c893ebea447
6
+ metadata.gz: c8daa5e357cc6426ff0d79e39ba2cac4112e60d19d68103352268be6cd65b48eabcd666a48df8998ff7dd36f398ccc0c6a2f0dab929019ba9780470ec6b01106
7
+ data.tar.gz: 882bcac7cb54df83fc97b7254413f3b7c7bce51d4d80bc2b1288242f8f26ef03669b90b87b5b674150ab28f2e1d3acf0c0a2cf5fe57b40577bb00a06005f6b60
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  1) Download Events as CSV
2
2
 
3
3
  ```bash
4
- git clone git@github.com:brettshollenberger/badslava2csv.git
5
- ./bin/badslava2csv "San Francisco"
4
+ gem install badslava2csv
5
+ badslava2csv --city "San Francisco" --output-dir $(pwd)
6
6
  ```
7
7
 
8
8
  2) Import Events to Google Calendar
@@ -12,3 +12,11 @@ git clone git@github.com:brettshollenberger/badslava2csv.git
12
12
  * Open the Calendars tab.
13
13
  * Click Import calendars between the "My calendars" and "Other Calendars" sections.
14
14
  * Click Choose File and select the file you exported. Upload the file from Step 1
15
+
16
+ 3) Optional: Install a cronjob
17
+
18
+ ```bash
19
+ crontab -e
20
+
21
+ 0 11 * * 1 badslava2csv -p -o $(pwd)/data -c "San Francisco" && terminal-notifier -message "import $(pwd)/data/google.csv"
22
+ ```
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.7
1
+ 0.0.8
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: badslava2csv 0.0.7 ruby lib
5
+ # stub: badslava2csv 0.0.8 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "badslava2csv"
9
- s.version = "0.0.7"
9
+ s.version = "0.0.8"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: badslava2csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettshollenberger