github_contributions 0.1.0 → 0.1.1
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/CHANGELOG.md +17 -0
- data/lib/github_contributions/version.rb +1 -1
- data/lib/github_contributions.rb +1 -1
- metadata +2 -2
- data/pkg/github_contributions-0.1.0.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02145d089070e4e471a5fd94c9426186b32200302b6cebb92748db0805066e0c
|
|
4
|
+
data.tar.gz: ca4e4e833c7348772bcb77db207d36dc998d935448d61770c02957e8bb2f7997
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71af76fec90588ddcd6dd8e57571025722b92a00fb3bdbc02e8e6b5555294278f90b5705b62d01cbf24df2b0fa59503c515f526dad264a3ad838b58ce1d811ea
|
|
7
|
+
data.tar.gz: aab16c9e299bdc764794101abe080795cabc4e7ac89125033e89ca55678ebbc8b9a4d4d2455c3694440b0aecc7f63dbe86bb031a218813871b91c14727cfe132
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [v0.1.1](https://github.com/kevinjalbert/github_contributions/tree/v0.1.1) (2022-03-01)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/kevinjalbert/github_contributions/compare/v0.1.0...v0.1.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- fix: support ruby 2.7 due to Dir.glob sort issue [\#1](https://github.com/kevinjalbert/github_contributions/pull/1) ([kevinjalbert](https://github.com/kevinjalbert))
|
|
10
|
+
|
|
11
|
+
## [v0.1.0](https://github.com/kevinjalbert/github_contributions/tree/v0.1.0) (2022-03-01)
|
|
12
|
+
|
|
13
|
+
[Full Changelog](https://github.com/kevinjalbert/github_contributions/compare/7b571a98d6c5da498df547361b18f5929c108035...v0.1.0)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/lib/github_contributions.rb
CHANGED
|
@@ -6,7 +6,7 @@ require "octokit"
|
|
|
6
6
|
require "hashie"
|
|
7
7
|
require "digest"
|
|
8
8
|
|
|
9
|
-
Dir.glob(File.dirname(__FILE__) + '/github_contributions/**/*.rb') { |file| require file
|
|
9
|
+
Dir.glob(File.dirname(__FILE__) + '/github_contributions/**/*.rb').sort.each { |file| require file }
|
|
10
10
|
|
|
11
11
|
module GithubContributions
|
|
12
12
|
class << self
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github_contributions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Jalbert
|
|
@@ -102,6 +102,7 @@ executables:
|
|
|
102
102
|
extensions: []
|
|
103
103
|
extra_rdoc_files: []
|
|
104
104
|
files:
|
|
105
|
+
- CHANGELOG.md
|
|
105
106
|
- LICENSE
|
|
106
107
|
- README.md
|
|
107
108
|
- Rakefile
|
|
@@ -125,7 +126,6 @@ files:
|
|
|
125
126
|
- lib/github_contributions/markdown_presenter.rb
|
|
126
127
|
- lib/github_contributions/option_handler.rb
|
|
127
128
|
- lib/github_contributions/version.rb
|
|
128
|
-
- pkg/github_contributions-0.1.0.gem
|
|
129
129
|
homepage: https://github.com/kevinjalbert/github_contributions
|
|
130
130
|
licenses:
|
|
131
131
|
- MIT
|
|
Binary file
|