dayrb 2.0.5 → 2.0.6
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 +4 -4
- data/VERSION +1 -1
- data/bin/day.rb +5 -6
- data/changelog.md +1 -1
- data/dayrb.gemspec +2 -1
- data/readme.md +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b6f1afc79261b757970a6e47e2da8bffc713f9821aac8e4a8a02510abb81a47
|
4
|
+
data.tar.gz: 7ef06747b200c3a5c8f3ac4689a08d9f4cc4a4568345160d3fa8653baf9c5fb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b314afd5732ab2a55b7df56c2fc0ce54cc03a503ee8d9b171c19ba7a14d47c82a6fdf363687c51f243020272afcfacc0436e7c5e6ff0440088e782db909e7c5e
|
7
|
+
data.tar.gz: 5cc0177bfe74c6df42b5545dc7ea426ed9c1a0d4f5a38075adb7f25057a8af7ca2c67848d27ed25b81cc882f0873749fb86ee937e39f54fd1aee2a4aae013ce6
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.6
|
data/bin/day.rb
CHANGED
@@ -14,17 +14,14 @@ require_relative '../lib/day/presenter'
|
|
14
14
|
|
15
15
|
require 'fileutils'
|
16
16
|
|
17
|
-
VERSION = '2.0.
|
18
|
-
|
19
|
-
require 'pry-byebug'
|
17
|
+
VERSION = '2.0.6'
|
20
18
|
|
21
19
|
#-------------- User Configuration:
|
22
20
|
#-------------- Please DO edit the following to your liking:
|
23
21
|
|
24
22
|
# Configuration File: Stores tasks and their data
|
25
|
-
|
26
|
-
|
27
|
-
CONFIG_FILE = CONFIG_DIR + 'config_dayrb'
|
23
|
+
CONFIG_DIR = ENV['HOME'] + '/.config/'
|
24
|
+
CONFIG_FILE = CONFIG_DIR + 'dayrb_config_file'
|
28
25
|
|
29
26
|
# Colorization:
|
30
27
|
# Use ANSI color codes...
|
@@ -44,6 +41,8 @@ EDITOR = 'vim'
|
|
44
41
|
#--------------
|
45
42
|
|
46
43
|
#[CUT HERE] Used in build script. Please don't remove.
|
44
|
+
# Note as of September 2024 - I don't remember what the build script was even supposed to do? Or where it is?
|
45
|
+
# ?? I published the new version to Rubygems and it seemed to work, so I have no idea.
|
47
46
|
|
48
47
|
#-------------- Monkey-Patch Definitions:
|
49
48
|
|
data/changelog.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
2.0.5 -- 09/18/2024
|
1
|
+
2.0.5 (aka 2.0.6 because I'm dumb) -- 09/18/2024
|
2
2
|
-------------------
|
3
3
|
* Bug fix: Replaced deprecated File.exists? method with .exist?
|
4
4
|
* Bug fix: Replaced (seemingly) deprecated yaml/dbm library - using psych directly instead to load config yaml file.
|
data/dayrb.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'dayrb'
|
3
|
-
s.version = '2.0.
|
3
|
+
s.version = '2.0.6'
|
4
|
+
s.required_ruby_version = '>= 3.0'
|
4
5
|
s.summary = "To-do & Time-Tracking CLI App"
|
5
6
|
s.description = "Create and track time on tasks via command-line."
|
6
7
|
s.authors = ["Cam Carroll"]
|
data/readme.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
day.rb
|
2
2
|
======
|
3
|
-
(Version 2.0.
|
3
|
+
(Version 2.0.6 -- March 2024)
|
4
4
|
|
5
5
|
A command-line to-do & time-tracking application.
|
6
6
|
|
@@ -9,7 +9,7 @@ A command-line to-do & time-tracking application.
|
|
9
9
|
|
10
10
|
Requirements:
|
11
11
|
-------------
|
12
|
-
* Ruby (Tested with 3.2.5)
|
12
|
+
* Ruby (Tested with 3.2.5 in Sept 2024 -- I set minimum ruby version arbitrarily at 3.0 because a lot of stuff needed fixing since the last version from ~2015, I'm not sure what the real minimum version is.)
|
13
13
|
|
14
14
|
Installation:
|
15
15
|
-------------
|
@@ -20,7 +20,7 @@ Installation:
|
|
20
20
|
|
21
21
|
### Method 2: Clone the Repository (Entire Folder)
|
22
22
|
|
23
|
-
* Clone the repository to your favorite apps folder. (git clone https://github.com/
|
23
|
+
* Clone the repository to your favorite apps folder. (git clone https://github.com/CameronCarroll/day.git ~/apps)
|
24
24
|
* Symlink day.rb into your favorite bin folder. (ln -s ~/apps/day/bin/day.rb ~/bin/day)
|
25
25
|
* Chmod it to be executable (chmod +x ~/bin/day)
|
26
26
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dayrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cam Carroll
|
@@ -44,7 +44,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
47
|
+
version: '3.0'
|
48
48
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
49
|
requirements:
|
50
50
|
- - ">="
|