evertils 0.0.3 → 0.0.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07531bbed74fbf8d73ec68f3d1687f8689791d8f
4
- data.tar.gz: 2d63e664c36c42f44821949afe8707e90fe19d4e
3
+ metadata.gz: 94e725ddcad6f96eed2ed2660c9d65a564a03fc3
4
+ data.tar.gz: 5cd8f87ae3c4783e928e22b1ee37ef5756894885
5
5
  SHA512:
6
- metadata.gz: 8e445862342e1d06efce22d915ca874e6850a6188cc032bb05deed14e56547777dd43e499b3674d48723a3ff02cf032ca73a7482061d039d9e095d7adce9c522
7
- data.tar.gz: 9063feb2e3766c39a83afd147ab32032a1516398edceef9e74c2e95cdb2dee67cdb2901e6ef4adf2c627141a0718af5e6cafd85421482371b2518c7ab5a62273
6
+ metadata.gz: c6d91c47d1de5f6ef5ae0675a4ec2c77f28701ed25be640212c8e6a63b9616a852caaff50798f88e1b03f5b1af6a136c508b55b3f8310d8c1f5e708bb65757cc
7
+ data.tar.gz: d6cde11fcc1bd3cefe9df893802fcb48d7c75c96dd6b578f6750873fe593aff435d7faebad596c2ec2d32bdf9f61ee3f1174414d8624c7b0134dfa92a925c1a5
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ Gemfile.lock
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "rubocop"
4
+ gem "notifaction"
5
+ gem "evernote-thrift"
6
+ gem "mime-types"
@@ -0,0 +1,61 @@
1
+ ## Daily logs
2
+ * Log location: {COMPANY_NAME} Logs/Daily
3
+ * Title format: Daily Log [Date - Day of Week]
4
+ * Tags should be used to denote important/new items
5
+ * Misc tasks
6
+ * update expense report sheet every Friday
7
+ * complete time tracking (Harvest)
8
+ * create next weekly log
9
+ * update next week's meeting notes
10
+
11
+ ## Weekly logs
12
+ * Log location: {COMPANY_NAME} Logs/Weekly
13
+ * Title format: Weekly Log [Start of Week Date - End of Week Date]
14
+ * Link to each daily log and contain a summary of the important items (tags denote important items, use them to determine what the important weekly items are)
15
+ * Tagged “week-$WEEK_NUM”
16
+ * Weekly goals section included as a constant reminder of what needs to be done this week, also handy for sending to {BOSS_MAN} each Monday
17
+
18
+ ## Monthly logs
19
+ * Log location: {COMPANY_NAME} Logs/Monthly
20
+ * Title format: Monthly Log [Month - Year]
21
+ * Links to each weekly log of that month (table of contents style)
22
+ * Tagged “month-$MONTH_NUM"
23
+ * All weekly goals and their completion status (done or not)
24
+ * My quarterly goals for this month section (title: Quarterly Goals)
25
+
26
+ ## Quarterly logs
27
+ * Log location: {COMPANY_NAME} Logs/Quarterly
28
+ * Title format: Quarterly Log [Start Month - End Month Year]
29
+ * Links to each monthly and weekly log of that quarter (table of contents style)
30
+ * Tagged “q$QUARTER_NUM"
31
+ * All quarterly and monthly goals and their completion status (done or not)
32
+
33
+ ## Special Tags
34
+ * borked - I broke something in production
35
+ * interview - interviewed someone or was part of an interview
36
+ * meeting - participated in a meeting of some kind
37
+
38
+ ## Log Templates
39
+ See [this directory](lib/configs/templates).
40
+
41
+ ## tl;dr
42
+
43
+ Basic setup in Evernote:
44
+
45
+ ```
46
+ - {{COMPANY_NAME}} Logs
47
+ - Daily
48
+ - Weekly
49
+ - Monthly
50
+ - Quarterly
51
+ ```
52
+
53
+ To quickly add notes based on a template dictated by the requirements above:
54
+
55
+ ```shell
56
+ evertils generate daily # adds a note to Logs/Daily
57
+ evertils generate weekly # adds a note to Logs/Weekly
58
+ evertils generate monthly # adds a note to Logs/Monthly
59
+ ```
60
+
61
+ Just make sure to update that note every time you do something, otherwise you'll be logging a whole lot of nothing.
data/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Evertils
2
+
3
+ Utilities for talking to your Evernote account. Create notes, generate statistics based on usage, [more to come].
4
+
5
+ ## Installation
6
+
7
+ 1. `gem install evertils`
8
+ 2. You're done!
9
+
10
+ ## Logging Specification
11
+ See [this document](LOGGING_SPECIFICATION.md) to see how it all gets organized.
12
+
13
+ ## How to Use
14
+
15
+ |Command|Description|Usage|
16
+ |:--------------|:-----------|:-------------|
17
+ |generate|Create notes based on templates|`evertils generate daily|weekly|monthly`|
18
+ |new|Manually create notes|`evertils new note "STUFF"`, `evertils new share_note "STUFF"`, `other task | evertils new share_note --title="Piped data note"`|
19
+ |get|Get data from Evernote|`evertils get notebook`|
20
+ |convert|Convert your notes to Markdown, then back to ENML|(coming soon)|
data/evertils.gemspec ADDED
@@ -0,0 +1,13 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'evertils'
3
+ s.version = '0.0.4'
4
+ s.date = '2015-07-03'
5
+ s.summary = "EN (heart) CLI"
6
+ s.description = "Evernote utilities for your CLI workflow"
7
+ s.authors = ["Ryan Priebe"]
8
+ s.email = 'hello@ryanpriebe.com'
9
+ s.files = `git ls-files`.split($\)
10
+ s.homepage = 'http://rubygems.org/gems/evertils'
11
+ s.license = 'MIT'
12
+ s.executables = 'evertils'
13
+ end
data/logs/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ # Ignore everything in this directory
2
+ *
3
+ # Except this file
4
+ !.gitignore
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evertils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Priebe
@@ -17,6 +17,12 @@ executables:
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - .gitignore
21
+ - Gemfile
22
+ - LOGGING_SPECIFICATION.md
23
+ - README.md
24
+ - bin/evertils
25
+ - evertils.gemspec
20
26
  - lib/command.rb
21
27
  - lib/config.rb
22
28
  - lib/configs/templates/daily-friday.enml
@@ -43,7 +49,7 @@ files:
43
49
  - lib/request.rb
44
50
  - lib/router.rb
45
51
  - lib/utils.rb
46
- - bin/evertils
52
+ - logs/.gitignore
47
53
  homepage: http://rubygems.org/gems/evertils
48
54
  licenses:
49
55
  - MIT