agenndy 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/agenndy.gemspec +3 -13
  3. data/examples/2033-05.txt +7 -0
  4. metadata +4 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48374b57f1899531d16d8d6fd30240f29cbceedab94863dda12869f4c16ffe20
4
- data.tar.gz: 37c14b9079db7bb83d5e5d797411e6291b5c23ce82d37728a9cedca75833a3a5
3
+ metadata.gz: e53ee08d05469b67badd8e4d8ffc22791ad4185f90196996aec1ace3a618fb16
4
+ data.tar.gz: 7f2a51f8f90cbbf515276bb5b65f67900969b71fd9e149279d8cfd3933a2c93d
5
5
  SHA512:
6
- metadata.gz: '01182faad259828ca7cf98d32e3563b67a648113d9ba259e83d24139056620b313a35220495cff674f500f8c570901669ca64bead3104beb04c4aa42a4980af2'
7
- data.tar.gz: 3f83429c03b70747116b04a15ca85e1cedebfd4072f9e55774d5b05d42b45fefd6c542d8d3a4d03dbcc325bd21101274c4b7702861624d1f0d07f6cd8df64f1a
6
+ metadata.gz: 9378998feeba28ecc5f8b171a4e7acd276e222d2c9cbcee5c63820ecbc3574e7a8067828f26a32d50932418f1b85690b88f3a0650d3b52bd797fc9c9dd105d2e
7
+ data.tar.gz: '0163894ecda8cccdf1b92cb2c5fea2840e5163d7bf85573a0a9b85b6d39365186e578de682f7eb0d29829ce5d9405b2b342c816163305cc51ee4ec0db4ba19a0'
data/agenndy.gemspec CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'agenndy'
7
- s.version = '0.1.0'
7
+ s.version = '0.1.1'
8
8
  s.summary = 'Text-based activity log with hour count and CSV output'
9
9
  s.description = <<~DESC
10
10
  agenndy is a minimal text-based activity log (or personal agenda).
@@ -13,22 +13,12 @@ Gem::Specification.new do |s|
13
13
  turns it into a CSV file (which includes times, activities and hours spent
14
14
  for each activity) suited for further processing.
15
15
 
16
- Every single text file represents a month and must have this format:
17
-
18
- # Filename: 2033-05.txt
19
- [1]
20
- 08:00-09:00 Breakfast
21
- 09:00-10:00 Another action
22
-
23
- # Anything which is not a date header or an entry gets ignored, btw :)
24
- [2]
25
- 08:00-13:00 Hard work
26
-
16
+ For the schema of the text-based agenda, check out the examples/ directory.
27
17
  DESC
28
18
  s.authors = ['Fabio Pesari']
29
19
  s.homepage = 'https://gitlab.com/fpesari/agenndy'
30
20
  s.files = %w[.rubocop.yml agenndy.gemspec
31
- LICENSE bin/agenndy README.md]
21
+ LICENSE bin/agenndy examples/2033-05.txt README.md]
32
22
  s.executables = %w[agenndy]
33
23
  s.license = 'AGPL-3.0+'
34
24
  s.required_ruby_version = '>= 2.5.0'
@@ -0,0 +1,7 @@
1
+ [1]
2
+ 08:00-09:00 Breakfast
3
+ 09:00-10:00 Another action
4
+
5
+ # Anything which is not a date header or an entry gets ignored, btw :)
6
+ [2]
7
+ 08:00-13:00 Hard work
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agenndy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabio Pesari
@@ -10,24 +10,14 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2021-02-21 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: |+
13
+ description: |
14
14
  agenndy is a minimal text-based activity log (or personal agenda).
15
15
 
16
16
  It takes a text file which follows some very basic (but strict) rules and
17
17
  turns it into a CSV file (which includes times, activities and hours spent
18
18
  for each activity) suited for further processing.
19
19
 
20
- Every single text file represents a month and must have this format:
21
-
22
- # Filename: 2033-05.txt
23
- [1]
24
- 08:00-09:00 Breakfast
25
- 09:00-10:00 Another action
26
-
27
- # Anything which is not a date header or an entry gets ignored, btw :)
28
- [2]
29
- 08:00-13:00 Hard work
30
-
20
+ For the schema of the text-based agenda, check out the examples/ directory.
31
21
  email:
32
22
  executables:
33
23
  - agenndy
@@ -39,6 +29,7 @@ files:
39
29
  - README.md
40
30
  - agenndy.gemspec
41
31
  - bin/agenndy
32
+ - examples/2033-05.txt
42
33
  homepage: https://gitlab.com/fpesari/agenndy
43
34
  licenses:
44
35
  - AGPL-3.0+