Skip to content

Commit 02c3776

Browse files
committed
Fix linting errors & fix GitHub asset URL
1 parent bc1c4d7 commit 02c3776

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: ruby
22
cache: bundler
3-
sudo: false
4-
rvm: 2.5
3+
rvm: 2.6
54

65
install: script/bootstrap
76
script: script/cibuild

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24

35
gemspec

index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ end
9494

9595
### Small image
9696

97-
![Octocat](https://assets-cdn.github.com/images/icons/emoji/octocat.png)
97+
![Octocat](https://github.githubassets.com/images/icons/emoji/octocat.png)
9898

9999
### Large image
100100

jekyll-theme-minimal.gemspec

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
Gem::Specification.new do |s|
24
s.name = 'jekyll-theme-minimal'
35
s.version = '0.1.1'

script/cibuild

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
bundle exec jekyll build
6-
bundle exec htmlproofer ./_site --check-html --check-sri --disable-external
6+
bundle exec htmlproofer ./_site --check-html --check-sri
77
bundle exec rubocop -D
88
bundle exec script/validate-html
99
gem build jekyll-theme-minimal.gemspec

script/validate-html

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
23

34
require 'w3c_validators'
45

0 commit comments

Comments
 (0)