github-pages 19 → 20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/github-pages +17 -0
- data/lib/github-pages.rb +2 -2
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5210ef2f36ab3521c6eea8e94a64b35de867369a
|
4
|
+
data.tar.gz: 5a2346652e18065963e5a4ae1fe888909d73c0ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbb9f6dcfa10d0008d98a3fa0f44c3f4bca931424b6ea1d2e4e9d01fd4c6ba3d725a371f1a11218abe9d60b9964770f447bf13e8c777167efd5aff07ab0fcdb4
|
7
|
+
data.tar.gz: 51f86c6bb5c66d273129dafa54827999c93a52f26827d98c3993574380f8ac6b1a505b2160207b17cca2212697a8fe7b4f12c6bd4639fc4f7b1640ba624d4f8e
|
data/bin/github-pages
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
command = ARGV[0].to_s.downcase
|
4
|
+
|
5
|
+
case command
|
6
|
+
when "versions"
|
7
|
+
require File.expand_path("../../lib/github-pages", __FILE__)
|
8
|
+
GitHubPages.gems.each { |g,v| puts "gem '#{g}', '#{v}'" }
|
9
|
+
when "br"
|
10
|
+
puts [
|
11
|
+
"gem 'github-pages'",
|
12
|
+
":branch => '#{ARGV[1]}'",
|
13
|
+
":git => 'git://github.com/github/pages-gem'"
|
14
|
+
].join(", ")
|
15
|
+
else
|
16
|
+
abort "error: '#{command}' is an unrecognized command. options are: 'versions', 'br'."
|
17
|
+
end
|
data/lib/github-pages.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
class GitHubPages
|
2
|
-
VERSION =
|
2
|
+
VERSION = 20
|
3
3
|
|
4
4
|
# Jekyll and related dependency versions as used by GitHub Pages.
|
5
5
|
# For more information see:
|
@@ -14,7 +14,7 @@ class GitHubPages
|
|
14
14
|
"redcarpet" => "2.3.0",
|
15
15
|
"RedCloth" => "4.2.9",
|
16
16
|
"jemoji" => "0.1.0",
|
17
|
-
"jekyll-mentions" => "0.0.
|
17
|
+
"jekyll-mentions" => "0.0.9",
|
18
18
|
"jekyll-redirect-from" => "0.3.1",
|
19
19
|
"jekyll-sitemap" => "0.3.0",
|
20
20
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-pages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '20'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - '='
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0.0.
|
131
|
+
version: 0.0.9
|
132
132
|
type: :runtime
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - '='
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0.0.
|
138
|
+
version: 0.0.9
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: jekyll-redirect-from
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -180,10 +180,12 @@ dependencies:
|
|
180
180
|
version: '2.14'
|
181
181
|
description: Bootstrap the GitHub Pages Jekyll environment locally.
|
182
182
|
email: support@github.com
|
183
|
-
executables:
|
183
|
+
executables:
|
184
|
+
- github-pages
|
184
185
|
extensions: []
|
185
186
|
extra_rdoc_files: []
|
186
187
|
files:
|
188
|
+
- bin/github-pages
|
187
189
|
- lib/github-pages.rb
|
188
190
|
homepage: https://github.com/github/pages-gem
|
189
191
|
licenses:
|