jekyll-include_sass 1.0.1 → 1.0.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: 32eeb7d6ca16b275fe274e8d535f8aecb2b453e5be1ef8ba4a703a9197a89eb3
4
- data.tar.gz: 169b30f4f07e7afa1cb921eeb5a0af44a0273ce495021d68b2d0a388f2720fd1
3
+ metadata.gz: 9fe50eca4bde4baf4afcd1aebca82701f6c9767cc7d5f18579d4363a08410ab0
4
+ data.tar.gz: df48e41d63fdd029dceb04e695e0ae0f8f1050a93eb0a2deafe941ae10741928
5
5
  SHA512:
6
- metadata.gz: fc597d0203c51565608b1b9f3d5219b150cfdf8aca903614e87c2afc4e27b4961361fc4a1bec30f9ab5f0b5e12fead764b4099d573a2afeae96affdf48a337dc
7
- data.tar.gz: 0f226aaf7db5998891bff5c7bed8d4bcecf564562f2ef149293f0f5d9cc25508d1f3984171350d7acdea51b04c74ff6ada6931beec9a7f6ae578b4d100f582c8
6
+ metadata.gz: 2598739754345b20269506b94170dcddd0a1f8a559c9bea8aea28ad1d206bfac40ad4a74647fde9cfa91d31bb401847c4849d95e68fb901814fee5cd7a5502e0
7
+ data.tar.gz: 2013e4976a0b1e4e4130b47cb312a0997c28fd954c1fbbafabb502c01f6d027fdfcf241642e915ec1dff9481b0811bb89b58c22e7eed7478c1d92c3a693d86b8
data/.rubocop.yml ADDED
@@ -0,0 +1,28 @@
1
+ inherit_mode:
2
+ merge:
3
+ - Exclude
4
+
5
+ AllCops:
6
+ TargetRubyVersion: 2.7
7
+ NewCops: enable
8
+ SuggestExtensions: false
9
+ Exclude:
10
+ - 'gemfiles/*.gemfile'
11
+
12
+ Style/FrozenStringLiteralComment:
13
+ Enabled: true
14
+
15
+ Style/StringLiterals:
16
+ Enabled: false
17
+
18
+ Layout/LineLength:
19
+ Enabled: false
20
+
21
+ Naming/FileName:
22
+ Enabled: false
23
+
24
+ Metrics/MethodLength:
25
+ Enabled: false
26
+
27
+ Style/ClassAndModuleChildren:
28
+ Enabled: false
data/Gemfile CHANGED
@@ -5,10 +5,8 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in jekyll-include_sass.gemspec
6
6
  gemspec
7
7
 
8
- gem 'appraisal'
9
- gem "bundler"
8
+ gem "appraisal"
10
9
  gem "minitest"
11
10
  gem "minitest-reporters"
12
- gem "pry"
13
11
  gem "rake"
14
12
  gem "rubocop"
@@ -3,10 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "bundler"
7
6
  gem "minitest"
8
7
  gem "minitest-reporters"
9
- gem "pry"
10
8
  gem "rake"
11
9
  gem "rubocop"
12
10
  gem "jekyll", "3.9"
@@ -3,10 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "bundler"
7
6
  gem "minitest"
8
7
  gem "minitest-reporters"
9
- gem "pry"
10
8
  gem "rake"
11
9
  gem "rubocop"
12
10
  gem "jekyll", "4.1"
@@ -3,10 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "bundler"
7
6
  gem "minitest"
8
7
  gem "minitest-reporters"
9
- gem "pry"
10
8
  gem "rake"
11
9
  gem "rubocop"
12
10
  gem "jekyll", "4.2"
@@ -3,10 +3,8 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "bundler"
7
6
  gem "minitest"
8
7
  gem "minitest-reporters"
9
- gem "pry"
10
8
  gem "rake"
11
9
  gem "rubocop"
12
10
  gem "jekyll", "4.3"
@@ -8,11 +8,16 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["toshimaru"]
9
9
  spec.email = ["me@toshimaru.net"]
10
10
 
11
- spec.summary = %q{Jekyll include_sass tag which aincludes and converts SASS/SCSS file. Useful for AMP HTML!}
12
- spec.description = %q{Jekyll include_sass tag is a shorthand tag for including SASS/SCSS file inside head tag. It's useful when you don't want to reference external CSS, for example, in AMP.}
11
+ spec.summary = 'Jekyll include_sass tag which aincludes and converts SASS/SCSS file. Useful for AMP HTML!'
12
+ spec.description = "Jekyll include_sass tag is a shorthand tag for including SASS/SCSS file inside head tag. It's useful when you don't want to reference external CSS, for example, in AMP."
13
13
  spec.homepage = "https://github.com/toshimaru/jekyll-include_sass"
14
14
  spec.license = "MIT"
15
15
 
16
+ spec.metadata["homepage_uri"] = "https://github.com/toshimaru/jekyll-include_sass"
17
+ spec.metadata["source_code_uri"] = "https://github.com/toshimaru/jekyll-include_sass"
18
+ spec.metadata["changelog_uri"] = "https://github.com/toshimaru/jekyll-include_sass/releases"
19
+ spec.metadata['rubygems_mfa_required'] = 'true'
20
+
16
21
  spec.bindir = "exe"
17
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
23
  spec.require_paths = ["lib"]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module IncludeSass
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-include_sass
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
  - toshimaru
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-05 00:00:00.000000000 Z
11
+ date: 2024-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -33,6 +33,7 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - ".rubocop.yml"
36
37
  - Appraisals
37
38
  - Gemfile
38
39
  - LICENSE.txt
@@ -49,7 +50,11 @@ files:
49
50
  homepage: https://github.com/toshimaru/jekyll-include_sass
50
51
  licenses:
51
52
  - MIT
52
- metadata: {}
53
+ metadata:
54
+ homepage_uri: https://github.com/toshimaru/jekyll-include_sass
55
+ source_code_uri: https://github.com/toshimaru/jekyll-include_sass
56
+ changelog_uri: https://github.com/toshimaru/jekyll-include_sass/releases
57
+ rubygems_mfa_required: 'true'
53
58
  post_install_message:
54
59
  rdoc_options: []
55
60
  require_paths: