jekyll-v4-github-pages 228 → 229

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: 292b0145d77771a6875421d8dcf39a83ab5ef56f15f5aee370f231006f143833
4
- data.tar.gz: 78e324420a6c54abcbb77825beedcd1dedded45af19ae0d7848fccd646d67199
3
+ metadata.gz: 3e156660c7e6de0f31528f72176ef5164f6ef7fc86a1db7dd62dc673128095f1
4
+ data.tar.gz: a0b43bbe511f32aa354ed1cc55c75293fc7408e864d8db2067ad4a7865eb0f6f
5
5
  SHA512:
6
- metadata.gz: a90e3d3fed07dd149be82ed1a14ac0133c27577a5a870938556907a30abb00bb8a88b4fbd335738664035b46d323e6af7ddf3a740f9dda2cce518b5d5244436c
7
- data.tar.gz: 0a8ad95eeb90ec188b3c57b636e1e0343d24f5174a1635bcb8e75258666a16f4f2a6922a465c2f2b1b82d49be35639bb168faed74dea6945c0bff174abbcc37b
6
+ metadata.gz: c8ecb1892a6558cbcdb3fda5643af77389707cbb6e35cf38c76dbce2c8aa7450239fd4a98811b7c8fd4f05147caa56335567d221e6887ca162254041252d0c62
7
+ data.tar.gz: 1a83643b6c6a251a27365659a8b28a50b3ce74130c20e7f923bed6db4e1934eebd2d4ab1361685b16c95ccf34d8adcbf060cb261fc51d3527c538eaf2e06e6a1
@@ -3,10 +3,10 @@
3
3
  require 'mercenary'
4
4
  require_relative "../lib/github-pages"
5
5
 
6
- Mercenary.program(:"github-pages") do |p|
6
+ Mercenary.program(:"jekyll-v4-github-pages") do |p|
7
7
  p.version GitHubPages::VERSION
8
8
  p.description
9
- p.syntax "github-pages <subcommand> options"
9
+ p.syntax "jekyll-v4-github-pages <subcommand> options"
10
10
 
11
11
  p.command(:versions) do |c|
12
12
  c.syntax "versions"
@@ -30,9 +30,9 @@ Mercenary.program(:"github-pages") do |p|
30
30
  c.alias(:br)
31
31
  c.action do |args, options|
32
32
  puts [
33
- "gem 'github-pages'",
33
+ "gem 'jekyll-v4-github-pages'",
34
34
  ":branch => '#{args[0] || "master"}'",
35
- ":git => 'git://github.com/github/pages-gem'"
35
+ ":git => 'git://github.com/dunkmann00/pages-gem'"
36
36
  ].join(", ")
37
37
  end
38
38
  end
@@ -181,7 +181,7 @@ module GitHubPages
181
181
  # Print the versions for github-pages and jekyll to the debug
182
182
  # stream for debugging purposes. See by running Jekyll with '--verbose'
183
183
  def debug_print_versions
184
- Jekyll.logger.debug "GitHub Pages:", "github-pages v#{GitHubPages::VERSION}"
184
+ Jekyll.logger.debug "GitHub Pages:", "jekyll-v4-github-pages v#{GitHubPages::VERSION}"
185
185
  Jekyll.logger.debug "GitHub Pages:", "jekyll v#{Jekyll::VERSION}"
186
186
  end
187
187
  end
@@ -66,7 +66,7 @@ module GitHubPages
66
66
  "ruby" => RUBY_VERSION,
67
67
 
68
68
  # Gem versions we're curious about
69
- "github-pages" => VERSION.to_s,
69
+ "jekyll-v4-github-pages" => VERSION.to_s,
70
70
  "html-pipeline" => HTML::Pipeline::VERSION,
71
71
  "sass" => Sass::Embedded::VERSION,
72
72
  "safe_yaml" => SafeYAML::VERSION,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GitHubPages
4
- VERSION = 228
4
+ VERSION = 229
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-v4-github-pages
3
3
  version: !ruby/object:Gem::Version
4
- version: '228'
4
+ version: '229'
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub, Inc.
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-12-31 00:00:00.000000000 Z
12
+ date: 2023-01-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jekyll
@@ -694,12 +694,12 @@ email:
694
694
  - support@github.com
695
695
  - gwatersdev@gmail.com
696
696
  executables:
697
- - github-pages
697
+ - jekyll-v4-github-pages
698
698
  extensions: []
699
699
  extra_rdoc_files: []
700
700
  files:
701
701
  - ".rubocop.yml"
702
- - bin/github-pages
702
+ - bin/jekyll-v4-github-pages
703
703
  - lib/github-pages.rb
704
704
  - lib/github-pages/configuration.rb
705
705
  - lib/github-pages/dependencies.rb