jekyll-waxify 0.1.1 → 0.1.2

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: 8140544121d61a2df531010ff3259b246ecdb44efbde498e233fdbb077f9f76d
4
- data.tar.gz: 8d1fa893b50f5f0a5b6e8b23c461923794d6dbd2b5f101f6f8a275234e977ee2
3
+ metadata.gz: f489ff60273693a90cf01fdd6e87cb68d77aaa8a507e7708c2b0cb79a852ac1f
4
+ data.tar.gz: c68c7df0c9dfe2ebf773c9b6240bef7d449e8366346ab62e2b4162a3b8e0557e
5
5
  SHA512:
6
- metadata.gz: a20336f7dd049653ec1e7db0adad9fcedc164c73e360bcb091491cb1684050a3c5bc981fcd4f610d9adbfb9beb19e70b230cb8d55db8fa0f98df0c35ea5ecef5
7
- data.tar.gz: c3daea5de81d6f4342658a22403183c05c273a98f8687100cb1301a935e348b27ab12331f64c1a8918bc0efabbf30bd90cd050eef5be1487f7c3861fa72e3788
6
+ metadata.gz: 3bd7d815d12cec5ead62180919ebd8672ed40e61763d5d0420ccdba8c2be31f2c39b5fd0ccc0b44c89d3f81ae6ec41bf82d27ea94d64cfe3f006fa5936a6435e
7
+ data.tar.gz: 513a24c62d0353260e80d9f54e0f41d6345ec7e7effd2ce9d283142fa74607c515b2792085f6543566a49413451476557e285742a1c52d15b49fca40060d2608
data/README.md CHANGED
@@ -29,7 +29,7 @@ In order to make the site compatible with Github Pages, use the github pages gem
29
29
  And add these lines to the ```jekyll_plugins``` group:
30
30
 
31
31
  ```ruby
32
- gem 'github-pages', '~> 214'
32
+ gem 'github-pages', '>= 213'
33
33
  gem 'jekyll-waxify', '~> 0.1'
34
34
  ```
35
35
 
@@ -80,11 +80,15 @@ You might also want to tinker with these:
80
80
  - [item\_metadata.html](https://github.com/pbinkley/jekyll-waxify/blob/main/wax-framework/_includes/item_metadata.html): Controls the display of metadata in a table under the OpenSeadragon image.
81
81
  - [item\_pagination.html](https://github.com/pbinkley/jekyll-waxify/blob/main/wax-framework/_includes/item_metadata.html): Controls the pagination links to previous and next images in multi-image items.
82
82
 
83
- ## Development
83
+ ## Publish new version
84
84
 
85
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
86
-
87
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
85
+ - commit changes
86
+ - update and commit ```lib/jekyll/waxify/version.rb```
87
+ - ```git tag v0.x.x```
88
+ - ```git push```
89
+ - [create release](https://github.com/pbinkley/jekyll-waxify/releases)
90
+ - ```gem build jekyll-waxify.gemspec```
91
+ - ```gem push jekyll-waxify-0.x.x.gem```
88
92
 
89
93
  ## Contributing
90
94
 
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ["lib"]
24
24
 
25
25
  spec.add_runtime_dependency "deep_merge", "~> 1.2"
26
- spec.add_runtime_dependency "github-pages", "~> 213"
26
+ spec.add_runtime_dependency "github-pages", ">= 213"
27
27
  spec.add_runtime_dependency "progress_bar", "~> 1.3"
28
28
  spec.add_runtime_dependency "rainbow", "~> 3.0"
29
29
  spec.add_runtime_dependency "rake", "~> 13.0"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Waxify
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-waxify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Binkley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-02 00:00:00.000000000 Z
11
+ date: 2021-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: deep_merge
@@ -28,14 +28,14 @@ dependencies:
28
28
  name: github-pages
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '213'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '213'
41
41
  - !ruby/object:Gem::Dependency