jekyll-copyr 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3751be9aa18e712bd271e45cf3bb5842c6ab58d5b71293522f0cea2d03601f1
4
- data.tar.gz: 96ebd72f0d240daf7cb4ce56acff152e32613cd73b6e1fb8346a6c2f0136782d
3
+ metadata.gz: b6234b2ce55878095800001a7033ea9d8fc9503c147b91d3bc68f37634b41ef9
4
+ data.tar.gz: 1765c742715b4f5f058a402ad2d84d2032c21b482d930dfe305ffcee81165ee8
5
5
  SHA512:
6
- metadata.gz: 27fb469a2dfe26f814f026dd9f0f30930f4754b772ab021daf75af4374656e61e8580bd359dd222ff057294e7a4977fc690678a4ac88e2527e455a1820ec27c4
7
- data.tar.gz: 076132b0d42c56872b5a57f59556d6cd76e06c7d6caa8f34b2e69ad31a8833105f5069b9e2c17297001a86cf1f4c309139af224fc65cbead57306df225dab8f1
6
+ metadata.gz: 67ae70f651defe6f518b986d01d80399a63b3c5f2373f778f48c17746d30b01570546b7fcb028db0e959d1f71d5b65cd7eb58a4384ad64985d2c841c60e86546
7
+ data.tar.gz: 45cba37b75ac88e4c9d50d0de2134fd6aee0f3783f29430282b48ac543276c7179567e7dba05c5b1f201115e0f0669939f83ac74a895387da0446078f40f06ee
data/README.md CHANGED
@@ -6,15 +6,17 @@ A Jekyll plugin that taps into `FileUtils.cp_r` from your `_config.yml`. Easily
6
6
 
7
7
  ## Installation
8
8
 
9
- Add this line to your application's Gemfile:
9
+ Add `gem "jekyll-copyr"` to the `:jekyll_plugins` group in your `Gemfile`:
10
10
 
11
11
  ```ruby
12
12
  # Gemfile
13
13
 
14
- gem 'jekyll-copyr'
14
+ group :jekyll_plugins do
15
+ gem "jekyll-copyr"
16
+ end
15
17
  ```
16
18
 
17
- And then add this line to your application's `_config.yml`:
19
+ Then add these lines to your application's `_config.yml`:
18
20
 
19
21
  ```yml
20
22
  # _config.yml
@@ -41,7 +43,7 @@ You can also copy files from outside your project folder into your site. This al
41
43
 
42
44
  ## Development
43
45
 
44
- After checking out the repo, run `script/bootstrap` to install dependencies. Then, run `rake spec` to run the tests.
46
+ After checking out the repo, run `script/bootstrap` to install dependencies. Then, run `bundle exec rake spec` to run the tests.
45
47
 
46
48
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `lib/jekyll-copyr/version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
47
49
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Copyr
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-copyr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boy van Amstel
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-22 00:00:00.000000000 Z
11
+ date: 2020-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 2.0.2
39
+ version: 2.1.2
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: 2.0.2
46
+ version: 2.1.2
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,19 @@ executables: []
92
92
  extensions: []
93
93
  extra_rdoc_files: []
94
94
  files:
95
- - ".gitignore"
96
- - ".rubocop.yml"
97
- - Gemfile
98
- - Gemfile.lock
99
95
  - LICENSE
100
96
  - README.md
101
- - Rakefile
102
- - jekyll-copyr.gemspec
103
97
  - lib/jekyll-copyr.rb
104
98
  - lib/jekyll-copyr/copier.rb
105
99
  - lib/jekyll-copyr/task.rb
106
100
  - lib/jekyll-copyr/version.rb
107
101
  - lib/jekyll/hooks/copyr.rb
108
- - script/bootstrap
109
- - script/cibuild
110
- - script/release
111
- homepage: https://www.github.com/dangercove/jekyll-copyr
102
+ homepage: https://www.github.com/boyvanamstel/jekyll-copyr
112
103
  licenses:
113
104
  - MIT
114
105
  metadata:
115
- source_code_uri: https://www.github.com/dangercove/jekyll-copyr
116
- changelog_uri: https://www.github.com/dangercove/jekyll-copyr
106
+ source_code_uri: https://www.github.com/boyvanamstel/jekyll-copyr
107
+ changelog_uri: https://www.github.com/boyvanamstel/jekyll-copyr
117
108
  post_install_message:
118
109
  rdoc_options: []
119
110
  require_paths:
@@ -122,7 +113,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
122
113
  requirements:
123
114
  - - ">="
124
115
  - !ruby/object:Gem::Version
125
- version: '0'
116
+ version: 2.6.2
126
117
  required_rubygems_version: !ruby/object:Gem::Requirement
127
118
  requirements:
128
119
  - - ">="
data/.gitignore DELETED
@@ -1,25 +0,0 @@
1
- *.gem
2
- *.rbc
3
- *.sassc
4
- .bundle
5
- .config
6
- .yardoc
7
- .rvmrc
8
- .rspec
9
- .rspec_status
10
- .sass-cache
11
- .DS_Store
12
- Gemfile.lock # gem projects only!
13
- InstalledFiles
14
- _yardoc
15
- doc/
16
- coverage
17
- lib/bundler/man
18
- capybara-*.html
19
- pkg
20
- rdoc
21
- spec/reports
22
- spec/tmp
23
- test/tmp
24
- test/version_tmp
25
- tmp
data/.rubocop.yml DELETED
@@ -1,17 +0,0 @@
1
- require: rubocop-jekyll
2
- inherit_gem:
3
- rubocop-jekyll: .rubocop.yml
4
-
5
- AllCops:
6
- TargetRubyVersion: 2.6
7
- Exclude:
8
- - vendor/**/*
9
-
10
- Layout/LineLength:
11
- Exclude:
12
- - spec/**/*
13
- - jekyll-copyr.gemspec
14
-
15
- Layout/BlockLength:
16
- Exclude:
17
- - spec/**/*
data/Gemfile DELETED
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- gemspec
6
-
7
- gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
data/Gemfile.lock DELETED
@@ -1,111 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- jekyll-copyr (1.0.1)
5
- jekyll (>= 3.3, < 5.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- ast (2.4.0)
13
- colorator (1.1.0)
14
- concurrent-ruby (1.1.6)
15
- diff-lcs (1.3)
16
- em-websocket (0.5.1)
17
- eventmachine (>= 0.12.9)
18
- http_parser.rb (~> 0.6.0)
19
- eventmachine (1.2.7)
20
- ffi (1.12.2)
21
- forwardable-extended (2.6.0)
22
- http_parser.rb (0.6.0)
23
- i18n (1.8.2)
24
- concurrent-ruby (~> 1.0)
25
- jaro_winkler (1.5.4)
26
- jekyll (4.0.0)
27
- addressable (~> 2.4)
28
- colorator (~> 1.0)
29
- em-websocket (~> 0.5)
30
- i18n (>= 0.9.5, < 2)
31
- jekyll-sass-converter (~> 2.0)
32
- jekyll-watch (~> 2.0)
33
- kramdown (~> 2.1)
34
- kramdown-parser-gfm (~> 1.0)
35
- liquid (~> 4.0)
36
- mercenary (~> 0.3.3)
37
- pathutil (~> 0.9)
38
- rouge (~> 3.0)
39
- safe_yaml (~> 1.0)
40
- terminal-table (~> 1.8)
41
- jekyll-sass-converter (2.1.0)
42
- sassc (> 2.0.1, < 3.0)
43
- jekyll-watch (2.2.1)
44
- listen (~> 3.0)
45
- kramdown (2.1.0)
46
- kramdown-parser-gfm (1.1.0)
47
- kramdown (~> 2.0)
48
- liquid (4.0.3)
49
- listen (3.2.1)
50
- rb-fsevent (~> 0.10, >= 0.10.3)
51
- rb-inotify (~> 0.9, >= 0.9.10)
52
- mercenary (0.3.6)
53
- parallel (1.19.1)
54
- parser (2.7.0.5)
55
- ast (~> 2.4.0)
56
- pathutil (0.16.2)
57
- forwardable-extended (~> 2.6)
58
- public_suffix (4.0.3)
59
- rainbow (3.0.0)
60
- rake (13.0.1)
61
- rb-fsevent (0.10.3)
62
- rb-inotify (0.10.1)
63
- ffi (~> 1.0)
64
- rexml (3.2.4)
65
- rouge (3.17.0)
66
- rspec (3.9.0)
67
- rspec-core (~> 3.9.0)
68
- rspec-expectations (~> 3.9.0)
69
- rspec-mocks (~> 3.9.0)
70
- rspec-core (3.9.1)
71
- rspec-support (~> 3.9.1)
72
- rspec-expectations (3.9.1)
73
- diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.9.0)
75
- rspec-mocks (3.9.1)
76
- diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.9.0)
78
- rspec-support (3.9.2)
79
- rubocop (0.80.1)
80
- jaro_winkler (~> 1.5.1)
81
- parallel (~> 1.10)
82
- parser (>= 2.7.0.1)
83
- rainbow (>= 2.2.2, < 4.0)
84
- rexml
85
- ruby-progressbar (~> 1.7)
86
- unicode-display_width (>= 1.4.0, < 1.7)
87
- rubocop-jekyll (0.11.0)
88
- rubocop (>= 0.68.0, < 0.81.0)
89
- rubocop-performance (~> 1.2)
90
- rubocop-performance (1.5.2)
91
- rubocop (>= 0.71.0)
92
- ruby-progressbar (1.10.1)
93
- safe_yaml (1.0.5)
94
- sassc (2.2.1)
95
- ffi (~> 1.9)
96
- terminal-table (1.8.0)
97
- unicode-display_width (~> 1.1, >= 1.1.1)
98
- unicode-display_width (1.6.1)
99
-
100
- PLATFORMS
101
- ruby
102
-
103
- DEPENDENCIES
104
- bundler (~> 2.0.2)
105
- jekyll-copyr!
106
- rake (~> 13.0)
107
- rspec (~> 3.0)
108
- rubocop-jekyll (~> 0.11.0)
109
-
110
- BUNDLED WITH
111
- 2.0.2
data/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task :default => :spec
data/jekyll-copyr.gemspec DELETED
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- lib = File.expand_path("lib", __dir__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require "jekyll-copyr/version"
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "jekyll-copyr"
9
- spec.version = Jekyll::Copyr::VERSION
10
- spec.authors = ["Boy van Amstel"]
11
-
12
- spec.summary = "A plugin for Jekyll to easily copy files."
13
- spec.homepage = "https://www.github.com/dangercove/jekyll-copyr"
14
- spec.license = "MIT"
15
-
16
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
- # to allow pushing to a single host or delete this section to allow pushing to any host.
18
- if spec.respond_to?(:metadata)
19
- spec.metadata["source_code_uri"] = spec.homepage
20
- spec.metadata["changelog_uri"] = spec.homepage
21
- else
22
- raise "RubyGems 2.0 or newer is required to protect against " \
23
- "public gem pushes."
24
- end
25
-
26
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
27
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|spec|features)/!) }
28
- end
29
- spec.bindir = "exe"
30
- spec.executables = spec.files.grep(%r!^exe/!) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
32
-
33
- spec.add_dependency "jekyll", ">= 3.3", "< 5.0"
34
- spec.add_development_dependency "bundler", "~> 2.0.2"
35
- spec.add_development_dependency "rake", "~> 13.0"
36
- spec.add_development_dependency "rspec", "~> 3.0"
37
- spec.add_development_dependency "rubocop-jekyll", "~> 0.11.0"
38
- end
data/script/bootstrap DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/script/cibuild DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -ex
4
-
5
- bundle exec rspec
6
- bundle exec rubocop -S -D
7
- bundle exec gem build jekyll-copyr.gemspec
data/script/release DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -ex
4
-
5
- bundle exec rake release