furik 0.1.3 → 0.1.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 +5 -5
- data/README.md +2 -0
- data/lib/furik/cli.rb +1 -2
- data/lib/furik/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 54a0adaa5b2bdaef09f28be6399f23dda0c2b7b3771b59bd24031592263b141a
|
|
4
|
+
data.tar.gz: 28acc681032c648174b5ac0cc8ea5911a70be2407f179ef4b900d47d7f5f65b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8b2294d35dc4b4dfeba3cc97c9e049ddd26ac7bfb3a27aba123f61e96228b3051feeeb73c6f70552776624c107fbceff8d51d66bb990de117b2893adc3c270a
|
|
7
|
+
data.tar.gz: a29c9871ca2b62a6ce3b5360c6d1ee2f26b410ccabb88025addf61e8c9dcc5c608a5de4719a24fd35395f5f3dbdd0b8fea9503d80afdd77d69cc829c3b4ea579
|
data/README.md
CHANGED
|
@@ -57,6 +57,8 @@ furik:
|
|
|
57
57
|
github_enterprise_host: your.github-enterpise.host
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
+
NOTE: `your.github-enterprise.host` should be replaced with your true GH:E hostname(both yaml's key and value).
|
|
61
|
+
|
|
60
62
|
## Development
|
|
61
63
|
|
|
62
64
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec furik` to use the gem in this directory, ignoring other installed copies of this gem.
|
data/lib/furik/cli.rb
CHANGED
|
@@ -24,8 +24,7 @@ module Furik
|
|
|
24
24
|
next if start_date && date < start_date
|
|
25
25
|
next if end_date && date > end_date
|
|
26
26
|
|
|
27
|
-
memo << "- [#{issue.
|
|
28
|
-
memo << " #{issue.title}"
|
|
27
|
+
memo << "- [#{issue.title}](#{issue.html_url}):"
|
|
29
28
|
memo << " (#{issue.body.plain.cut})" if issue.body && !issue.body.empty?
|
|
30
29
|
memo << " #{issue.created_at.localtime.to_date}\n"
|
|
31
30
|
end
|
data/lib/furik/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: furik
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- linyows
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2018-07-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: octokit
|
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
142
|
rubyforge_project:
|
|
143
|
-
rubygems_version: 2.
|
|
143
|
+
rubygems_version: 2.7.6
|
|
144
144
|
signing_key:
|
|
145
145
|
specification_version: 4
|
|
146
146
|
summary: A summary generator of GitHub activity for retrospective.
|