jekyll-hoffnung3000 0.1.0 → 0.1.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +14 -4
- data/jekyll-hoffnung3000-0.1.0.gem +0 -0
- data/jekyll-hoffnung3000.gemspec +1 -1
- data/lib/jekyll/hoffnung3000/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6630aa726ab2e6ad28944ed5780e56ba5b4f9e979289f979fa58b2aed0dc8a6
|
4
|
+
data.tar.gz: 74944851ec91b1ee14977e767535c1326192264a34e9838a56bfdb26a6a39836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 976f514d2dd55c88ee1143b4242ab224c499ade3e31b8071f86a0b135254d9280671abfdc882de919c257367ea8a6935471be29f94bd7147b6c2441755aefbcd
|
7
|
+
data.tar.gz: 9cacd945628470e8cb4e154e5be3ceec4f60d8d061899ff1f67428ee1007b13f89124ab2a96fbde0ee198aaa33ff31ec504924a1352de9f46b37a5001ef2d797
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
# Jekyll::Hoffnung3000
|
2
2
|
|
3
3
|
A Jekyll plugin for archiving HOFFNUNG3000 festivals.
|
4
|
+
|
5
|
+
## Prerequisites
|
6
|
+
|
7
|
+
This gem uses `ruby-jq` gem to bind to [jq](http://stedolan.github.io/jq/) which requires the Oniguruma library to provide regex support.
|
8
|
+
|
9
|
+
If any system dependencies are missing please see the [jq FAQ](https://github.com/stedolan/jq/wiki/FAQ#installation) for help.
|
4
10
|
## Installation
|
5
11
|
|
6
12
|
Add this line to your application's Gemfile:
|
7
13
|
|
8
14
|
```ruby
|
9
|
-
|
15
|
+
group :jekyll_plugins do
|
16
|
+
gem 'jekyll-hoffnung3000', '0.1.0'
|
17
|
+
end
|
10
18
|
```
|
11
19
|
|
12
20
|
And then execute:
|
@@ -21,14 +29,16 @@ Or install it yourself as:
|
|
21
29
|
|
22
30
|
Add these lines to your _config.yml replacing the url with the address of your running HOFFNUNG3000 instance.
|
23
31
|
|
24
|
-
```
|
32
|
+
```ruby
|
25
33
|
hoffnung3000:
|
26
|
-
url: https://your-hoffnung3000-instance.org
|
34
|
+
url: "https://your-hoffnung3000-instance.org"
|
27
35
|
```
|
28
36
|
|
29
37
|
With this config set you can use the command line to fetch event data which will be written to `_data/events.json`.
|
30
38
|
|
31
|
-
|
39
|
+
```sh
|
40
|
+
$ bundle exec jekyll hoffnung3000 events
|
41
|
+
```
|
32
42
|
|
33
43
|
## Development
|
34
44
|
|
Binary file
|
data/jekyll-hoffnung3000.gemspec
CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.email = ["git@contact.samandreae.com"]
|
10
10
|
|
11
11
|
spec.summary = "HOFFNUNG3000 archival tool"
|
12
|
-
spec.homepage = "https://hoffnung3000
|
12
|
+
spec.homepage = "https://github.com/sandreae/jekyll-hoffnung3000"
|
13
13
|
spec.license = "MIT"
|
14
14
|
spec.required_ruby_version = ">= 2.4.0"
|
15
15
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-hoffnung3000
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sandreae
|
@@ -69,15 +69,16 @@ files:
|
|
69
69
|
- Rakefile
|
70
70
|
- bin/console
|
71
71
|
- bin/setup
|
72
|
+
- jekyll-hoffnung3000-0.1.0.gem
|
72
73
|
- jekyll-hoffnung3000.gemspec
|
73
74
|
- lib/jekyll/commands/hoffnung3000.rb
|
74
75
|
- lib/jekyll/hoffnung3000.rb
|
75
76
|
- lib/jekyll/hoffnung3000/version.rb
|
76
|
-
homepage: https://hoffnung3000
|
77
|
+
homepage: https://github.com/sandreae/jekyll-hoffnung3000
|
77
78
|
licenses:
|
78
79
|
- MIT
|
79
80
|
metadata:
|
80
|
-
homepage_uri: https://hoffnung3000
|
81
|
+
homepage_uri: https://github.com/sandreae/jekyll-hoffnung3000
|
81
82
|
post_install_message:
|
82
83
|
rdoc_options: []
|
83
84
|
require_paths:
|