rbnotes 0.4.10 → 0.4.15
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/.github/workflows/main.yml +18 -0
- data/.gitignore +0 -1
- data/CHANGELOG.md +45 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +7 -7
- data/README.md +2 -1
- data/Rakefile +1 -1
- data/conf/config.yml +1 -0
- data/conf/config_deve.yml +1 -0
- data/conf/config_deve_fzf_no_opts.yml +8 -0
- data/conf/config_deve_no_picker.yml +7 -0
- data/conf/config_deve_peco.yml +8 -0
- data/etc/zsh/_rbnotes +93 -0
- data/exe/rbnotes +10 -1
- data/lib/rbnotes.rb +1 -5
- data/lib/rbnotes/commands.rb +3 -2
- data/lib/rbnotes/commands/add.rb +45 -14
- data/lib/rbnotes/commands/commands.rb +17 -12
- data/lib/rbnotes/commands/import.rb +37 -5
- data/lib/rbnotes/commands/list.rb +63 -33
- data/lib/rbnotes/commands/pick.rb +33 -4
- data/lib/rbnotes/commands/show.rb +102 -15
- data/lib/rbnotes/commands/statistics.rb +74 -0
- data/lib/rbnotes/commands/update.rb +21 -10
- data/lib/rbnotes/conf.rb +25 -11
- data/lib/rbnotes/error.rb +47 -6
- data/lib/rbnotes/statistics.rb +101 -0
- data/lib/rbnotes/utils.rb +239 -77
- data/lib/rbnotes/version.rb +2 -2
- data/rbnotes.gemspec +1 -1
- metadata +12 -6
- data/.travis.yml +0 -6
data/lib/rbnotes/version.rb
CHANGED
data/rbnotes.gemspec
CHANGED
@@ -25,6 +25,6 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
|
-
spec.add_dependency "textrepo", "~> 0.5.
|
28
|
+
spec.add_dependency "textrepo", "~> 0.5.8"
|
29
29
|
spec.add_dependency "unicode-display_width", "~> 1.7"
|
30
30
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbnotes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mnbi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: textrepo
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.5.
|
19
|
+
version: 0.5.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.5.
|
26
|
+
version: 0.5.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: unicode-display_width
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -46,8 +46,8 @@ executables:
|
|
46
46
|
extensions: []
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
|
+
- ".github/workflows/main.yml"
|
49
50
|
- ".gitignore"
|
50
|
-
- ".travis.yml"
|
51
51
|
- CHANGELOG.md
|
52
52
|
- Gemfile
|
53
53
|
- Gemfile.lock
|
@@ -58,7 +58,11 @@ files:
|
|
58
58
|
- bin/setup
|
59
59
|
- conf/config.yml
|
60
60
|
- conf/config_deve.yml
|
61
|
+
- conf/config_deve_fzf_no_opts.yml
|
62
|
+
- conf/config_deve_no_picker.yml
|
63
|
+
- conf/config_deve_peco.yml
|
61
64
|
- conf/config_test.yml
|
65
|
+
- etc/zsh/_rbnotes
|
62
66
|
- exe/rbnotes
|
63
67
|
- lib/rbnotes.rb
|
64
68
|
- lib/rbnotes/commands.rb
|
@@ -72,9 +76,11 @@ files:
|
|
72
76
|
- lib/rbnotes/commands/pick.rb
|
73
77
|
- lib/rbnotes/commands/search.rb
|
74
78
|
- lib/rbnotes/commands/show.rb
|
79
|
+
- lib/rbnotes/commands/statistics.rb
|
75
80
|
- lib/rbnotes/commands/update.rb
|
76
81
|
- lib/rbnotes/conf.rb
|
77
82
|
- lib/rbnotes/error.rb
|
83
|
+
- lib/rbnotes/statistics.rb
|
78
84
|
- lib/rbnotes/utils.rb
|
79
85
|
- lib/rbnotes/version.rb
|
80
86
|
- rbnotes.gemspec
|
@@ -100,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
106
|
- !ruby/object:Gem::Version
|
101
107
|
version: '0'
|
102
108
|
requirements: []
|
103
|
-
rubygems_version: 3.
|
109
|
+
rubygems_version: 3.2.15
|
104
110
|
signing_key:
|
105
111
|
specification_version: 4
|
106
112
|
summary: A simple utility to write a note.
|