jekyll-github-meta 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f01401988d08ca6380e03914f2b5768c1272ceda
4
+ data.tar.gz: 20a5f79eea1df6fb9e287e240cf33e8b00a12e69
5
+ SHA512:
6
+ metadata.gz: 67a3ed002c7a68e34453b319ec23b50af52a36696264cd97bd11f9c678b0468afe6a4a04711426930704fc08f1784880e0dca907803348d83c368c1492ccc6ad
7
+ data.tar.gz: 283783379830701ea56948364d299dd2cfce5c72feae813dc56c939508080ac2399020fd7dbe08535ef958eb01b24f9f5925b72f6c5935b72df1b15b01ec0942
data/.editorconfig ADDED
@@ -0,0 +1,16 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ trim_trailing_whitespace = true
7
+ insert_final_newline = true
8
+
9
+ [*.{md,rb,gemspec},Makefile]
10
+ charset = utf-8
11
+
12
+ [Makefile]
13
+ indent_style = tab
14
+
15
+ [*.md]
16
+ trim_trailing_whitespace = false
data/.gitignore ADDED
@@ -0,0 +1,25 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+ .dat*
13
+ .repl_history
14
+ build/
15
+ *.bridgesupport
16
+ build-iPhoneOS/
17
+ build-iPhoneSimulator/
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+ /.bundle/
23
+ /vendor/bundle
24
+ /lib/bundler/man/
25
+ .rvmrc
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Jam Risser <jam@jamrizzi.com> (https://jam.jamrizzi.com)
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
13
+ all 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
21
+ THE SOFTWARE.
data/Makefile ADDED
@@ -0,0 +1,19 @@
1
+ CWD := $(shell pwd)
2
+
3
+ .PHONY: all
4
+ all: build
5
+
6
+ .PHONY: build
7
+ build: clean
8
+ @gem build *.gemspec
9
+ @echo ::: BUILD :::
10
+
11
+ .PHONY: push
12
+ push: build
13
+ @gem push *.gem
14
+ @echo ::: PUSH :::
15
+
16
+ .PHONY: clean
17
+ clean:
18
+ -@rm -rf *.gem &>/dev/null || true
19
+ @echo ::: CLEAN :::
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Jekyll GitHub Meta
2
+
3
+ Add meta data from GitHub account to site config
@@ -0,0 +1,21 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "jekyll-github-meta/version"
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "jekyll-github-meta"
6
+ spec.summary = "Add meta data from GitHub account to site config"
7
+ spec.description = "Add meta data from GitHub account to site config"
8
+ spec.version = JekyllGithubMeta::VERSION
9
+ spec.authors = ["Jam Risser"]
10
+ spec.email = ["jam@jamrizzi.com"]
11
+ spec.homepage = "https://github.com/jamrizzi/jekyll-github-meta"
12
+ spec.licenses = ["MIT"]
13
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|spec|features)/!) }
14
+ spec.require_paths = ["lib"]
15
+ spec.add_dependency "jekyll", "~> 3.0"
16
+ spec.add_dependency "octokit", "~> 4.8"
17
+ spec.add_dependency "jekyll-site-config", "~> 0.1"
18
+ spec.add_development_dependency "rake", "~> 11.0"
19
+ spec.add_development_dependency "rspec", "~> 3.5"
20
+ spec.add_development_dependency "rubocop", "~> 0.52"
21
+ end
@@ -0,0 +1,18 @@
1
+ require "jekyll"
2
+ require "jekyll-site-config"
3
+ require "octokit"
4
+
5
+ module JekyllGithubMeta
6
+ class Generator < Jekyll::Generate
7
+ def generate(site)
8
+ client = Octokit::Client.new(:access_token => site.config["github_token"])
9
+ user = client.user
10
+ github_meta = {
11
+ "user" => {
12
+ "name" => user.name
13
+ }
14
+ }
15
+ JekyllSiteConfig.set_config("github_meta", github_meta)
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module JekyllGithubMeta
2
+ VERSION = "0.0.1".freeze
3
+ end
@@ -0,0 +1,5 @@
1
+ require "jekyll-github-meta/version"
2
+ require "jekyll-github-meta/generator"
3
+
4
+ module JekyllGithubMeta
5
+ end
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-github-meta
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jam Risser
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-01-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: octokit
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.8'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-site-config
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '11.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '11.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.5'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.5'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.52'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.52'
97
+ description: Add meta data from GitHub account to site config
98
+ email:
99
+ - jam@jamrizzi.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".editorconfig"
105
+ - ".gitignore"
106
+ - LICENSE
107
+ - Makefile
108
+ - README.md
109
+ - jekyll-github-meta.gemspec
110
+ - lib/jekyll-github-meta.rb
111
+ - lib/jekyll-github-meta/generator.rb
112
+ - lib/jekyll-github-meta/version.rb
113
+ homepage: https://github.com/jamrizzi/jekyll-github-meta
114
+ licenses:
115
+ - MIT
116
+ metadata: {}
117
+ post_install_message:
118
+ rdoc_options: []
119
+ require_paths:
120
+ - lib
121
+ required_ruby_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 2.6.14
134
+ signing_key:
135
+ specification_version: 4
136
+ summary: Add meta data from GitHub account to site config
137
+ test_files: []