jekyll-github-repos 1.0.0 → 1.0.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: 4e0cac3b6fce820373e7cf6fce4b3fdb790c81ba3809e795700d384c15964aa6
4
- data.tar.gz: 786d958a3cd2baa6c778015422ba21233af69102a552746ba3ebf3cd67817250
3
+ metadata.gz: 2291b8978886da355eedcbf4c0cf92bca5a8a6cd5820e18f2da098c9393a45ba
4
+ data.tar.gz: a5477d2ec443bcad15b209ab1301d3c1de55a34c4b0d9389e952432a02318063
5
5
  SHA512:
6
- metadata.gz: b25e8ece16b7abdf80625f403c664419a36385d53f8dae9c1b5843b6c63e9074e50b102b4be4bd2c0497bfddf6d54e1d52cc1a9fa12c48a377c2a37ef761d78a
7
- data.tar.gz: d7f326f2f7853e9aae7bc499e7b1b8417e0a91d355a840f811eff268ea45e5b72e11f62a652176b329f578df682684b67e5292a166240e432dc53d3eddba16e6
6
+ metadata.gz: 2de0f43291e94d275fb230ce7f335ff2ca5cfa4393d24143ff54e5db38ce4f792fbd50ff8308668172fb2d9428326fab8fcc9cd6e94a28c1331f3cf7b0a9e7ae
7
+ data.tar.gz: d09b8ead0dff5c7bf61099eba8620ab53cf89fa358be3b0527e281af19eef156628bac0ddf794662dfb0e5e375206220bfc84963886e48481f4fea878a7e2f78
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Midhun Devasia
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,4 +1,4 @@
1
- require_relative "lib/version"
1
+ require_relative "lib/jekyll-github-repos/version"
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'jekyll-github-repos'
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.homepage = 'https://github.com/midhundevasia/jekyll-github-repos'
11
11
  spec.license = 'MIT'
12
12
 
13
- spec.files = Dir['lib/**/*', 'jekyll-github-repos.gemspec', 'README.md', 'License']
13
+ spec.files = Dir['lib/**/*', 'jekyll-github-repos.gemspec', 'README.md', 'LICENSE']
14
14
  spec.require_paths = ['lib']
15
15
 
16
16
  if spec.respond_to?(:metadata)
@@ -23,5 +23,4 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency "octokit", ">= 5.6"
24
24
  spec.add_development_dependency "bundler", "~> 1.15"
25
25
 
26
- end
27
-
26
+ end
@@ -5,6 +5,6 @@ module Liquid; class Tag; end; end
5
5
 
6
6
  module Jekyll
7
7
  class GitHubReposVersion < Liquid::Tag
8
- VERSION = '1.0.0'
8
+ VERSION = '1.0.1'
9
9
  end
10
10
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  require "jekyll"
4
4
  require "octokit"
5
- require "generator"
5
+ require "jekyll-github-repos/generator"
6
6
 
7
7
  module JekyllGithubRepos
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-github-repos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Midhun Devasia
@@ -64,11 +64,12 @@ executables: []
64
64
  extensions: []
65
65
  extra_rdoc_files: []
66
66
  files:
67
+ - LICENSE
67
68
  - README.md
68
69
  - jekyll-github-repos.gemspec
69
- - lib/generator.rb
70
70
  - lib/jekyll-github-repos.rb
71
- - lib/version.rb
71
+ - lib/jekyll-github-repos/generator.rb
72
+ - lib/jekyll-github-repos/version.rb
72
73
  homepage: https://github.com/midhundevasia/jekyll-github-repos
73
74
  licenses:
74
75
  - MIT