jekyll_include_plugin 1.1.0 → 1.1.1

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: 54bfb570062a4da31cc5867a42c04e27dbc9805fa5264e8c58e981767f0a278a
4
- data.tar.gz: '09e7d4a74aed13c6b35989488f17f6585738a44040bdd67249d8adc63d692312'
3
+ metadata.gz: 7df480b45b3043abaccf469a338b5c4cf49184772edfcfe7857675949b7dcfa3
4
+ data.tar.gz: c14aa6edd200bb08a8f556676ea0594be2f74d07f8ea498987f57cab74e1e9c9
5
5
  SHA512:
6
- metadata.gz: 6af90891514917916f37065d5478949692627bad43ab9155f2ff49dc564b9ff8feb3c9bf16de62732faa038292e553d84dfa9d39e87dbe8b19c65df414cefbbb
7
- data.tar.gz: 21f27c73ba69245773207cf8ed917fb97b13b0fc34e57be8564ffa928ca3fc720525dfcabe73eb6c3587e4d77bf8b18a849130c51b0dead09356debc740d1c0e
6
+ metadata.gz: a509ff2ab17aeaef3007185c137dc0985b00fb4652b171ebdb88ab227148650a320d4aee8efb7b30932d05d53cf132dc7541de4c070427100524c857842c9363
7
+ data.tar.gz: b8926d41c0c06ff2aa5aa4bf55924da8a77e98cfcbba1bcbcd8de1b7b45614193858f6ff920da302ba50054f749f56ef4d5d2e0ad6f73ac152cce749aa111903
@@ -1,16 +1,19 @@
1
1
  name: Ruby
2
2
 
3
- on: [push,pull_request]
3
+ on: [push, pull_request]
4
4
 
5
5
  jobs:
6
6
  build:
7
7
  runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby: [2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0-preview1]
8
11
  steps:
9
12
  - uses: actions/checkout@v2
10
13
  - name: Set up Ruby
11
14
  uses: ruby/setup-ruby@v1
12
15
  with:
13
- ruby-version: 2.6.5
16
+ ruby-version: ${{ matrix.ruby }}
14
17
  bundler-cache: true
15
18
  - name: Run the default task
16
19
  run: bundle exec rake
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll_include_plugin (1.1.0)
4
+ jekyll_include_plugin (1.1.1)
5
5
  jekyll (>= 3.5, < 5.0)
6
6
  liquid (~> 4.0)
7
7
 
@@ -92,7 +92,7 @@ module JekyllIncludePlugin
92
92
  def get_remote_file_contents()
93
93
  begin
94
94
  debug("Getting contents of specified remote file: #{@params["abs_file_url"]}")
95
- return open(@params["abs_file_url"]).read
95
+ return URI.open(@params["abs_file_url"]).read
96
96
  rescue OpenURI::HTTPError => e
97
97
  abort("Can't get the contents of specified remote file '#{@params["abs_file_url"]}': #{e.message}")
98
98
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllIncludePlugin
4
- VERSION = "1.1.0"
4
+ VERSION = "1.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_include_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Lesikov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-18 00:00:00.000000000 Z
11
+ date: 2022-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: liquid