badslava2csv 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/VERSION +1 -1
- data/badslava2csv.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 012dd30465c04e0ed662a11bc9295e671edc4fb2
|
4
|
+
data.tar.gz: 87b9b83b136cb38a2ef205f533acf3caba0fe14f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
5
|
-
|
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.
|
1
|
+
0.0.8
|
data/badslava2csv.gemspec
CHANGED
@@ -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.
|
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.
|
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"]
|