github_contributions 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0d33817df8b9fe32cc09fc6ec8d9a390d976ddaceb4a6aaca9c2697f1a9ba59
4
- data.tar.gz: a4f89cd9967862b119a203d2e92e7c779a99d4eee96b82de6854d0b706b41359
3
+ metadata.gz: 02145d089070e4e471a5fd94c9426186b32200302b6cebb92748db0805066e0c
4
+ data.tar.gz: ca4e4e833c7348772bcb77db207d36dc998d935448d61770c02957e8bb2f7997
5
5
  SHA512:
6
- metadata.gz: 700395833c364f7c5e721f86793f7c9db4e64d31f41e9b374435a25a22686b005150dfb776161a958946db60aaeb1a84b7e0042ad9849cc243223424b9c84311
7
- data.tar.gz: 0b615dfae4dbe0868e18f21c3aabd694e8ce52a51e6e1e56750c895099f9afae1ffee994ad7f119053c2f07206baa72b3cfe0ae7e618bfb453db7a47626a159f
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)*
@@ -1,3 +1,3 @@
1
1
  module GithubContributions
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -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.0
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