friends 0.39 → 0.40
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +17 -2
- data/README.md +93 -95
- data/bin/friends +13 -4
- data/friends.gemspec +15 -10
- data/lib/friends/commands/edit.rb +1 -4
- data/lib/friends/commands/list.rb +4 -23
- data/lib/friends/event.rb +2 -0
- data/lib/friends/graph.rb +6 -5
- data/lib/friends/introvert.rb +65 -98
- data/lib/friends/version.rb +1 -1
- data/test/commands/graph_spec.rb +94 -94
- data/test/commands/list/activities_spec.rb +0 -21
- data/test/commands/list/favorite/friends_spec.rb +0 -48
- data/test/commands/list/favorite/locations_spec.rb +0 -53
- data/test/commands/list/notes_spec.rb +0 -21
- data/test/paging_spec.rb +34 -0
- metadata +21 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: friends
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.40'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Evelyn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chronic
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '2.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: tty-pager
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.11'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.11'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: bundler
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -240,12 +254,14 @@ files:
|
|
240
254
|
- test/commands/update_spec.rb
|
241
255
|
- test/editor
|
242
256
|
- test/helper.rb
|
257
|
+
- test/paging_spec.rb
|
243
258
|
- test/tmp/.keep
|
244
259
|
homepage: https://github.com/JacobEvelyn/friends
|
245
260
|
licenses:
|
246
261
|
- MIT
|
247
262
|
metadata: {}
|
248
|
-
post_install_message:
|
263
|
+
post_install_message: "friends is a volunteer project. If you find it useful, please
|
264
|
+
consider making a small donation:\n\thttps://github.com/JacobEvelyn/friends#contributing-its-encouraged"
|
249
265
|
rdoc_options: []
|
250
266
|
require_paths:
|
251
267
|
- lib
|
@@ -261,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
261
277
|
version: '0'
|
262
278
|
requirements: []
|
263
279
|
rubyforge_project:
|
264
|
-
rubygems_version: 2.
|
280
|
+
rubygems_version: 2.7.3
|
265
281
|
signing_key:
|
266
282
|
specification_version: 4
|
267
283
|
summary: Spend time with the people you care about.
|
@@ -294,4 +310,5 @@ test_files:
|
|
294
310
|
- test/commands/update_spec.rb
|
295
311
|
- test/editor
|
296
312
|
- test/helper.rb
|
313
|
+
- test/paging_spec.rb
|
297
314
|
- test/tmp/.keep
|